/* ============================================================
   MILVADO REALTY — Design System
   Luxury black / champagne-gold / cream. Static, dependency-free.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --gold: #c2a06b;
  --gold-soft: #d8c39a;
  --gold-deep: #9a7b43;
  --gold-line: rgba(194, 160, 107, 0.45);

  --ink: #0e0f11;
  --ink-2: #15171a;
  --ink-3: #1d2024;
  --charcoal: #23262b;

  --cream: #f7f3ec;
  --paper: #fbfaf7;
  --paper-2: #f1ece2;
  --white: #ffffff;

  --text: #1c1f24;
  --text-soft: #4d535c;
  --text-muted: #757b85;
  --text-on-dark: #ece7dd;
  --text-on-dark-soft: #b3ada1;

  --line: rgba(18, 20, 24, 0.12);
  --line-dark: rgba(216, 195, 154, 0.16);

  --shadow-sm: 0 2px 10px rgba(14, 15, 17, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 15, 17, 0.10);
  --shadow-lg: 0 30px 80px rgba(14, 15, 17, 0.18);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-wide: 1340px;
  --radius: 4px;
  --radius-lg: 10px;

  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: 0.2px; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-soft); }
p + p { margin-top: 1rem; }
strong { color: var(--text); font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); }
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 62ch; }
.text-center { text-align: center; }
.center-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.gold { color: var(--gold-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--text-on-dark-soft); }
.section--cream { background: var(--cream); }
.section--paper2 { background: var(--paper-2); }

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

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--media-right .split__media { order: 2; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-gold { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 18px 0 0; }
.text-center .rule-gold { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 15px 30px;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: all 0.3s var(--ease); cursor: pointer; text-align: center;
}
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(18,20,24,0.28); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-center .btn-row { justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); transition: gap 0.25s var(--ease); }
.link-arrow:hover { gap: 0.9em; }
.section--dark .link-arrow { color: var(--gold); }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.brand__text { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: 0.04em; color: var(--white); line-height: 1; }
.brand__text small { display: block; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 3px; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-on-dark); white-space: nowrap; transition: color 0.25s;
}
.nav__link:hover, .nav__item:hover > .nav__link, .nav__link[aria-current="page"] { color: var(--gold); }
.nav__link svg { width: 11px; height: 11px; opacity: 0.7; transition: transform 0.3s; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden;
  transition: all 0.28s var(--ease); border-top: 2px solid var(--gold);
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 0.88rem; color: var(--text); border-radius: var(--radius); transition: all 0.2s; }
.dropdown a:hover { background: var(--cream); color: var(--gold-deep); padding-left: 20px; }
.dropdown a small { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; font-weight: 400; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--text-on-dark); font-weight: 600; font-size: 0.86rem; }
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 15px; height: 15px; color: var(--gold); }
.header-cta .btn { padding: 12px 22px; }

/* scrolled / solid header */
.site-header.is-solid { background: rgba(14, 15, 17, 0.97); box-shadow: 0 1px 0 var(--line-dark), 0 14px 40px rgba(0,0,0,0.28); height: 72px; backdrop-filter: blur(8px); }
.site-header.is-solid .brand img { height: 40px; }

/* page-mode header (non-hero pages start solid) */
.site-header.is-page { background: rgba(14, 15, 17, 0.97); box-shadow: 0 1px 0 var(--line-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,13,0.62) 0%, rgba(10,11,13,0.45) 35%, rgba(10,11,13,0.72) 100%); }
.kenburns {
  position: absolute; inset: -6%; background-size: cover; background-position: center;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2.5%, -1.5%); }
}
.hero__inner { position: relative; z-index: 1; padding-top: var(--header-h); width: 100%; }
.hero__content { max-width: 880px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { color: var(--text-on-dark); font-size: 1.2rem; max-width: 60ch; margin-top: 22px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero__tags li { display: flex; align-items: center; gap: 8px; color: var(--text-on-dark); font-size: 0.92rem; font-weight: 500; }
.hero__tags li::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero .btn-row { margin-top: 36px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* page hero (interior pages) */
.page-hero { position: relative; background: var(--ink); color: var(--white); padding: calc(var(--header-h) + 64px) 0 64px; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(14,15,17,0.7), rgba(14,15,17,0.92)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { color: var(--text-on-dark); max-width: 60ch; margin-top: 18px; font-size: 1.12rem; }
.page-hero .btn-row { margin-top: 30px; }

/* breadcrumbs */
.breadcrumbs { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--text-on-dark-soft); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ---------- Stats bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink-2); padding: 36px 20px; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat__label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-on-dark-soft); margin-top: 10px; text-transform: uppercase; }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold-deep); margin-bottom: 22px; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.card .link-arrow { margin-top: 18px; }
.card--dark { background: var(--ink-2); border-color: var(--line-dark); }
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--text-on-dark-soft); }
.card--dark .card__icon { color: var(--gold); border-color: var(--gold-line); }

/* feature media card */
.feature-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-md); }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.feature-card:hover img { transform: scale(1.06); }
.feature-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(14,15,17,0) 30%, rgba(14,15,17,0.85) 100%); }
.feature-card__body { position: relative; z-index: 1; padding: 30px; }
.feature-card__body h3 { color: var(--white); }
.feature-card__body p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 6px; }

/* media frame */
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall img { aspect-ratio: 4/5; }
.media-badge { position: absolute; left: 22px; bottom: 22px; background: rgba(14,15,17,0.82); color: var(--gold); padding: 12px 18px; border-radius: var(--radius); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(4px); }

/* checklist */
.checklist { display: grid; gap: 14px; margin-top: 8px; }
.checklist li { position: relative; padding-left: 34px; color: var(--text-soft); }
.checklist li strong { color: var(--text); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat; }
.section--dark .checklist li { color: var(--text-on-dark-soft); }
.section--dark .checklist li strong { color: var(--white); }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-block; border: 1px solid var(--gold-line); color: var(--gold-deep); padding: 8px 16px; border-radius: 100px; font-size: 0.84rem; font-weight: 500; cursor: default; }
.section--dark .pill { color: var(--gold); }
/* Clickable pills (links) look interactive */
a.pill { cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
a.pill:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.section--dark a.pill:hover { color: var(--ink); }
/* Static (non-link) pills read as quiet info tags, not buttons */
span.pill { background: rgba(194, 160, 107, 0.08); border-color: transparent; color: var(--text-soft); }
.section--dark span.pill { background: rgba(216, 195, 154, 0.10); color: var(--text-on-dark-soft); }

/* ---------- Testimonials ---------- */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; height: 100%; display: flex; flex-direction: column; }
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.review__text { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--ink); flex: 1; }
.review__meta { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.review__name { font-weight: 700; color: var(--text); font-family: var(--sans); font-size: 0.95rem; }
.review__detail { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: 24px 44px 24px 0; position: relative; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold); transition: transform 0.3s; font-family: var(--sans); }
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 44px 24px 0; color: var(--text-soft); }
.section--dark .faq__item { border-color: var(--line-dark); }
.section--dark .faq__q { color: var(--white); }

/* ---------- Pricing tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px; display: flex; flex-direction: column; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier--featured { background: var(--ink); color: var(--text-on-dark); border-color: var(--gold); transform: scale(1.03); }
.tier--featured:hover { transform: scale(1.03) translateY(-6px); }
.tier--featured h3 { color: var(--white); }
.tier--featured p { color: var(--text-on-dark-soft); }
.tier__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; padding: 6px 16px; border-radius: 100px; }
.tier__name { font-family: var(--serif); font-size: 1.7rem; color: inherit; }
.tier__for { font-size: 0.86rem; color: var(--text-muted); margin: 6px 0 22px; }
.tier--featured .tier__for { color: var(--gold-soft); }
.tier__price { font-size: 0.95rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 20px; }
.tier--featured .tier__price { color: var(--gold); }
.tier ul { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.tier li { position: relative; padding-left: 28px; font-size: 0.93rem; color: var(--text-soft); }
.tier--featured li { color: var(--text-on-dark-soft); }
.tier li::before { content:""; position:absolute; left:0; top:4px; width:16px; height:16px; background: var(--gold); border-radius:50%; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---------- Calculator ---------- */
.calc { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calc__field { margin-bottom: 22px; }
.calc__field label { display: block; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-on-dark); margin-bottom: 8px; font-weight: 500; }
.calc__field input, .calc__field select { width: 100%; padding: 13px 16px; background: var(--ink); border: 1px solid var(--line-dark); border-radius: var(--radius); color: var(--white); font-size: 1rem; font-family: var(--sans); }
.calc__field input:focus, .calc__field select:focus { outline: none; border-color: var(--gold); }
.calc__out { text-align: center; }
.calc__out-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.calc__out-num { font-family: var(--serif); font-size: clamp(3rem, 7vw, 4.6rem); color: var(--white); line-height: 1; margin: 12px 0; }
.calc__out-sub { color: var(--text-on-dark-soft); font-size: 0.95rem; }
.calc__note { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text); display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 16px; background: var(--white); color: var(--text); transition: border-color 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,160,107,0.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: 0.78rem; color: var(--text-muted); }
.form--on-dark label { color: var(--text-on-dark); }
.form--on-dark input, .form--on-dark select, .form--on-dark textarea { background: var(--ink); border-color: var(--line-dark); color: var(--white); }

/* contact split */
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-sm); }
.contact-info li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info li:last-child { border-bottom: 0; }
.contact-info .ci-icon { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--gold-deep); }
.contact-info .ci-icon svg { width: 20px; height: 20px; }
.contact-info dt { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-info dd { font-weight: 600; color: var(--text); margin-top: 2px; }
.contact-info a:hover { color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(14,15,17,0.92), rgba(14,15,17,0.7)); }
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--text-on-dark); max-width: 60ch; margin: 16px auto 0; }

/* ---------- Logo strip / trust ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.trust__item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.86rem; font-weight: 500; }
.trust__item svg { width: 22px; height: 22px; color: var(--gold-deep); }
.rating-inline { display: inline-flex; align-items: center; gap: 10px; }
.rating-inline .stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-soft); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 38ch; }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.92rem; color: var(--text-on-dark-soft); transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; font-size: 0.92rem; padding: 6px 0; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; color: var(--text-on-dark-soft); transition: all 0.25s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 26px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-licenses { color: var(--text-muted); }
.footer-eho { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.78rem; }
.footer-eho svg { width: 26px; height: 26px; color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); font-size: 0.86rem; }
.tag-row { display:flex; flex-wrap:wrap; gap:10px; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { margin: 2.2rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 0.8rem; }
.prose ul { display: grid; gap: 10px; margin: 1rem 0 1.4rem; }
.prose ul li { position: relative; padding-left: 26px; color: var(--text-soft); }
.prose ul li::before { content:""; position:absolute; left:0; top:11px; width:7px; height:7px; background: var(--gold); border-radius: 50%; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 10px 18px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .calc__grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 880px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 8px; }
  .header-cta { gap: 4px; }
  .header-cta .btn { display: none; }
  .header-phone span { display: none; }
  .header-phone { padding: 11px; min-width: 44px; min-height: 44px; justify-content: center; }
  .header-phone svg { width: 22px; height: 22px; }
  .footer-social a { width: 44px; height: 44px; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; align-items: stretch; justify-content: flex-start;
    background: var(--ink); padding: calc(var(--header-h) + 20px) 24px 40px; gap: 0;
    transform: translateX(100%); transition: transform 0.4s var(--ease); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__item { border-bottom: 1px solid var(--line-dark); }
  .nav__link { padding: 18px 4px; font-size: 1rem; justify-content: space-between; }
  .nav__link svg { width: 14px; height: 14px; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    background: transparent; border-top: 0; padding: 0 0 12px 14px; min-width: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
  }
  .nav__item.is-expanded .dropdown { max-height: 600px; }
  .dropdown a { color: var(--text-on-dark-soft); padding: 9px 10px; }
  .dropdown a:hover { background: var(--ink-3); color: var(--gold); }
  .dropdown a small { color: var(--text-muted); }
  .nav__item:hover .dropdown { /* disable hover-open on mobile */ }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--media-right .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }
  .form__row { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .btn-row .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .kenburns { animation: none; transform: scale(1.06); }
  .reveal { opacity: 1; transform: none; }
}
