/* =================================================================
   Deepak Jagpal Real Estate — Design System v3 "LUXURY"
   Midnight navy · antique gold · warm ivory
   Playfair Display (serif display) + Inter (body)
   Restrained, editorial, high-end.
   ================================================================= */
/* Fonts are loaded via <link> in each page's <head> (faster, non-blocking). */

:root {
  /* Neutrals */
  --white: #ffffff;
  --paper: #FBF9F4;      /* near-white card */
  --ivory: #F4F0E7;      /* warm ivory page base */
  --ivory-2: #ECE6D9;    /* deeper ivory tint */
  --bg: var(--paper);

  /* Ink / navy */
  --ink: #101D33;        /* midnight navy — headings & text */
  --ink-2: #2C3650;      /* secondary text */
  --navy: #0E1A30;       /* deep section bg */
  --navy-2: #0A1426;

  /* Gold */
  --gold: #B796520;      /* (guard) */
  --gold: #B79652;       /* antique gold */
  --gold-2: #D7BE88;     /* light gold highlight */
  --gold-deep: #8C6F38;  /* deep bronze-gold */
  --gold-soft: #EFE6D2;

  --muted: #6C7180;      /* warm grey body */
  --muted-light: rgba(244,240,231,0.66);
  --line: rgba(16,29,51,0.13);
  --line-strong: rgba(16,29,51,0.22);
  --line-light: rgba(244,240,231,0.18);
  --line-gold: rgba(183,150,82,0.45);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --container-narrow: 940px;
  --radius: 2px;
  --radius-lg: 3px;
  --shadow-sm: 0 4px 24px rgba(16, 29, 51, 0.06);
  --shadow: 0 30px 70px -30px rgba(16, 29, 51, 0.30);
  --shadow-lg: 0 50px 110px -40px rgba(16, 29, 51, 0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
::selection { background: var(--gold); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; overflow-wrap: break-word; }
h1 { font-size: clamp(3rem, 6.4vw, 5.9rem); font-weight: 400; line-height: 1.02; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--ink-2); font-weight: 400; }
strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }
.lead { font-size: clamp(1.12rem, 1.55vw, 1.34rem); color: var(--muted); line-height: 1.85; font-weight: 300; }

.eyebrow {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 1rem;
}
.eyebrow::before { content: ""; width: 46px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center::after { content: ""; width: 46px; height: 1px; background: var(--gold); display: inline-block; }
h1 em, h2 em { font-family: var(--serif); font-style: italic; color: var(--gold); font-weight: 400; }
.text-gold { color: var(--gold-deep); }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: var(--container-narrow); }
.section { padding: clamp(92px, 12vw, 182px) 0; }
.section-sm { padding: clamp(64px, 8vw, 116px) 0; }
.section-head { max-width: 760px; margin-bottom: 82px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 28px; }
.section-head h2 { margin-bottom: 24px; }

.bg-soft, .bg-paper-2, .bg-ivory { background: var(--ivory-2); }
.bg-white { background: var(--paper); }

/* Deep, rich navy sections */
.bg-ink { background: var(--navy); color: var(--muted-light); position: relative; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--ivory); }
.bg-ink p { color: var(--muted-light); }
.bg-ink .eyebrow { color: var(--gold-2); }
.bg-ink .eyebrow::before, .bg-ink .eyebrow.center::after { background: var(--gold); }
/* highlighted words read as gold on dark sections */
.hero strong, .bg-ink strong, .page-hero strong { color: var(--gold-2); font-weight: 500; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }

/* ---------- Buttons (refined) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 20px 42px; border-radius: var(--radius); border: 1px solid transparent;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
  white-space: nowrap; line-height: 1; cursor: pointer;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.45s var(--ease); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--ink); color: var(--ivory); }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { background: var(--gold); color: var(--ink); }
.btn-outline-light { border-color: var(--line-light); color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-block { width: 100%; }
.btn-lg { padding: 23px 50px; font-size: 0.76rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep);
  padding-bottom: 4px; border-bottom: 1px solid var(--line-gold);
  transition: gap 0.4s var(--ease), color 0.3s, border-color 0.3s;
}
.link-arrow svg { width: 15px; height: 15px; }
.link-arrow:hover { gap: 0.95rem; color: var(--ink); border-color: var(--ink); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s, height 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent; background: rgba(244,240,231,0.55); backdrop-filter: blur(20px) saturate(130%); -webkit-backdrop-filter: blur(20px) saturate(130%); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header.scrolled { height: 74px; box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(244,240,231,0.78); }

.header.on-dark:not(.scrolled) { background: transparent; backdrop-filter: none; border-bottom-color: var(--line-light); }
.header.on-dark:not(.scrolled) .nav-links a { color: rgba(244,240,231,0.86); }
.header.on-dark:not(.scrolled) .nav-links a:hover { color: var(--ivory); }
.header.on-dark:not(.scrolled) .logo-text { color: var(--ivory); }
.header.on-dark:not(.scrolled) .logo-text span { background-image: linear-gradient(100deg, var(--gold-2) 0%, var(--gold-2) 42%, #FBEFCF 50%, var(--gold-2) 58%, var(--gold-2) 100%); -webkit-text-fill-color: transparent; color: transparent; }
.header.on-dark:not(.scrolled) .logo-text small { color: var(--gold-2); }
.header.on-dark:not(.scrolled) .logo-mark { border-color: var(--gold-2); color: var(--ivory); background: transparent; }
.header.on-dark:not(.scrolled) .burger span { background: var(--ivory); }
.header.on-dark:not(.scrolled) .nav-phone { color: var(--ivory); }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; background: transparent; color: var(--ink);
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem; letter-spacing: 0.03em;
  transition: 0.4s;
}
.logo-text { font-family: var(--serif); font-size: 1.42rem; font-weight: 500; line-height: 1; letter-spacing: 0.01em; color: var(--ink); }
.logo-text small { display: block; font-family: var(--sans); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; white-space: nowrap; }
.logo-text span { color: var(--gold-deep); font-style: normal; }
/* Gold shimmer sweep across the header wordmark's accent word */
.header .logo-text span {
  background-image: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-deep) 42%, var(--gold-2) 50%, var(--gold-deep) 58%, var(--gold-deep) 100%);
  background-size: 250% 100%; background-position: 150% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: logoShine 6.5s ease-in-out infinite;
}
@keyframes logoShine { 0% { background-position: 150% 0; } 45% { background-position: -50% 0; } 100% { background-position: -50% 0; } }
@media (prefers-reduced-motion: reduce) { .header .logo-text span { animation: none; } }

.nav { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; position: relative; transition: color 0.3s; color: var(--ink-2); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.header .nav-cta .btn { padding: 15px 26px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.84rem; letter-spacing: 0.04em; color: var(--ink); }
.nav-phone svg { width: 15px; height: 15px; color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 110; }
.burger span { width: 26px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105; background: var(--navy); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: flex-start; padding: 78px 40px 30px;
  transform: translateX(100%); transition: transform 0.6s var(--ease); visibility: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu::before { content: ""; position: absolute; inset: 0; background: var(--grad-blue); z-index: 0; }
.mobile-menu::after { content: ""; position: absolute; top: -130px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(183,150,82,0.20), transparent 68%); z-index: 0; }
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu.open { transform: translateX(0); visibility: visible; }

.mobile-menu nav { display: flex; flex-direction: column; counter-reset: mnav; }
.mobile-menu nav a { display: flex; align-items: center; gap: 22px; width: 100%; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; color: var(--ivory); padding: 10px 0; border-bottom: 1px solid rgba(183,150,82,0.22); transition: color 0.35s var(--ease), padding-left 0.4s var(--ease); }
.mobile-menu nav a::before { counter-increment: mnav; content: counter(mnav, decimal-leading-zero); font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); min-width: 22px; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--gold-2); padding-left: 10px; }
.mobile-menu.open nav a { animation: menuItemIn 0.55s var(--ease) both; }
.mobile-menu.open nav a:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.open nav a:nth-child(2) { animation-delay: 0.11s; }
.mobile-menu.open nav a:nth-child(3) { animation-delay: 0.16s; }
.mobile-menu.open nav a:nth-child(4) { animation-delay: 0.21s; }
.mobile-menu.open nav a:nth-child(5) { animation-delay: 0.26s; }
.mobile-menu.open nav a:nth-child(6) { animation-delay: 0.31s; }
.mobile-menu.open nav a:nth-child(7) { animation-delay: 0.36s; }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.mobile-menu .mm-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(183,150,82,0.22); display: flex; flex-direction: column; }
.mobile-menu .mm-footer br { display: none; }
.mobile-menu .mm-footer a:not(.btn) { font-family: var(--sans); font-size: 0.96rem; border: none; padding: 3px 0; letter-spacing: 0.03em; color: rgba(244,240,231,0.76); }
.mobile-menu .mm-footer a:not(.btn):first-child { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-2); letter-spacing: 0; margin-bottom: 2px; }
.mobile-menu .mm-footer a:not(.btn):hover { color: var(--gold-2); }
.mobile-menu .btn { margin-top: 16px; }
body.menu-open .burger span { background: var(--ivory); }

/* ---------- Hero (full-bleed, dramatic) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--ivory); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--navy); }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(14,26,48,0.80) 0%, rgba(14,26,48,0.52) 36%, rgba(14,26,48,0.18) 70%, rgba(14,26,48,0.04) 100%),
  linear-gradient(0deg, rgba(14,26,48,0.45) 0%, transparent 42%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; padding: calc(var(--header-h) + 40px) 0 60px; }
.hero h1 { color: var(--ivory); margin-bottom: 28px; font-weight: 500; }
.hero h1 em { color: var(--gold-2); }
.hero .lead { color: rgba(244,240,231,0.82); max-width: 540px; margin-bottom: 42px; font-weight: 300; }
.hero .eyebrow { color: var(--gold-2); margin-bottom: 26px; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; padding: 9px 18px; border: 1px solid rgba(244,240,231,0.28); border-radius: 100px; background: rgba(14,26,48,0.34); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); transition: border-color 0.3s, transform 0.3s var(--ease); }
.hero-rating:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.hero-rating .hr-stars { display: inline-flex; gap: 2px; color: var(--gold-2); }
.hero-rating .hr-stars svg { width: 16px; height: 16px; filter: drop-shadow(0 0 3px rgba(244,197,81,0.45)); animation: starShine 3.2s ease-in-out infinite; }
.hero-rating .hr-stars svg:nth-child(1) { animation-delay: 0s; }
.hero-rating .hr-stars svg:nth-child(2) { animation-delay: 0.12s; }
.hero-rating .hr-stars svg:nth-child(3) { animation-delay: 0.24s; }
.hero-rating .hr-stars svg:nth-child(4) { animation-delay: 0.36s; }
.hero-rating .hr-stars svg:nth-child(5) { animation-delay: 0.48s; }
@keyframes starShine {
  0%, 58%, 100% { filter: drop-shadow(0 0 3px rgba(244,197,81,0.45)); transform: scale(1); }
  20% { filter: drop-shadow(0 0 9px rgba(244,197,81,1)) brightness(1.5); transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) { .hero-rating .hr-stars svg { animation: none; filter: drop-shadow(0 0 4px rgba(244,197,81,0.6)); } }
.hero-rating .hr-text { font-size: 0.82rem; letter-spacing: 0.02em; color: rgba(244,240,231,0.92); white-space: nowrap; }
.hero-rating .hr-text strong { color: var(--ivory); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line-light); }
.hero-meta .stat strong { font-family: var(--serif); font-size: 2.9rem; font-weight: 500; color: var(--gold-2); display: block; line-height: 1; }
.hero-meta .stat span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,240,231,0.6); margin-top: 10px; display: block; font-weight: 500; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,240,231,0.55); font-weight: 500; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold-2), transparent); animation: scrolldown 2.4s var(--ease) infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* legacy hero-grid/portrait (kept harmless if used) */
.hero-grid { display: block; }
.hero-portrait { display: none; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding-top: 28px; padding-bottom: 28px; }
.trustbar .t-item { display: flex; align-items: center; gap: 13px; color: var(--ink-2); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }
.trustbar .t-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- Media / placeholders ---------- */
.media { position: relative; overflow: hidden; background: var(--ivory-2); box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-tall { aspect-ratio: 4 / 5; }
.media-wide { aspect-ratio: 16 / 10; }
.media-square { aspect-ratio: 1 / 1; }
.media-framed { padding: 14px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-framed .media, .media-framed img { box-shadow: none; }
.ph {
  width: 100%; height: 100%; min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(150deg, var(--ivory-2), var(--paper));
  color: var(--gold-deep); text-align: center; padding: 26px; position: relative;
}
.ph svg { width: 40px; height: 40px; color: var(--gold); opacity: 0.6; }
.ph span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.ph .ph-mono { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); opacity: 0.7; font-style: italic; }

.media-badge {
  position: absolute; bottom: 0; left: 0; z-index: 2;
  background: var(--navy); color: var(--ivory);
  padding: 18px 26px; border-top: 2px solid var(--gold);
}
.media-badge strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--gold-2); display: block; line-height: 1; }
.media-badge span { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,240,231,0.7); margin-top: 5px; display: block; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 40px; transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  height: 100%; position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.card .ico { width: 58px; height: 58px; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); margin-bottom: 28px; transition: 0.5s; }
.card:hover .ico { background: var(--gold); color: var(--white); border-color: var(--gold); }
.card .ico svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.card .num { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--gold); display: block; margin-bottom: 16px; }
.bg-ink .card { background: rgba(255,255,255,0.03); border-color: var(--line-light); }
.bg-ink .card h3 { color: var(--ivory); }
.bg-ink .card p { color: var(--muted-light); }

/* ---------- Builder partner cards ---------- */
.partner-card { text-align: center; padding: 40px 26px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,0.03); transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s; height: 100%; }
.partner-card:hover { transform: translateY(-5px); border-color: var(--gold); background: rgba(255,255,255,0.05); }
.partner-card .p-mark { width: 54px; height: 54px; margin: 0 auto 22px; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); }
.partner-card .p-mark svg { width: 24px; height: 24px; }
.partner-card h3 { color: var(--ivory); font-size: 1.3rem; margin-bottom: 9px; line-height: 1.25; }
.partner-card .p-tag { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; display: block; }

/* feature list */
.feat-list { display: flex; flex-direction: column; gap: 26px; }
.feat-list li { display: flex; gap: 18px; align-items: flex-start; }
.feat-list .fi { width: 44px; height: 44px; border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold); display: grid; place-items: center; flex: none; }
.bg-ink .feat-list .fi { border-color: var(--line-light); color: var(--gold-2); }
.feat-list .fi svg { width: 18px; height: 18px; }
.feat-list h4 { margin-bottom: 5px; font-family: var(--serif); font-weight: 600; }
.feat-list p { font-size: 0.96rem; color: var(--muted); }
.bg-ink .feat-list h4 { color: var(--ivory); }
.bg-ink .feat-list p { color: var(--muted-light); }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-strip .s { text-align: center; padding: 24px; border-right: 1px solid var(--line-light); }
.stats-strip .s:last-child { border-right: none; }
.stats-strip .s strong { font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 4.2rem); font-weight: 500; color: var(--gold-2); display: block; line-height: 1; }
.stats-strip .s span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,240,231,0.62); margin-top: 14px; display: block; font-weight: 500; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 100px); align-items: center; }
.split.reverse .split-media { order: 2; }
.signature { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold-deep); margin-top: 12px; font-weight: 500; }

/* ---------- Tag ---------- */
.tag { display: inline-block; font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line-gold); padding: 9px 20px; border-radius: 100px; }
.bg-ink .tag, .hero .tag { color: var(--gold-2); border-color: var(--line-light); }

/* ---------- Areas ---------- */
.area-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; color: var(--ivory); box-shadow: var(--shadow); }
.area-card .ph { position: absolute; inset: 0; }
.area-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(14,26,48,0.9)); z-index: 1; }
.area-card .area-body { position: relative; z-index: 2; padding: 36px; width: 100%; }
.area-card h3 { color: var(--ivory); margin-bottom: 8px; }
.area-card p { color: rgba(244,240,231,0.78); font-size: 0.9rem; }
.area-card .area-price { font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.3rem; margin-top: 14px; display: block; }
.area-card .area-link { position: absolute; inset: 0; z-index: 3; }

.neigh-list { display: flex; flex-wrap: wrap; gap: 10px; }
.neigh-list li { font-size: 0.84rem; padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-2); transition: 0.3s; }
.neigh-list li:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---------- Video ---------- */
.video-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); background: var(--navy); }
.video-wrap iframe, .video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.play-btn { position: absolute; inset: 0; display: grid; place-items: center; z-index: 3; background: rgba(14,26,48,0.35); transition: 0.5s; }
.play-btn:hover { background: rgba(14,26,48,0.5); }
.play-btn .play-ico { width: 92px; height: 92px; border-radius: 50%; background: rgba(244,240,231,0.12); border: 1px solid var(--gold-2); backdrop-filter: blur(4px); display: grid; place-items: center; transition: transform 0.5s var(--ease), background 0.4s; }
.play-btn:hover .play-ico { transform: scale(1.08); background: var(--gold); }
.play-btn svg { width: 28px; height: 28px; color: var(--ivory); margin-left: 4px; transition: 0.4s; }
.play-btn:hover svg { color: var(--ink); }

.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.reel { position: relative; aspect-ratio: 9/16; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.reel .ph { position: absolute; inset: 0; }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(14,26,48,0.9)); }
.reel .reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 54px; height: 54px; border-radius: 50%; background: rgba(244,240,231,0.15); border: 1px solid var(--gold-2); display: grid; place-items: center; transition: 0.4s; }
.reel:hover .reel-play { transform: translate(-50%,-50%) scale(1.12); background: var(--gold); }
.reel .reel-play svg { width: 20px; height: 20px; color: var(--ivory); margin-left: 3px; }
.reel:hover .reel-play svg { color: var(--ink); }
.reel .reel-cap { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; color: var(--ivory); font-size: 0.84rem; font-weight: 500; }
.reel .reel-views { font-size: 0.72rem; opacity: 0.78; display: flex; align-items: center; gap: 6px; margin-top: 5px; font-weight: 400; }

/* ---------- Social follow cards ---------- */
.social-cta { display: flex; align-items: center; gap: 18px; padding: 26px 30px; border: 1px solid var(--line-light); border-radius: var(--radius); color: var(--ivory); transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease); }
.social-cta:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); transform: translateY(-4px); }
.social-cta > svg { width: 32px; height: 32px; color: var(--gold-2); flex: none; }
.social-cta strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ivory); line-height: 1.1; }
.social-cta span { font-size: 0.92rem; color: rgba(244,240,231,0.7); }
.social-cta .social-cta-go { margin-left: auto; color: var(--gold-2); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ---------- Reviews ---------- */
.review-card { background: var(--paper); border: 1px solid var(--line); padding: 36px 34px; height: 100%; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 24px; }
.stars svg { width: 17px; height: 17px; }
.review-card .stars { margin-bottom: 18px; }
.review-card .stars svg { width: 14px; height: 14px; }
.review-card blockquote { font-family: var(--sans); font-size: 0.96rem; font-weight: 400; font-style: normal; line-height: 1.78; color: var(--ink-2); margin-bottom: 24px; flex: 1; }
.review-card .reviewer { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold-2); display: grid; place-items: center; font-family: var(--serif); font-size: 1.05rem; flex: none; }
.review-card .reviewer strong { font-size: 0.92rem; display: block; color: var(--ink); font-weight: 600; letter-spacing: 0.01em; }
.review-card .reviewer span { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

.rating-summary { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.rating-summary .big { font-family: var(--serif); font-size: 4rem; font-weight: 500; color: var(--gold); line-height: 1; }
.rating-summary .stars { margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 4px; text-align: left; font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); transition: color 0.3s; }
.faq-q:hover { color: var(--gold-deep); }
.faq-q .faq-ico { flex: none; width: 30px; height: 30px; display: grid; place-items: center; transition: 0.5s var(--ease); position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--gold); transition: 0.4s; }
.faq-q .faq-ico::before { width: 16px; height: 1px; }
.faq-q .faq-ico::after { width: 1px; height: 16px; }
.faq-item.open .faq-ico { transform: rotate(90deg); }
.faq-item.open .faq-ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 4px 32px; color: var(--muted); max-width: 92%; line-height: 1.8; }
.bg-ink .faq-item { border-color: var(--line-light); }
.bg-ink .faq-q { color: var(--ivory); }
.bg-ink .faq-a-inner { color: var(--muted-light); }

/* ---------- Forms ---------- */
.lead-card { background: var(--paper); padding: clamp(36px, 4vw, 56px); box-shadow: var(--shadow-lg); border-top: 2px solid var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; color: var(--ink); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  padding: 15px 0; border: none; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  background: transparent; transition: border-color 0.4s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B79652' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 30px; cursor: pointer; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; text-align: center; letter-spacing: 0.02em; }
.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success.show { display: block; }
.form-success .check { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .check svg { width: 30px; height: 30px; }

.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line-strong); margin-bottom: 26px; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label { display: flex; align-items: center; justify-content: center; padding: 15px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: 0.4s; margin: 0; border-right: 1px solid var(--line-strong); }
.segmented label:last-of-type { border-right: none; }
.segmented label:hover { color: var(--ink); }
.segmented input:checked + label { background: var(--navy); color: var(--gold-2); }

/* ---------- Entry lead modal ---------- */
.lead-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.lead-modal.open { display: flex; }
.lead-modal-overlay { position: absolute; inset: 0; background: rgba(10,16,36,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lead-modal-card { position: relative; z-index: 1; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; background: var(--paper); border-top: 3px solid var(--gold); padding: clamp(28px, 5vw, 46px); box-shadow: var(--shadow-lg); animation: modalIn 0.5s var(--ease) both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(26px) scale(0.98); } to { opacity: 1; transform: none; } }
.lead-modal-x { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; font-size: 1.7rem; line-height: 1; color: var(--muted); display: grid; place-items: center; border-radius: 50%; transition: 0.3s; }
.lead-modal-x:hover { color: var(--ink); background: var(--ivory-2); }
.lead-modal-card .eyebrow { justify-content: center; }
.lead-modal-card .lead-modal-head { text-align: center; margin-bottom: 24px; }
.lead-modal-card h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 12px 0 8px; }
.lead-modal-card .lead-modal-head p { color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .lead-modal-card { animation: none; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { margin-bottom: 22px; }
.cta-band .lead { margin: 0 auto 40px; max-width: 600px; }
.cta-band.bg-ink .lead { color: var(--muted-light); }
.cta-band .hero-cta { justify-content: center; display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 34px; padding: 40px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: none; }
.step .step-num { counter-increment: step; font-family: var(--serif); font-size: 2.6rem; font-style: italic; color: var(--gold); line-height: 1; }
.step .step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); }

/* ---------- Page hero (interior) — deep navy & elegant ---------- */
.page-hero { background: var(--navy); color: var(--muted-light); padding: calc(var(--header-h) + 80px) 0 96px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -140px; top: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(183,150,82,0.16), transparent 68%); z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { font-size: 0.74rem; color: rgba(244,240,231,0.6); margin-bottom: 26px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.page-hero .breadcrumb a:hover { color: var(--gold-2); }
.page-hero h1 { color: var(--ivory); max-width: 920px; margin-bottom: 24px; }
.page-hero h1 em { color: var(--gold-2); }
.page-hero .lead { color: rgba(244,240,231,0.82); max-width: 640px; font-weight: 300; }
.page-hero .eyebrow { color: var(--gold-2); margin-bottom: 22px; }
.page-hero .tag { margin-bottom: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-2); color: rgba(244,240,231,0.66); padding-top: 92px; }
.footer a:hover { color: var(--gold-2); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 52px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer h4 { color: var(--ivory); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 26px; font-weight: 600; }
.footer .f-links { display: flex; flex-direction: column; gap: 14px; }
.footer .f-links a { font-size: 0.94rem; transition: color 0.3s, padding-left 0.3s; }
.footer .f-links a:hover { padding-left: 6px; }
.footer .logo-text { color: var(--ivory); }
.footer .logo-mark { border-color: var(--gold-2); color: var(--ivory); }
.footer .logo-text span { color: var(--gold-2); }
.footer .f-brand p { color: rgba(244,240,231,0.55); font-size: 0.95rem; max-width: 330px; margin: 22px 0 26px; line-height: 1.75; }
.footer .f-contact li { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 17px; font-size: 0.94rem; }
.footer .f-contact svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 13px; margin-top: 10px; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; transition: 0.4s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 30px 0; font-size: 0.82rem; color: rgba(244,240,231,0.45); }
.footer-bottom .fb-links { display: flex; gap: 26px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll::after { animation: none; }
}

/* ---------- Map ---------- */
.map-wrap { overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/8; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.4) contrast(1.05); }

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar { display: none; }
.mobile-callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans); font-weight: 700; letter-spacing: 0.03em; padding: 17px 10px; line-height: 1; transition: background 0.3s, color 0.3s; }
.mobile-callbar .mc-call { flex: 1; background: var(--gold); color: var(--ink); font-size: 1.12rem; }
.mobile-callbar .mc-call svg { width: 21px; height: 21px; }
.mobile-callbar .mc-text { width: 92px; background: var(--navy); color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.mobile-callbar .mc-text svg { width: 17px; height: 17px; }
@media (max-width: 900px) {
  .mobile-callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 104; display: flex; background: var(--navy); box-shadow: 0 -10px 34px rgba(16,29,51,0.22); padding-bottom: env(safe-area-inset-bottom, 0); }
  body { padding-bottom: 72px; }
  /* stronger, even overlay so hero text stays readable over the video on phones */
  .hero-bg::after { background: linear-gradient(180deg, rgba(14,26,48,0.82) 0%, rgba(14,26,48,0.62) 45%, rgba(14,26,48,0.9) 100%); }
}
body.menu-open .mobile-callbar { display: none; }
@media (max-width: 620px) {
  /* full-width stacked hero buttons (prevents overflow from long labels) */
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: none; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Article prose (Insights) ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.35em; }
.prose p { color: var(--ink-2); font-size: 1.08rem; line-height: 1.85; }
.prose h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-top: 1.6em; }
.prose h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); margin-top: 1.4em; }
.prose ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--ink-2); line-height: 1.75; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 12px; height: 1px; background: var(--gold); }
.prose ol { padding-left: 1.2em; display: flex; flex-direction: column; gap: 10px; color: var(--ink-2); }
.prose ol li { padding-left: 6px; line-height: 1.75; }
.prose ol li::marker { color: var(--gold-deep); font-family: var(--serif); }
.prose strong { color: var(--ink); }
.prose blockquote { border-left: 2px solid var(--gold); padding: 4px 0 4px 26px; font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.5; color: var(--ink); }
.prose a:not(.btn):not(.link-arrow) { color: var(--gold-deep); border-bottom: 1px solid var(--line-gold); transition: color 0.3s, border-color 0.3s; }
.prose a:not(.btn):not(.link-arrow):hover { color: var(--ink); border-color: var(--ink); }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.post-meta .cat { color: var(--gold-deep); }
.post-card .tag { margin-bottom: 20px; }
.post-card h3 { margin-bottom: 12px; }
.post-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .reels { grid-template-columns: repeat(2, 1fr); }
}
/* Nav collapses to burger earlier so the multi-item nav never crowds the header */
@media (max-width: 1240px) { .nav-phone { display: none; } }
@media (max-width: 1080px) { .nav-links { display: none; } .burger { display: flex; } }
@media (max-width: 900px) {
  .hero-scroll { display: none; } /* desktop-only cue; overlaps the hero stats on small screens */
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip .s:nth-child(2) { border-right: none; }
  .stats-strip .s { padding: 30px 14px; border-bottom: 1px solid var(--line-light); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reels { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn { display: none; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hero: tighter so it fits the phone screen; balanced video crop */
  .hero { min-height: 100svh; }
  .hero-bg video, .hero-bg img { object-position: center; }
  .hero-content { padding: calc(var(--header-h) + 12px) 0 40px; }
  .hero h1 { margin-bottom: 18px; }
  .hero .lead { margin-bottom: 28px; }
  .hero-meta { margin-top: 30px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-meta .stat { text-align: center; }
  .hero-meta .stat strong { font-size: 1.8rem; }
  .hero-meta .stat span { font-size: 0.58rem; letter-spacing: 0.1em; margin-top: 7px; }
  /* Trust bar: clean vertical stack instead of a ragged wrap */
  .trustbar .container { flex-direction: column; align-items: flex-start; gap: 13px; }
}
/* Very small phones (<=400px): keep big display type from overflowing */
@media (max-width: 400px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2.6rem; }
  .hero h1 { font-size: 2.55rem; }
  .hero-meta .stat strong { font-size: 1.65rem; }
  .hero-meta .stat span { font-size: 0.54rem; }
  .btn-lg { padding: 20px 30px; font-size: 0.72rem; }
  .hero-meta { gap: 8px; }
}
/* Short / landscape viewports: don't force a tall hero that hides the content */
@media (max-height: 520px) {
  .hero { min-height: 0; }
  .hero-content { padding: 96px 0 30px; }
  .hero .hero-rating { display: none; }
  .hero h1 { margin-bottom: 12px; }
  .hero .lead { margin-bottom: 18px; }
  .hero-meta { margin-top: 18px; padding-top: 14px; }
  .hero-scroll { display: none; }
  .page-hero { padding: 112px 0 40px; }
}
