/* ================================================
   SOLUTIONS JSA — Style inspiré de La Clinique MSH
   Palette: crème, noir, or/doré
   ================================================ */

:root {
  --black: #1a1a1a;
  --charcoal: #2d2d2d;
  --gray-900: #3a3a3a;
  --gray-600: #6b6b6b;
  --gray-400: #a8a8a8;
  --gray-200: #e5e3df;
  --gray-100: #f0ede6;
  --cream: #faf7f0;
  --cream-dark: #f5f1e8;
  --white: #ffffff;

  --gold: #b8935a;
  --gold-dark: #9a7a47;
  --gold-light: #d4b483;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --max-w-narrow: 860px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1rem; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

p {
  color: var(--gray-900);
  font-weight: 300;
}

p em {
  font-style: italic;
  color: var(--charcoal);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow.center { text-align: center; }

.center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-full { width: 100%; }
.btn-nav { padding: 0.7rem 1.4rem; font-size: 0.72rem; }

.btn-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
}

.btn-link:hover { color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 140px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-900);
  position: relative;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* ============ HERO (CENTRÉ, CLAIR + DYNAMIQUE) ============ */
.hero {
  padding: 4rem 2rem 5rem;
  background:
    radial-gradient(ellipse at top left, rgba(212, 180, 131, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(184, 147, 90, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.28) 0%, transparent 70%);
  top: -180px;
  left: -150px;
}

.hero-orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212, 180, 131, 0.22) 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation-delay: -9s;
  animation-duration: 22s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.05s forwards;
}

.ornament-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
  position: relative;
}

.ornament-dot::before,
.ornament-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: ornamentPulse 3s ease-in-out infinite;
}

.ornament-dot::after {
  animation-delay: 1.5s;
}

@keyframes ornamentPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ============ QUICKBOOKS BADGE ============ */
.qb-badge-img {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: clamp(80px, 10vw, 110px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 8px 25px rgba(44, 160, 28, 0.35));
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: badgeIn 1s ease 1.2s backwards, badgeBob 5s ease-in-out 2.2s infinite;
}

.qb-badge-img:hover {
  transform: scale(1.08) rotate(-3deg);
}

@keyframes badgeIn {
  0% { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  60% { opacity: 1; transform: scale(1.1) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes badgeBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}

/* Fallback si SVG pas chargé */
.qb-badge {
  position: absolute;
  bottom: -5px;
  right: -10px;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.qb-badge-icon { width: 40px; height: 40px; }

.qb-badge-text { display: flex; flex-direction: column; text-align: left; }

.qb-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  text-transform: uppercase;
}

.qb-badge-title {
  font-size: 0.85rem;
  color: #1E8516;
  font-weight: 700;
}

.hero .eyebrow {
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

.hero h1 {
  margin-bottom: 1.75rem;
  line-height: 1.05;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s ease 1.15s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--gray-200);
  overflow: hidden;
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 100%;
  height: 25px;
  background: var(--gold);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ============ FONDATRICE (HAUT DE PAGE) ============ */
.fondatrice {
  padding: 8rem 2rem;
  background: var(--white);
  position: relative;
}

.fondatrice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.fondatrice-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.fondatrice-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--gray-100) 100%);
  box-shadow: var(--shadow-lg);
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.qb-badge-on-photo {
  position: absolute !important;
  bottom: -30px;
  right: -30px;
  width: 140px !important;
  height: auto !important;
  z-index: 5;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: badgeEntrance 0.9s ease 0.6s backwards;
}

.qb-badge-on-photo:hover {
  transform: scale(1.06) rotate(-2deg);
}

@keyframes badgeEntrance {
  0% { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  60% { opacity: 1; transform: scale(1.08) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.fondatrice-content h2 {
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.fondatrice-content .lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.fondatrice-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--gray-600);
  font-weight: 300;
}

.fondatrice-expertise {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.fondatrice-expertise li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}

.fondatrice-expertise li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  padding: 8rem 2rem;
  background: var(--white);
  text-align: center;
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  color: var(--black);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 500;
}

.quote-author em {
  color: var(--charcoal);
  font-style: normal;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 5rem 2rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-band-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-band h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
}

.cta-band .btn-gold {
  background: var(--gold);
  color: var(--white);
}

.cta-band .btn-gold:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============ SERVICES ============ */
.services {
  padding: 8rem 2rem;
  background: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.section-head h2 { margin-bottom: 1.5rem; }

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.service-card {
  padding: 3rem 2.5rem;
  background: var(--cream);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.35s ease;
  text-align: center;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============ CONTACT ============ */
.contact {
  padding: 8rem 2rem;
  background: var(--white);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info .lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.contact-row:first-child { border-top: 1px solid var(--gray-200); }

.contact-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  padding-top: 2px;
}

.contact-row a {
  color: var(--black);
  font-weight: 400;
  font-size: 1rem;
}

.contact-row a:hover { color: var(--gold); }

.contact-row span {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--cream);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 400;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-600);
}

.field input,
.field select,
.field textarea {
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 0.5rem;
}

#submit-btn {
  position: relative;
  transition: all 0.3s ease;
}

#submit-btn .btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#submit-btn.loading .btn-text { opacity: 0.6; }
#submit-btn.loading .btn-spinner { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-feedback {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.form-feedback.success {
  display: block;
  background: rgba(46, 160, 28, 0.08);
  border: 1px solid rgba(46, 160, 28, 0.3);
  color: #1E8516;
}

.form-feedback.error {
  display: block;
  background: rgba(200, 50, 50, 0.06);
  border: 1px solid rgba(200, 50, 50, 0.3);
  color: #a03030;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--gray-400);
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img.logo-white {
  height: 120px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: none;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.footer-domain {
  color: var(--gold-light) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em;
  font-weight: 500 !important;
  text-transform: uppercase;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-linkedin:hover { color: var(--gold); }
.footer-linkedin svg { flex-shrink: 0; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col li {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 300;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 300;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-logo img { height: 95px; }
  .nav-inner { padding: 0.75rem 1.25rem; }

  .hero { padding: 4rem 1.25rem 4rem; min-height: 90vh; }
  .ornament-line { width: 50px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-scroll { display: none; }
  .hero-orb-1, .hero-orb-2 { width: 400px; height: 400px; }

  .fondatrice, .testimonial, .services, .contact { padding: 5rem 1.25rem; }

  .fondatrice-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .photo-frame { max-width: 320px; margin: 0 auto; }
  .qb-badge-on-photo { width: 95px !important; bottom: -18px; right: -18px; }

  .fondatrice-expertise { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cta-band { padding: 4rem 1.25rem; }
}

@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }
  .hero-cta .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand img { height: 80px; }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .field-row { grid-template-columns: 1fr; }

  .service-card { padding: 2.5rem 1.75rem; }

  .quote-mark { font-size: 5rem; }
}
