/* ============================================================
   ASHVAREN ADVISORY — BOLD REDESIGN v2
   Palette: Navy #1c2b38 · Blue #7d96a8 · Gold #b8933e · Cream #f3f0ea · Paper #e8e0d0
   Type: Raleway (display/heading) · Lato (body)
   Signature: 2px gold rule
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,600;0,700;1,300&family=Lato:wght@300;400;700&display=swap');

/* ---- Tokens ---- */
:root {
  --navy:    #1c2b38;
  --navy-l:  #253647;
  --blue:    #7d96a8;
  --blue-d:  #4a6272;
  --gold:    #b8933e;
  --gold-l:  #cba94e;
  --cream:   #f3f0ea;
  --paper:   #e8e0d0;
  --text:    #1c2b38;
  --muted:   #4d6070;
  --dim:     rgba(243,240,234,0.68);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 22px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: 'Lato', sans-serif; font-size: 1rem; line-height: 1.75; color: var(--text); background: var(--cream); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ---- Typography scale ---- */
h1, h2, h3, h4 { font-family: 'Raleway', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 4rem); font-weight: 200; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.01em; }
h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

.eyebrow {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

/* ---- Layout ---- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

/* ---- Gold rule ---- */
.gold-rule { display: block; width: 44px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.gold-rule-centre { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  border-radius: 1px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--cream); color: var(--navy); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.home .site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(12, 20, 28, 0.35);
  border-bottom: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 80px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links > li > a,
.nav-dropdown-toggle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.nav-links > li > a:hover,
.nav-dropdown-toggle:hover { opacity: 1; }
.nav-links > li.active > a { opacity: 1; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.nav-dropdown { position: relative; }
.nav-dropdown-arrow { font-size: 0.7rem; display: inline-block; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--navy-l);
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
  border-top: 2px solid var(--gold);
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 0.85rem 1.4rem;
  font-family: 'Raleway', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream);
  opacity: 0.75; transition: opacity 0.12s, background 0.12s;
}
.nav-dropdown-menu a:hover { opacity: 1; background: rgba(255,255,255,0.06); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; width: 38px; height: 38px; }
.nav-hamburger span { display: block; height: 1.5px; background: var(--cream); border-radius: 1px; transition: transform 0.2s, opacity 0.2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--navy); z-index: 99; padding: 1rem 0 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.3); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform 0.2s, opacity 0.2s; }
.mobile-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-nav a, .mobile-nav-legal-toggle { display: block; padding: 0.85rem 2rem; font-family: 'Raleway', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--cream); border: none; background: none; width: 100%; text-align: left; cursor: pointer; opacity: 0.75; transition: opacity 0.12s; }
.mobile-nav a:hover, .mobile-nav-legal-toggle:hover { opacity: 1; }
.mobile-nav-legal-sub { display: none; }
.mobile-nav-legal-sub.open { display: block; }
.mobile-nav-legal-sub a { padding-left: 3rem; opacity: 0.6; font-size: 0.78rem; }
.mobile-nav-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 2rem; }
body.home .mobile-nav { top: 80px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(14, 22, 32, 0.62); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem; align-items: center; width: 100%; padding: 10rem 0 6.5rem; }
.hero-left h1 { color: var(--cream); font-weight: 200; line-height: 1.1; letter-spacing: -0.02em; }
.hero-left .gold-rule { margin-top: 2rem; margin-bottom: 0; }
.hero-right { display: flex; flex-direction: column; align-items: flex-start; gap: 2.5rem; padding-top: 0.5rem; }
.hero-right p { color: var(--dim); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 0; max-width: 420px; }

/* ============================================================
   SECTION SYSTEM
   ============================================================ */
.section { padding: 7.5rem 0; }
.section-navy { background: var(--navy); }
.section-navy-l { background: var(--navy-l); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-blue { background: var(--blue); }

.section-navy h2, .section-navy-l h2 { color: var(--cream); }
.section-navy h3, .section-navy-l h3 { color: var(--cream); }
.section-navy p, .section-navy-l p { color: var(--dim); }
.section-cream h2, .section-paper h2 { color: var(--navy); }
.section-cream h3, .section-paper h3 { color: var(--navy); }
.section-cream p, .section-paper p { color: var(--muted); }

.section-header { margin-bottom: 3.5rem; }
.section-header.centre { text-align: center; }
.section-header.centre .gold-rule { margin-left: auto; margin-right: auto; }

/* ============================================================
   SERVICES (home — 3 pillars)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; margin-top: 3rem; }
.service-card { border-top: 2px solid var(--gold); padding-top: 1.75rem; }
.service-card h3 { color: var(--cream); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.85rem; letter-spacing: 0.02em; }
.service-card p { color: var(--dim); font-size: 1rem; line-height: 1.75; margin: 0; }

/* ============================================================
   SERVICES DETAIL (about — 4 cards 2x2)
   ============================================================ */
.services-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2px; margin-top: 3rem; background: rgba(255,255,255,0.04); }
.service-detail-card { padding: 2.5rem; background: var(--navy); }
.service-detail-card h3 { color: var(--cream); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.85rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(184,147,62,0.3); }
.service-detail-card p { color: var(--dim); font-size: 1rem; line-height: 1.8; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.testimonial {}
.testimonial-mark { font-family: 'Raleway', sans-serif; font-size: 4rem; line-height: 0.85; color: var(--gold); opacity: 0.7; margin-bottom: 1.25rem; font-weight: 200; }
.testimonial blockquote { font-size: 1rem; line-height: 1.85; color: var(--text); font-style: italic; font-weight: 300; margin-bottom: 1.5rem; }.testimonial cite { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); font-style: normal; }
.testimonial cite span { display: block; font-weight: 300; text-transform: none; letter-spacing: 0; margin-top: 0.2rem; color: var(--muted); opacity: 0.8; }

/* ============================================================
   THINKING CARD
   ============================================================ */
.thinking-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; align-items: center; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.thinking-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.thinking-tag { font-family: 'Raleway', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,147,62,0.4); padding: 0.2rem 0.65rem; }
.thinking-card h3 { color: var(--cream); font-size: 1.4rem; font-weight: 300; line-height: 1.35; margin-bottom: 1rem; }
.thinking-card p { color: var(--dim); font-size: 1rem; line-height: 1.8; }
.thinking-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 1.5rem; transition: gap 0.2s; }
.thinking-link:hover { gap: 0.8rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 7.5rem 0; text-align: center; background: var(--navy-l); border-top: 1px solid rgba(255,255,255,0.06); }
.cta-band h2 { color: var(--cream); font-weight: 200; margin-bottom: 0.75rem; }
.cta-band p { color: var(--dim); max-width: 480px; margin: 0 auto 2.75rem; font-size: 1rem; line-height: 1.8; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--navy); padding: 6rem 0 5rem; }
.page-hero h1 { color: var(--cream); font-weight: 200; margin-bottom: 1rem; }
.page-hero p { color: var(--dim); font-size: 1.05rem; max-width: 560px; line-height: 1.8; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem; align-items: start; }
.about-portrait { border-radius: 2px; }
.about-text h2 { color: var(--navy); margin-bottom: 0.5rem; }
.about-text .gold-rule { margin-top: 1.25rem; margin-bottom: 1.75rem; }
.about-text p { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.about-text ul { margin-top: 0.5rem; }
.about-text ul li { padding: 0.5rem 0 0.5rem 1.25rem; position: relative; font-size: 1rem; color: var(--muted); line-height: 1.65; border-bottom: 1px solid rgba(29,43,56,0.07); }
.about-text ul li:last-child { border-bottom: none; }
.about-text ul li::before { content: ''; position: absolute; left: 0; top: 50%; width: 5px; height: 1.5px; background: var(--gold); transform: translateY(-50%); }

.how-we-work-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; align-items: start; }
.engagement-cards { display: flex; flex-direction: column; gap: 1px; }
.engagement-card { background: var(--paper); padding: 1.6rem 1.85rem; }
.engagement-card h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy); margin-bottom: 0.5rem; }
.engagement-card p { font-size: 1rem; color: var(--muted); margin: 0; line-height: 1.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-info .gold-rule { margin-bottom: 1.75rem; }
.contact-info p { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.contact-detail { margin-top: 2rem; }
.contact-detail a { font-weight: 700; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.contact-form { background: var(--paper); padding: 2.75rem; }
.contact-form h3 { color: var(--navy); font-size: 1rem; margin-bottom: 2rem; font-weight: 600; }
.form-group { margin-bottom: 1.35rem; }
.form-group label { display: block; font-family: 'Raleway', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--navy); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; font-family: 'Lato', sans-serif; font-size: 1rem; border: 1px solid rgba(29,43,56,0.18); background: var(--cream); color: var(--text); border-radius: 1px; transition: border-color 0.15s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,147,62,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: 0.5; }
.form-submit { margin-top: 1.5rem; }
.form-submit button { font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.95rem 2.5rem; background: var(--navy); color: var(--cream); border: none; cursor: pointer; transition: background 0.18s; border-radius: 1px; }
.form-submit button:hover { background: var(--gold); color: var(--navy); }
.form-privacy { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); opacity: 0.7; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid rgba(29,43,56,0.12); }
.accordion-item { border-bottom: 1px solid rgba(29,43,56,0.12); }
.accordion-trigger { width: 100%; background: none; border: none; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); gap: 1.5rem; }
.accordion-icon { flex-shrink: 0; width: 24px; height: 24px; border: 1.5px solid rgba(29,43,56,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; line-height: 1; color: var(--navy); transition: transform 0.2s, border-color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.accordion-body { display: none; padding: 0 0 1.75rem; font-size: 1rem; line-height: 1.8; color: var(--muted); }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { margin-bottom: 0.85rem; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body ul { margin: 0.5rem 0 0.85rem; }
.accordion-body ul li { padding: 0.35rem 0 0.35rem 1.1rem; position: relative; font-size: 1rem; }
.accordion-body ul li::before { content: ''; position: absolute; left: 0; top: 50%; width: 5px; height: 1.5px; background: var(--gold); transform: translateY(-50%); }
.accordion-body strong { font-weight: 700; color: var(--navy); }

.accordion-card .accordion-item { background: var(--paper); border: none; margin-bottom: 3px; }
.accordion-card .accordion-trigger { padding: 1.2rem 1.6rem; }
.accordion-card .accordion-body { padding: 0 1.6rem 1.35rem; color: var(--muted); }
.accordion-card .accordion-icon { border-color: rgba(29,43,56,0.2); color: var(--navy); }
.accordion-card .accordion-item.open .accordion-icon { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin: 2.5rem 0 0.9rem; font-family: 'Raleway', sans-serif; }
.legal-content p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 0.85rem; }
.legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ol li { list-style: decimal; font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.5rem; }
.legal-content a { color: var(--navy); border-bottom: 1px solid rgba(29,43,56,0.3); }
.legal-content a:hover { border-color: var(--gold); }
.data-intro { max-width: 680px; color: var(--muted); font-size: 1rem; line-height: 1.85; margin: 1.75rem 0 2.5rem; }
.legal-section-heading { margin: 3.5rem 0 1.25rem; }
.legal-section-heading h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; color: var(--navy); text-transform: none; letter-spacing: -0.01em; }

/* ============================================================
   NOTICES
   ============================================================ */
.notices-content { max-width: 720px; }
.notices-content p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 0.85rem; }
.notices-content a { color: var(--navy); border-bottom: 1px solid rgba(29,43,56,0.3); }
.notices-content a:hover { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-d); color: var(--cream); padding: 4rem 0 3rem; }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4rem; align-items: start; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.65; margin-bottom: 0.3rem; }
.footer-brand .footer-name { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 1rem; opacity: 0.9; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.83rem; opacity: 0.5; margin-top: 0.75rem; }
.footer-linkedin { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; opacity: 0.7; transition: opacity 0.15s; }
.footer-linkedin:hover { opacity: 1; }
.footer-linkedin svg { color: var(--cream); }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 170px); gap: 2.5rem; }
.footer-col h4 { font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; opacity: 0.65; transition: opacity 0.15s; font-family: 'Raleway', sans-serif; font-weight: 400; }
.footer-col ul li a:hover { opacity: 1; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-centre { text-align: center; }
.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.max-prose { max-width: 640px; }
.divider { height: 1px; background: rgba(29,43,56,0.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .contact-layout { gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .services-detail-grid { grid-template-columns: minmax(0, 1fr); }
  .service-detail-card { padding: 2rem; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .about-portrait { max-width: 480px; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .how-we-work-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .thinking-card { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; padding: 11rem 0 5rem; }
}

@media (max-width: 768px) {
  html { font-size: 17px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-inner { height: 70px !important; }
  body.home .nav-inner { height: 70px !important; }
  .nav-logo img { height: 46px !important; }
  body.home .nav-logo img { height: 46px !important; }
  body.home .site-nav { position: sticky; background: var(--navy); backdrop-filter: none; }
  body.home .mobile-nav { top: 70px; }
  .mobile-nav { top: 70px; }
  .section { padding: 4rem 0; }
  .cta-band { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  .footer-links-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 1.25rem; }
  .footer-links-grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .contact-form { padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
