/* =====================================================================
   Commercial Property Tax Grievance
   Stylesheet
   Palette: deep navy + restrained gold, cream backgrounds
   Type: Cormorant Garamond (display) / Inter (body + UI)
   ===================================================================== */

/* ------------------------------ Reset ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --------------------------- Variables ----------------------------- */
:root {
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Core palette */
  --navy-900: #060f1f;
  --navy-800: #0a1830;
  --navy-700: #0d2042;
  --navy-600: #133058;
  --navy:     #0b1d39;

  --gold:      #c2a25a;
  --gold-soft: #d8bd83;
  --gold-deep: #a8863f;

  --cream:    #f8f6f1;
  --cream-2:  #f1ede4;
  --white:    #ffffff;

  --ink:      #15233a;   /* primary text on light */
  --ink-soft: #475467;   /* secondary text on light */
  --line:     #e3ddd1;   /* hairline on light */

  --on-dark:        #eef2f8;
  --on-dark-soft:   #aab6c7;
  --line-dark:      rgba(255,255,255,0.12);

  --container: 1200px;
  --radius: 4px;
  --shadow: 0 24px 60px -24px rgba(8, 20, 40, 0.28);
  --shadow-soft: 0 14px 40px -22px rgba(8, 20, 40, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------- Layout ------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.container--narrow { max-width: 880px; }

.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }

.section--dark {
  background: var(--navy);
  color: var(--on-dark);
}
.section--navy-deep {
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(194,162,90,0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark);
}
.section--alt { background: var(--cream-2); }

/* --------------------------- Typography ---------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section--dark .display,
.section--navy-deep .display { color: var(--white); }

h1.display { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
h2.display { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
h3.display { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.section--dark .eyebrow,
.section--navy-deep .eyebrow { color: var(--gold-soft); }
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lede {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.section--dark .lede,
.section--navy-deep .lede { color: var(--on-dark-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

p + p { margin-top: 1.1em; }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 14px 30px -14px rgba(168,134,63,0.7);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(21,35,58,0.28);
}
.btn--outline:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }

.section--dark .btn--outline,
.section--navy-deep .btn--outline,
.hero .btn--outline {
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.section--dark .btn--outline:hover,
.section--navy-deep .btn--outline:hover,
.hero .btn--outline:hover { box-shadow: inset 0 0 0 1px var(--white); color: var(--white); }

.btn--ghost-gold {
  color: var(--gold-deep);
  padding: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.btn--ghost-gold svg { width: 14px; height: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------------------------- Header ------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(248,246,241,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -24px rgba(8,20,40,0.5);
}
.site-header.is-scrolled .brand-text,
.site-header.is-scrolled .nav-link { color: var(--ink); }
.site-header.is-scrolled .brand-sub { color: var(--ink-soft); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

/* Brand / wordmark */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: rgba(194,162,90,0.06);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color .4s var(--ease);
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 3px;
  transition: color .4s var(--ease);
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-dark);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--gold-soft); }
.site-header.is-scrolled .nav-link.is-active { color: var(--gold-deep); }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--on-dark);
  transition: color .25s var(--ease);
}
.site-header.is-scrolled .nav-phone { color: var(--ink); }
.nav-phone:hover { color: var(--gold); }
.nav-cta .btn { padding: 13px 24px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block; height: 2px; width: 26px;
  background: var(--on-dark);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(2) { width: 20px; }

/* -------------------------- Hero ----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--on-dark);
  background:
    radial-gradient(110% 120% at 78% 0%, rgba(194,162,90,0.16), transparent 52%),
    radial-gradient(90% 90% at 10% 100%, rgba(19,48,88,0.7), transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  overflow: hidden;
  padding-top: 86px;
}
.hero::after {
  /* faint architectural rule lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 64px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 860px; padding: 80px 0; }
.hero h1.display {
  color: #ffffff;
  text-shadow: 0 1px 24px rgba(6, 15, 31, 0.35);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero .lede {
  max-width: 620px;
  margin-bottom: 38px;
  color: #d7deea;
}
.hero .btn-row { margin-bottom: 54px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}
.hero-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
}
.hero-trust svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------------------- Stat strip --------------------------------- */
.statbar { border-top: 1px solid var(--line-dark); }
.statbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 46px 28px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* ------------------ Differentiator / comparison -------------------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.compare-card--them {
  background: var(--white);
  border: 1px solid var(--line);
}
.compare-card--us {
  background: var(--navy);
  color: var(--on-dark);
  box-shadow: var(--shadow);
}
.compare-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.compare-card--them .compare-tag { background: var(--cream-2); color: var(--ink-soft); }
.compare-card--us .compare-tag { background: rgba(194,162,90,0.18); color: var(--gold-soft); }
.compare-card h3 { margin-bottom: 8px; }
.compare-card--us h3 { color: #fff; }
.compare-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.compare-card--them .compare-price { color: var(--ink); }
.compare-card--us .compare-price { color: var(--gold-soft); }
.compare-price small { font-size: 0.95rem; font-family: var(--font-body); color: inherit; opacity: 0.7; font-weight: 400; }
.compare-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.compare-list li { display: flex; gap: 12px; font-size: 0.96rem; line-height: 1.5; }
.compare-list .ic { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.compare-card--them .ic { color: #b08c8c; }
.compare-card--us .ic { color: var(--gold); }
.compare-card--us .compare-list li { color: var(--on-dark); }

.compare-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 760px;
  margin-inline: auto;
}
.compare-note .hl { color: var(--gold-deep); font-style: italic; }

/* --------------------- Feature / value grid ------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.section--dark .feature-grid,
.section--navy-deep .feature-grid { background: var(--line-dark); border-color: var(--line-dark); }
.feature {
  background: var(--cream);
  padding: 44px 38px;
  transition: background-color .35s var(--ease);
}
.section--alt .feature { background: var(--cream-2); }
.section--dark .feature,
.section--navy-deep .feature { background: var(--navy); }
.feature:hover { background: var(--white); }
.section--dark .feature:hover,
.section--navy-deep .feature:hover { background: var(--navy-700); }
.feature-ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  margin-bottom: 26px;
}
.section--dark .feature-ic,
.section--navy-deep .feature-ic { color: var(--gold-soft); }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.section--dark .feature h3,
.section--navy-deep .feature h3 { color: #fff; }
.feature p { font-size: 0.96rem; color: var(--ink-soft); }
.section--dark .feature p,
.section--navy-deep .feature p { color: var(--on-dark-soft); }

/* --------------------- Property type grid -------------------------- */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.prop {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.prop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.prop-ic { color: var(--gold-deep); margin-bottom: 18px; }
.prop-ic svg { width: 30px; height: 30px; }
.prop h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.prop p { font-size: 0.86rem; color: var(--ink-soft); }

/* --------------------------- Process ------------------------------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-dark); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-soft);
  position: relative;
}
.step-body { max-width: 640px; }
.step-body h3 { color: #fff; margin-bottom: 12px; }
.step-body p { color: var(--on-dark-soft); }

/* --------------------------- CTA band ------------------------------ */
.cta-band {
  background:
    radial-gradient(100% 140% at 50% 0%, rgba(194,162,90,0.16), transparent 55%),
    linear-gradient(180deg, var(--navy-700), var(--navy-900));
  color: var(--on-dark);
  text-align: center;
}
.cta-band .container { padding-block: 96px; }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band h2 { color: #fff; margin-bottom: 20px; }
.cta-band .lede { max-width: 600px; margin: 0 auto 36px; color: #d7deea; }
.cta-band .btn-row { justify-content: center; }

/* ------------------------- Split panel ----------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(194,162,90,0.18), transparent 55%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  padding: 40px;
}
.split-media .emblem { width: 140px; height: 140px; color: var(--gold-soft); opacity: 0.9; }
.split-stat {
  position: absolute;
  left: 30px; bottom: 30px;
  right: 30px;
  background: rgba(6,15,31,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.split-stat .n { font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.split-stat .l { font-size: 0.82rem; color: var(--on-dark-soft); margin-top: 6px; }
.split-body h2 { margin-bottom: 22px; }
.tick-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; }
.tick-list .ic {
  width: 24px; height: 24px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(194,162,90,0.15);
  color: var(--gold-deep);
  margin-top: 2px;
}
.tick-list .ic svg { width: 13px; height: 13px; }
.tick-list strong { display: block; color: var(--ink); font-weight: 600; }
.tick-list span { font-size: 0.94rem; color: var(--ink-soft); }

/* --------------------------- Quote --------------------------------- */
.pullquote {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.pullquote .mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 0.5; height: 40px; }
.pullquote q {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  quotes: none;
}
.pullquote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* --------------------------- Page hero ----------------------------- */
.page-hero {
  background:
    radial-gradient(100% 140% at 85% 0%, rgba(194,162,90,0.14), transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark);
  padding: 190px 0 100px;
  position: relative;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1.display {
  color: #ffffff;
  text-shadow: 0 1px 24px rgba(6, 15, 31, 0.35);
  margin-bottom: 22px;
}
.page-hero .lede { max-width: 640px; color: #d7deea; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--on-dark-soft);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* ----------------------------- FAQ --------------------------------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 28px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-q .pm {
  width: 28px; height: 28px; flex-shrink: 0;
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.faq-q .pm::before,
.faq-q .pm::after {
  content: ""; position: absolute;
  background: var(--gold-deep);
  left: 50%; top: 50%;
  transition: transform .3s var(--ease);
}
.faq-q .pm::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .pm::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.is-open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 0 28px; color: var(--ink-soft); font-size: 1rem; max-width: 720px; }

/* ----------------------------- Forms ------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 22px; }
.contact-detail {
  display: flex; gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail .ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
}
.contact-detail .ic svg { width: 20px; height: 20px; }
.contact-detail .k { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-detail .v { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact-detail .v a:hover { color: var(--gold-deep); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field label .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,162,90,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-disclaimer { font-size: 0.8rem; color: var(--ink-soft); margin-top: 18px; text-align: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.is-visible { display: block; }
.form-success .ic {
  width: 64px; height: 64px; margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(194,162,90,0.15);
  color: var(--gold-deep);
}
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }

/* ---------------------------- Footer ------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-soft);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-text { color: #fff; }
.footer-brand p { margin-top: 22px; max-width: 320px; font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.92rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.82rem;
}
.footer-legal { max-width: 760px; font-size: 0.78rem; line-height: 1.7; color: #6b7892; padding: 28px 0; border-top: 1px solid var(--line-dark); }

/* ------------------------ Reveal animation ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------- Mobile menu panel ------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-900);
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--on-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 26px; }
.mobile-menu .mm-phone { font-family: var(--font-body); font-size: 1rem; color: var(--gold-soft); margin-top: 24px; }
body.menu-open { overflow: hidden; }

/* ----------------------------- Misc -------------------------------- */
.divider-rule { width: 56px; height: 2px; background: var(--gold); margin: 0 0 30px; }
.center .divider-rule { margin-inline: auto; }
.tag-note {
  display: inline-block;
  background: rgba(194,162,90,0.14);
  color: var(--gold-deep);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 3px;
}

/* --------------------------- Responsive ---------------------------- */
@media (max-width: 1000px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .statbar-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line-dark); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding-inline: 22px; }
  .section { padding: 76px 0; }
  .compare-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .step { grid-template-columns: 1fr; gap: 10px; padding: 34px 0; }
  .step-num { font-size: 2.6rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-inner { padding: 30px 0 70px; }
  .statbar-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; }
  .cta-band .container { padding-block: 70px; }
}
