/* =====================================================================
   Priya Mann — Insurance & Investment Advisor
   Subtle, warm design system · deep maroon + cream + muted gold
   ===================================================================== */

:root {
  --ink:        #2b2220;
  --maroon:     #73020c;   /* brand (matches logo) */
  --maroon-deep:#4f0107;
  --maroon-soft:#9a3b40;
  --gold:       #a87b3c;   /* muted antique-gold accent */
  --gold-2:     #d8b878;
  --cream:      #f7f3ec;
  --bg-2:       #efe8dd;
  --paper:      #fffdf9;
  --line:       #e8e0d3;
  --line-2:     #dacfbf;
  --slate:      #6d635c;

  /* aliases used by markup */
  --navy:    var(--maroon);
  --navy-2:  var(--maroon-deep);
  --steel:   var(--maroon-soft);
  --bg:      var(--cream);
  --muted:   var(--slate);
  --gold-soft: var(--gold-2);

  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gut: clamp(18px, 4.5vw, 56px);
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(60,20,20,.05), 0 3px 10px rgba(60,20,20,.05);
  --shadow-md: 0 8px 24px rgba(60,20,20,.09), 0 2px 6px rgba(60,20,20,.06);
  --shadow-lg: 0 26px 56px -20px rgba(60,20,20,.28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--body); font-size: 16.5px; line-height: 1.6; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
svg { width: 1em; height: 1em; flex: none; }
a { color: var(--maroon); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.012em; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p  { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(44px, 6vw, 84px) 0; position: relative; }
.section--tight { padding: clamp(32px, 4vw, 56px) 0; }
.bg-paper { background: var(--paper); }
.bg-alt { background: var(--bg-2); }

.eyebrow { font-family: var(--body); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--maroon); margin: 0 0 .85rem; display: inline-flex; align-items: center; gap: .55em; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.lead { font-size: 1.1rem; color: var(--slate); max-width: 62ch; }

/* Buttons */
.btn { --btn-bg: var(--maroon); --btn-fg: #fff; display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: var(--body); font-weight: 600; font-size: .95rem; padding: .82em 1.4em; border-radius: 8px; background: var(--btn-bg); color: var(--btn-fg); border: 1px solid transparent; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .18s ease, filter .18s ease; box-shadow: var(--shadow-sm); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--btn-fg); filter: brightness(1.1); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #2a1c08; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--maroon); border-color: var(--line-2); box-shadow: none; }
.btn--ghost:hover { --btn-bg: #fff; border-color: var(--maroon); filter: none; }
.btn--lg { padding: .98em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }

/* Top utility bar */
.topbar { background: var(--maroon-deep); color: #e7cfd0; font-size: .82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #f0dcdd; }
.topbar a:hover { color: var(--gold-2); }
.topbar .tb-left { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar .tb-left span, .topbar .tb-left a { display: inline-flex; align-items: center; gap: .4em; }
.topbar .tb-left svg { color: var(--gold-2); }
.topbar .tb-right { display: flex; gap: .7rem; align-items: center; }
.topbar .tb-right a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 6px; }
.topbar .tb-right a:hover { background: rgba(255,255,255,.1); }
.topbar .tb-right svg { width: 15px; height: 15px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,253,249,.94); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.28rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo { height: 38px; width: auto; }
.brand small { display: block; font-family: var(--body); font-weight: 600; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a.nav-link { display: inline-flex; align-items: center; gap: .3em; font-weight: 600; font-size: .92rem; color: var(--ink); padding: .5em .7em; border-radius: 7px; }
.nav-menu a.nav-link:hover { color: var(--maroon); background: rgba(115,2,12,.06); }
.nav-link .chev { width: 13px; height: 13px; opacity: .55; transition: transform .2s ease; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 256px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: .45rem; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 50; }
.dropdown a { display: block; padding: .55em .75em; border-radius: 7px; color: var(--ink); font-size: .9rem; font-weight: 600; }
.dropdown a:hover { background: var(--cream); color: var(--maroon); }
.dropdown a span { display: block; font-size: .76rem; color: var(--slate); font-weight: 400; margin-top: 1px; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: var(--maroon); font-size: .92rem; white-space: nowrap; }
.nav-phone svg { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--maroon); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Hero — light & subtle */
.hero { background: linear-gradient(165deg, #fdfbf6 0%, var(--cream) 55%, var(--bg-2) 120%); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; right: -8%; top: -25%; width: 46vw; height: 46vw; max-width: 560px; background: radial-gradient(circle at 45% 45%, rgba(115,2,12,.06), transparent 60%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; padding-block: clamp(44px, 6vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--maroon); }
.hero .lead { margin-bottom: 1.4em; font-size: 1.14rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chip { display: inline-flex; align-items: center; gap: .4em; font-size: .82rem; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: .42em .85em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.chip svg { color: var(--maroon); width: 1.05em; height: 1.05em; }

/* Hero photo */
.hero-media { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--bg-2); max-height: 460px; max-width: 370px; margin-left: auto; }
.hero-badge { position: absolute; left: -14px; bottom: 24px; background: var(--maroon); color: #fff; border-radius: var(--radius); padding: .8rem 1rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; }
.hero-badge b { font-family: var(--display); font-size: 1.7rem; line-height: 1; color: var(--gold-2); }
.hero-badge span { font-size: .78rem; font-weight: 600; line-height: 1.2; color: #f0dcdd; }
@media (max-width: 1000px) { .hero-media { max-width: 420px; margin-inline: auto; } }

/* Partner strip */
.partners { border-block: 1px solid var(--line); background: var(--paper); }
.partners .container { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: center; padding-block: 1.1rem; }
.partners .pl { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.partners .logos { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; align-items: center; justify-content: center; }
.partners .logos span { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--maroon); opacity: .82; }

/* Section heading */
.sec-head { max-width: 66ch; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-bottom: 0; }

/* Service cards */
.cat-block + .cat-block { margin-top: 2.4rem; }
.cat-bar { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--line); padding-bottom: .7rem; }
.cat-bar h3 { font-size: 1.3rem; margin: 0; color: var(--maroon); }
.cat-bar span { font-size: .92rem; color: var(--slate); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.1rem; }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; position: relative; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display: flex; flex-direction: column; }
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .22s ease; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .ic { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--maroon); color: var(--gold-2); margin-bottom: .9rem; }
.svc-card .ic svg { width: 23px; height: 23px; }
.svc-card h4 { font-size: 1.12rem; margin-bottom: .3em; color: var(--ink); }
.svc-card .tl { font-size: .9rem; color: var(--slate); margin-bottom: .8rem; }
.svc-card .pts { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .35rem; }
.svc-card .pts li { font-size: .86rem; color: var(--ink); display: grid; grid-template-columns: auto 1fr; gap: .5em; align-items: start; }
.svc-card .pts li svg { color: var(--gold); width: 1.05em; height: 1.05em; margin-top: .2em; }
.svc-card .more { margin-top: auto; font-weight: 700; font-size: .88rem; color: var(--maroon); display: inline-flex; align-items: center; gap: .4em; }
.svc-card .more svg { transition: transform .18s ease; }
.svc-card:hover .more svg { transform: translateX(3px); }
.svc-card .tag { position: absolute; top: 1rem; right: 1rem; font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #2a1c08; background: var(--gold-2); padding: .28em .6em; border-radius: 5px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.3rem; position: relative; }
.step .n { width: 38px; height: 38px; border-radius: 9px; background: var(--maroon); color: var(--gold-2); font-family: var(--display); font-weight: 700; font-size: 1.05rem; display: grid; place-items: center; margin-bottom: .9rem; }
.step h4 { font-size: 1.08rem; margin-bottom: .25em; }
.step p { font-size: .9rem; color: var(--slate); margin: 0; }

/* Comparison */
.compare-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--body); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); font-weight: 700; }
.compare thead th.you { color: var(--maroon); }
.compare thead th.you, .compare td.you { background: rgba(115,2,12,.05); }
.compare tbody th { font-weight: 600; font-size: .95rem; color: var(--ink); }
.compare td { text-align: center; width: 26%; font-size: .9rem; color: var(--slate); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: #1f7a4d; font-weight: 700; display: inline-flex; }
.compare .no { color: #b03b3b; display: inline-flex; }
.compare .yes svg, .compare .no svg { width: 1.2em; height: 1.2em; }

/* Stats band */
.statsband { background: var(--maroon); color: #f0dcdd; }
.statsband .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; padding-block: clamp(28px, 4vw, 46px); }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -.7rem; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.14); }
.stat .num { font-family: var(--display); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--gold-2); line-height: 1; font-weight: 600; }
.stat .lbl { font-size: .85rem; color: #e3c6c7; margin-top: .45rem; }

/* About home */
.about-home { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.about-media { position: relative; }
.about-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--maroon-soft), var(--maroon)); display: grid; place-items: center; color: rgba(255,255,255,.5); box-shadow: var(--shadow-lg); overflow: hidden; width: 100%; max-height: 480px; }
img.about-photo { object-fit: cover; height: auto; max-height: 480px; }
.about-photo svg { width: 64px; height: 64px; }
.about-badge { position: absolute; right: -14px; bottom: -14px; background: var(--gold); color: #2a1c08; border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-md); text-align: center; }
.about-badge b { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.about-badge span { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.portrait-inset { float: right; width: 260px; max-width: 42%; border-radius: var(--radius-lg); margin: .2rem 0 1.1rem 1.6rem; box-shadow: var(--shadow-md); }
@media (max-width: 640px) { .portrait-inset { float: none; width: 100%; max-width: 320px; margin: 0 0 1.2rem; } }
.cred-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .55rem; }
.cred-list li { display: grid; grid-template-columns: auto 1fr; gap: .6em; font-size: .96rem; color: var(--ink); }
.cred-list li svg { color: var(--gold); margin-top: .15em; }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; }
.feature-list .fi { width: 44px; height: 44px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); color: var(--maroon); }
.feature-list .fi svg { width: 21px; height: 21px; }
.feature-list h3 { font-size: 1.08rem; margin-bottom: .15em; }
.feature-list p { margin: 0; font-size: .92rem; color: var(--slate); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }

/* Offer */
.offer { background: linear-gradient(120deg, var(--maroon), var(--maroon-soft)); color: #f4e7e7; border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.8rem); display: grid; grid-template-columns: 1fr auto; gap: 1.8rem; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.offer::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(216,184,120,.22), transparent 65%); }
.offer > * { position: relative; z-index: 2; }
.offer .eyebrow { color: var(--gold-2); }
.offer h2 { color: #fff; }
.offer p { color: #f0dcdd; margin-bottom: 0; max-width: 54ch; }
.offer .price { font-family: var(--display); font-size: clamp(2.2rem,4.5vw,3.1rem); color: var(--gold-2); line-height: 1; text-align: center; }
.offer .price small { display: block; font-family: var(--body); font-size: .82rem; color: #e3c6c7; margin-top: .4rem; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.1rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.quote .stars { color: var(--gold); display: flex; gap: .12em; margin-bottom: .7rem; }
.quote .stars svg { width: 17px; height: 17px; }
.quote p { font-size: .98rem; color: var(--ink); margin-bottom: 1rem; }
.quote .who { display: flex; align-items: center; gap: .7rem; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-soft), var(--maroon)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .88rem; }
.quote .who b { display: block; font-size: .93rem; color: var(--ink); }
.quote .who span { font-size: .8rem; color: var(--slate); }

/* Coverage areas */
.areas-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chip { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .55em 1.05em; font-size: .9rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: .45em; }
.area-chip svg { color: var(--maroon); width: 1em; height: 1em; }

/* Quote/contact section (home) */
.quote-section { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (max-width:1000px){ .quote-section{ grid-template-columns:1fr; } }

/* FAQ */
.faq { max-width: 840px; }
.faq.center { margin-inline: auto; }
.faq details { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: .7rem; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 24px; height: 24px; border-radius: 6px; background: var(--cream); display: grid; place-items: center; color: var(--maroon); transition: transform .2s ease; font-size: 1.1rem; line-height: 0; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details p { margin: .8rem 0 0; color: var(--slate); font-size: .96rem; }

/* Page hero (interior) — deep maroon */
.page-hero { background: linear-gradient(160deg, var(--maroon), var(--maroon-deep)); color: #f4e7e7; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -8%; top: -40%; width: 38vw; height: 38vw; max-width: 440px; background: radial-gradient(circle, rgba(216,184,120,.14), transparent 62%); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(40px, 6vw, 76px); }
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lead { color: #f0dcdd; }
.breadcrumb { font-size: .84rem; color: #d6a9ac; margin-bottom: .9rem; }
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { color: #fff; }

/* Prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; color: var(--maroon); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: .55rem; margin: 1em 0; }
.prose ul li { display: grid; grid-template-columns: auto 1fr; gap: .65em; }
.prose ul li::before { content: ""; width: 20px; height: 20px; margin-top: .2em; border-radius: 5px; background: rgba(115,2,12,.09) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373020c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

.aside-card { background: var(--maroon); color: #f0dcdd; border-radius: var(--radius-lg); padding: 1.7rem; position: sticky; top: 90px; box-shadow: var(--shadow-md); }
.aside-card h3 { color: #fff; }
.aside-card p { color: #e7c9ca; font-size: .93rem; }
.aside-card .btn { width: 100%; margin-top: .4rem; }
.aside-card .or { text-align: center; font-size: .84rem; color: #d6a9ac; margin: .85rem 0 .4rem; }
.aside-card .callnum { display: flex; align-items: center; justify-content: center; gap: .5em; font-weight: 700; color: var(--gold-2); font-size: 1.1rem; }
.layout-2col { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

/* Footer */
.site-footer { background: var(--maroon-deep); color: #d9b9bb; }
.site-footer .container { padding-block: clamp(44px, 6vw, 72px) 0; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.6rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand-logo { height: 40px; }
.site-footer p { font-size: .9rem; color: #c79ea0; max-width: 36ch; }
.foot-col h4 { font-family: var(--body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .9rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.foot-col a { color: #d9b9bb; font-size: .92rem; }
.foot-col a:hover { color: var(--gold-2); }
.foot-contact li { display: flex; gap: .55em; font-size: .9rem; margin-bottom: .65rem; color: #d9b9bb; }
.foot-contact svg { color: var(--gold-2); margin-top: .2em; }
.socials { display: flex; gap: .5rem; margin-top: 1.1rem; }
.socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #d9b9bb; }
.socials a:hover { background: var(--maroon-soft); color: #fff; border-color: var(--maroon-soft); }
.socials svg { width: 17px; height: 17px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .8rem; color: #b08688; }
.foot-bottom .license { max-width: 72ch; line-height: 1.5; }
.foot-bottom a { color: #c79ea0; }

/* Floating call */
.float-call { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: none; width: 54px; height: 54px; border-radius: 50%; background: var(--maroon); color: #fff; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.float-call svg { width: 23px; height: 23px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--maroon), var(--maroon-deep)); color: #f4e7e7; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #f0dcdd; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 1.4rem; }

/* Forms */
.lead-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2.3rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: .98rem; color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 8px; padding: .72em .85em; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(115,2,12,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8rem; color: var(--slate); margin-top: .4rem; }
.form-status { margin-top: .9rem; font-size: .93rem; font-weight: 600; }
.form-status.ok { color: #1f7a4d; }
.form-status.err { color: #b03b3b; }

/* Reveal (progressive) */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #2a1c08; padding: .6em 1em; border-radius: 0 0 8px 0; z-index: 999; }
.skip:focus { left: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid, .split, .about-home, .layout-2col { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .statsband .container { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat + .stat::before { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .offer { grid-template-columns: 1fr; }
  .about-home { gap: 2.4rem; }
  .about-media { max-width: 360px; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .topbar .tb-left { gap: .9rem; font-size: .78rem; }
  .nav.is-open .nav-menu { display: flex; flex-direction: column; align-items: stretch; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: .8rem var(--gut) 1.4rem; box-shadow: var(--shadow-md); z-index: 99; }
  .nav.is-open .nav-menu > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav-menu a.nav-link { padding: .85em .2em; }
  .nav.is-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; min-width: 0; }
  .field-row { grid-template-columns: 1fr; }
  .float-call { display: grid; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .compare th, .compare td { padding: .7rem .6rem; font-size: .82rem; }
}
