/* ==========================================================================
   The Iconic Home Advisor, theiconichomeadvisor.com
   Brevard County + Space Coast real estate brokerage
   --------------------------------------------------------------------------
   Palette: Navy + Seafoam + Brass on Shell
   Editorial-luxury coastal Florida. Restrained, not gaudy, not beachy-cliche.
   ========================================================================== */

:root {
  --navy:         #0E2340;
  --navy-deep:    #061428;
  --navy-soft:    #2A4266;
  --seafoam:      #8CBFB6;
  --seafoam-deep: #4F8078;
  --seafoam-soft: #C9E2DE;
  --brass:        #B7935A;
  --brass-deep:   #8A6D3E;
  --shell:        #F7F1E4;
  --shell-warm:   #EBE1C7;
  --rule:         #CFC4A8;
  --ink:          #0E2340;
  --ink-soft:     #4A5670;
  --white:        #FFFFFF;

  --radius: 2px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(6,20,40,0.05), 0 2px 8px rgba(6,20,40,0.04);
  --shadow-md: 0 6px 18px rgba(6,20,40,0.08), 0 14px 32px rgba(6,20,40,0.05);

  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-sans:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--shell);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  transition: color .2s ease, border-color .2s ease;
}
a:hover { color: var(--brass-deep); border-color: var(--brass-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .55em;
  letter-spacing: -0.008em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }
p  { margin: 0 0 1.1em; color: var(--ink-soft); font-weight: 300; }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* Brass hairline mark used as accent */
.hairline {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin: 0 12px 6px 0;
}
.hairline-center {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 22px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seafoam-deep);
  margin-bottom: 1.3rem;
}
.eyebrow.on-dark { color: var(--seafoam); }

.section-title {
  text-align: center;
  margin-bottom: 3.4rem;
}
.section-title h2 { margin-bottom: .5rem; }
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 30px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  font-family: var(--font-sans);
}
.btn-primary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--seafoam);
  border-color: var(--seafoam-deep);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--brass);
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-outline.on-dark {
  color: var(--shell);
  border-color: var(--brass);
}
.btn-outline.on-dark:hover {
  background: var(--brass);
  color: var(--navy-deep);
  border-color: var(--brass);
}
.btn-primary.on-dark {
  color: var(--shell);
  border-color: var(--seafoam);
}
.btn-primary.on-dark:hover {
  background: var(--seafoam);
  color: var(--navy-deep);
  border-color: var(--seafoam);
}
.btn-large { padding: 16px 36px; font-size: 0.88rem; }

/* Buttons should not carry the default link underline */
.btn, .brand, .nav-menu a, .footer ul a, .drawer ul a { border-bottom: 0; }
.brand:hover, .drawer ul a:hover, .footer ul a:hover { border-bottom: 0; }

/* Topbar */
.topbar {
  background: var(--navy-deep);
  color: var(--shell);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(247,241,228,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.topbar-tagline svg { width: 15px; height: 15px; color: var(--brass); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--shell);
  border-bottom: 0;
  font-weight: 300;
}
.topbar-meta a:hover { color: var(--brass); }
.topbar-meta svg { width: 14px; height: 14px; color: var(--seafoam); }

/* Nav */
.nav {
  background: var(--shell);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--brass);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  border-radius: var(--radius);
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--navy);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 8px 2px;
  position: relative;
  text-transform: uppercase;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--brass-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: var(--brass);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(6,20,40,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--shell);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--navy);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 14px 6px;
  color: var(--navy);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.drawer-meta strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  background: var(--shell);
  color: var(--navy);
  padding: 120px 0 130px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-glyph {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.12;
  pointer-events: none;
  color: var(--seafoam-deep);
}
.hero-glyph svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero .eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.4rem;
}
.hero .eyebrow-line .line {
  width: 44px;
  height: 1px;
  background: var(--brass);
}
.hero .eyebrow-line .eyebrow { margin: 0; }
.hero h1 {
  color: var(--navy);
  margin-bottom: 1.4rem;
  font-weight: 300;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--seafoam-deep);
  font-style: italic;
  font-weight: 300;
}
.hero-lead {
  color: var(--ink-soft);
  font-size: 1.14rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.6rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 15px; height: 15px; color: var(--brass); }

/* Sections */
.section-light { background: var(--shell); padding: 100px 0; }
.section-warm { background: var(--shell-warm); padding: 100px 0; }
.section-white { background: var(--white); padding: 100px 0; }
.section-dark {
  background: var(--navy-deep);
  color: var(--shell);
  padding: 100px 0;
}
.section-dark h2,
.section-dark h3 { color: var(--shell); }
.section-dark p { color: rgba(247,241,228,0.78); }
.section-dark .eyebrow { color: var(--brass); }

/* Trust strip */
.trust {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
}
.trust-item .desc {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Offers grid (services on shell-warm with seafoam left border) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer {
  background: var(--shell-warm);
  border-left: 3px solid var(--seafoam);
  padding: 34px 30px;
  transition: all .25s ease;
  border-radius: 0;
}
.offer:hover {
  border-left-color: var(--seafoam-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.offer-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brass-deep);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.offer h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--navy);
}
.offer p { font-size: 0.96rem; margin: 0; }

/* Section-white variant of offers for services page */
.section-white .offer { background: var(--shell); }

/* Engagement shapes */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.format {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--brass-deep);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.format h3 { margin-bottom: 10px; font-size: 1.24rem; font-weight: 500; }
.format p { margin: 0; font-size: 0.95rem; }

/* Process (dark section with brass numerals) */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process-step h3 {
  margin-bottom: 10px;
  color: var(--shell);
  font-weight: 400;
}
.process-step p { font-size: 0.94rem; margin: 0; color: rgba(247,241,228,0.78); }

/* Communities (text-only cards) */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.community {
  padding: 30px 30px 32px;
  background: var(--white);
  border-top: 2px solid var(--brass);
  transition: transform .25s ease;
}
.community:hover { transform: translateY(-3px); }
.community h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 500;
}
.community p { font-size: 0.95rem; margin: 0; }
.community .places {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--seafoam-deep);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Neighborhoods (services page, dense text grid) */
.hoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.hood {
  background: var(--shell);
  padding: 24px 22px;
}
.hood-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.hood-desc {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  background: transparent;
  border-top: 1px solid var(--rule);
  margin-bottom: 0;
  overflow: hidden;
}
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  padding: 24px 40px 24px 0;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform .2s ease;
  font-weight: 300;
  font-family: var(--font-sans);
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 40px 24px 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p { margin: 0; }

/* CTA banner (navy-deep) */
.cta-banner {
  background: var(--navy-deep);
  color: var(--shell);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .hairline-center { background: var(--brass); }
.cta-banner h2 {
  color: var(--shell);
  max-width: 780px;
  margin: 0 auto 1rem;
  font-weight: 300;
}
.cta-banner p {
  color: rgba(247,241,228,0.82);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  font-size: 1.06rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Form / contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; font-weight: 400; }
.contact-info p { font-size: 1.02rem; margin-bottom: 1.5rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--brass); flex-shrink: 0; margin-top: 3px; }
.contact-row strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.contact-row span { color: var(--ink-soft); font-size: 0.94rem; }
.contact-row a { border-bottom: 0; }
.form-card {
  background: var(--white);
  border-radius: 0;
  padding: 26px;
  border-top: 3px solid var(--brass);
  box-shadow: var(--shadow-sm);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 763px;
  display: block;
}
.consult-callout {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--shell-warm);
  border-left: 3px solid var(--seafoam);
}
.consult-callout h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 500;
}
.consult-callout p { margin: 0; font-size: 0.94rem; }

/* Page hero (non-home) */
.page-hero {
  background: var(--shell);
  color: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero .hairline-center { margin-bottom: 20px; }
.page-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 300;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.prose h2 {
  margin-top: 2.6rem;
  font-weight: 400;
  color: var(--navy);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 1.6rem;
  font-weight: 500;
}
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 22px; margin-bottom: 1.4rem; }
.prose ul li { margin-bottom: 0.55rem; }
.prose .note {
  padding: 18px 22px;
  background: var(--shell-warm);
  border-left: 3px solid var(--brass);
  font-size: 0.94rem;
  margin: 1.6rem 0;
}
.prose .note p:last-child { margin: 0; }

/* Two-column split for about */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-split h3 { margin-bottom: 14px; font-weight: 500; }
.about-split p { color: var(--ink-soft); }

/* First-meeting bullets */
.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.expect-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.expect-list .step-mark {
  font-family: var(--font-display);
  color: var(--brass-deep);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  padding-top: 2px;
}
.expect-list strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.expect-list span {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(247,241,228,0.72);
  padding: 72px 0 30px;
}
.footer h4 {
  color: var(--shell);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--shell); }
.footer .brand .brand-sub { color: rgba(247,241,228,0.55); }
.footer .brand .brand-mark { background: var(--brass); color: var(--navy-deep); }
.footer p { color: rgba(247,241,228,0.7); font-size: 0.92rem; margin: 16px 0; font-weight: 300; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(247,241,228,0.72); font-size: 0.9rem; border-bottom: 0; }
.footer ul a:hover { color: var(--brass); }
.footer-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(247,241,228,0.72);
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--seafoam); }
.footer-bottom {
  border-top: 1px solid rgba(247,241,228,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(247,241,228,0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 84px 0 100px; }
  .hero-glyph { opacity: 0.08; right: -140px; }
  .section-light, .section-warm, .section-white, .section-dark { padding: 76px 0; }
  .cta-banner { padding: 76px 0; }
  .page-hero { padding: 76px 0 60px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; }
  .topbar-meta { gap: 12px; font-size: 0.78rem; }
  .brand-sub { display: none; }
  .form-card { padding: 16px; }
}
