/* =========================================================
   ATU EVAL — light minimal-premium
   Palette: warm ivory · espresso ink · gold accent
   ========================================================= */

:root {
  --paper:      #F7F3EA;
  --paper-2:    #FCFAF3;
  --surface:    #FFFFFF;
  --ink:        #211B10;   /* warm espresso near-black */
  --ink-soft:   #5A5140;
  --ink-mute:   #968B74;
  --gold:       #B4842A;   /* primary gold accent */
  --gold-2:     #906618;   /* deeper gold (hover / small caps) */
  --brand-deep: #1E1809;   /* dark espresso band */
  --brass:      #C79A3B;   /* lighter gold — micro hairline accent */
  --line:       rgba(33, 27, 16, 0.10);
  --line-soft:  rgba(33, 27, 16, 0.06);

  /* --font-serif holds the display/heading face (Montserrat) */
  --font-serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
}
.section-lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 56ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn-solid {
  background: var(--gold);
  color: #1E1809;
  box-shadow: 0 1px 2px rgba(30,24,9,.2);
}
.btn-solid:hover {
  background: var(--gold-2);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(144,102,24,.6);
}
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 243, 234, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* brand: logo mark + Montserrat wordmark */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; flex-shrink: 0;
  color: var(--gold);
  border-radius: 11px;
  background: rgba(180,132,42,.10);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.brand-mark svg { width: 26px; height: 26px; display: block; }
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-3deg); background: rgba(180,132,42,.16); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .bw-name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 22px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: .3em; white-space: nowrap;
}
.brand-word .bw-name em { font-style: normal; color: var(--gold); }
.brand-word .bw-sub {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 6px; font-weight: 500;
}

.nav { display: flex; gap: 26px; margin-inline: auto; padding-inline: 24px; }
.nav a {
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--brass);
  transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  color: var(--ink-mute);
}
.lang-opt { transition: color .3s var(--ease); }
.lang-opt.is-active { color: var(--gold); font-weight: 600; }
.lang-sep { opacity: .4; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.menu-toggle span { height: 1.6px; width: 100%; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: 150px; padding-bottom: 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero visual card */
.hero-visual { display: flex; justify-content: center; }
.hv-card {
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: 0 40px 80px -50px rgba(30,24,9,.55);
  position: relative;
  overflow: hidden;
}
.hv-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brass));
  z-index: 2;
}

/* ---- animated property-appraisal scene ---- */
.val-wrap {
  position: relative;
  margin: 6px 0 20px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(180,132,42,.08), transparent 70%);
  border-radius: 10px;
}
.val-scene { width: 100%; height: auto; display: block; overflow: visible; }

.vs-shadow { fill: rgba(30,24,9,.10); animation: vsShadow 4s var(--ease) infinite; transform-origin: 150px 250px; }
.vs-stack { animation: vsFloat 4s var(--ease) infinite; transform-origin: 150px 240px; }

.vs-ground { stroke: var(--brass); stroke-width: 2; stroke-linecap: round; }
.vs-build-fill { fill: rgba(180,132,42,.10); }
.vs-build { fill: none; stroke: var(--gold); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; }
.vs-window { fill: rgba(180,132,42,.22); }

/* ascending value bars */
.vs-bar { fill: var(--gold); transform-origin: bottom; transform: scaleY(0); animation: vsBar 4s var(--ease) infinite; }
.vs-bar--1 { animation-delay: .1s; }
.vs-bar--2 { animation-delay: .35s; fill: var(--gold-2); }
.vs-bar--3 { animation-delay: .6s; fill: var(--brass); }

/* scanning appraisal line */
.vs-scan { stroke: var(--gold); stroke-width: 2; opacity: .0; animation: vsScan 4s var(--ease) infinite; }

@keyframes vsFloat  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes vsShadow { 0%,100% { transform: scaleX(1); opacity:.10; } 50% { transform: scaleX(.9); opacity:.06; } }
@keyframes vsBar    { 0% { transform: scaleY(0); } 40%,100% { transform: scaleY(1); } }
@keyframes vsScan   { 0% { transform: translateY(-70px); opacity: 0; } 25% { opacity: .8; } 50% { transform: translateY(60px); opacity: 0; } 100% { opacity: 0; } }

/* floating stat chips */
.hv-chip {
  position: absolute;
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 8px 13px; border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -14px rgba(30,24,9,.5);
  font-size: 12px; color: var(--ink-soft);
  animation: vsFloat 4s var(--ease) infinite;
}
.hv-chip b { font-size: 15px; font-weight: 600; }
.hv-chip--val { top: 12%; right: -6px; animation-delay: .3s; }
.hv-chip--val b { color: var(--gold); }
.hv-chip--sev { bottom: 20%; left: -8px; animation-delay: .9s; }
.hv-chip--sev b { color: var(--gold-2); }

.hv-readout { display: grid; gap: 13px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.hv-readout-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.hv-readout-row span { color: var(--ink-mute); }
.hv-readout-row b { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .vs-shadow, .vs-stack, .vs-scan, .hv-chip { animation: none; }
  .vs-bar { animation: none; transform: scaleY(1); }
  .vs-scan { opacity: 0; }
}

/* =========================================================
   INTERACTIVE PROCESS (auto-advancing stepper)
   ========================================================= */
.process {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(30px, 5vw, 68px); align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 56px);
  margin-bottom: clamp(44px, 6vw, 72px);
  box-shadow: 0 30px 70px -55px rgba(30,24,9,.4);
  overflow: hidden;
  background-image: radial-gradient(90% 120% at 100% 0%, rgba(180,132,42,.06), transparent 60%);
}
.process-stage { position: relative; min-height: 240px; }
.process-panel { display: none; }
.process-panel.is-active { display: block; animation: procIn .55s var(--ease); }
@keyframes procIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.process-ghost {
  display: block;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(64px, 11vw, 132px); line-height: .85;
  color: rgba(180,132,42,.15); letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.process-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 16px; }
.process-icon svg { width: 100%; height: 100%; display: block; }
.process-content h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.process-content p { color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px); max-width: 46ch; }

.process-nav { display: grid; gap: 10px; }
.process-step {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: 6px 16px; text-align: left;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px;
  background: transparent; cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover { border-color: rgba(180,132,42,.4); transform: translateX(3px); }
.process-step.is-active { border-color: var(--gold); background: var(--paper-2); }
.ps-index { font-family: var(--font-serif); color: var(--brass); font-size: 15px; letter-spacing: .08em; }
.ps-label { font-weight: 500; color: var(--ink); font-size: 16.5px; }
.ps-track { grid-column: 1 / -1; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.ps-fill { display: block; height: 100%; width: 0; background: var(--gold); border-radius: 3px; }
.process-step.is-active .ps-fill { animation: psFill 5s linear forwards; }
@keyframes psFill { from { width: 0; } to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .process-step.is-active .ps-fill { animation: none; width: 100%; }
  .process-panel.is-active { animation: none; }
}

/* trust strip */
.trust-strip {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: 8px; }
.trust-num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-unit { font-size: .55em; vertical-align: super; color: var(--gold-2); }
.trust-label { font-size: 13.5px; color: var(--ink-soft); max-width: 22ch; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section-alt { background: var(--paper-2); }
.section-head { margin-bottom: clamp(40px, 6vw, 68px); max-width: 760px; }

/* service catalog */
/* ---- bento service grid ---- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
/* bento: 1 tall feature + balanced half-width cards */
.catalog-card { grid-column: span 3; }
.catalog-card:nth-child(1) { grid-row: span 2; }

.catalog-card {
  position: relative;
  isolation: isolate;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 2.8vw, 36px);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.catalog-card > * { position: relative; z-index: 1; }
/* cursor-following spotlight */
.catalog-card::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%),
              rgba(180,132,42,.13), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180,132,42,.45);
  box-shadow: 0 26px 50px -30px rgba(30,24,9,.5);
}
.catalog-card:hover::before { opacity: 1; }

/* featured tile: richer surface + larger heading */
.catalog-card--feature {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(180,132,42,.10), transparent 55%),
    var(--paper-2);
}
.catalog-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-2);
  padding: 6px 12px; border-radius: 100px;
  background: rgba(180,132,42,.12);
  border: 1px solid rgba(180,132,42,.25);
}
.catalog-card--feature { display: flex; flex-direction: column; }
.catalog-card--feature h3 { font-size: clamp(23px, 2.6vw, 30px); }
.catalog-card--feature .catalog-icon { width: 64px; height: 64px; }
.catalog-card--feature .catalog-icon .pv { width: 44px; height: 44px; }
.catalog-cta {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 15px; font-weight: 600; color: var(--gold-2);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.catalog-cta svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.catalog-card--feature:hover .catalog-cta { gap: 12px; color: var(--gold); }
.catalog-card--feature:hover .catalog-cta svg { transform: translateX(3px); }

.catalog-icon {
  width: 56px; height: 56px; border-radius: 15px;
  background: rgba(180,132,42,.09);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.catalog-card:hover .catalog-icon { transform: translateY(-3px) scale(1.06); background: rgba(180,132,42,.16); }
.catalog-icon .pv { width: 38px; height: 38px; display: block; }
.pv-stroke { fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pv-fill { fill: rgba(180,132,42,.14); stroke: var(--gold); stroke-width: 2.2; stroke-linejoin: round; }
.pv-brass { fill: var(--brass); }
.pv-brass-line { fill: none; stroke: var(--brass); stroke-width: 2.2; stroke-linecap: round; }
.catalog-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 25px);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.catalog-intro { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.catalog-list { display: grid; gap: 10px; }
.catalog-list li {
  position: relative; padding-left: 20px;
  font-size: 14.5px; color: var(--ink-soft);
}
.catalog-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}

/* pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.pillar { background: var(--paper-2); padding: clamp(28px, 3.5vw, 40px); }
.pillar h4 {
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px;
}
.pillar p { color: var(--ink-soft); font-size: 15.5px; }

/* results band */
.results { background: var(--brand-deep); color: var(--paper); position: relative; overflow: hidden; }
.results-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 76px); align-items: center;
}
.results-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 118px);
  line-height: .9;
  letter-spacing: -0.03em;
  color: var(--paper);
  white-space: nowrap;
  display: block;
  margin-bottom: 22px;
}
.results-copy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 18px;
}
.results-copy p { color: rgba(247,243,234,.72); max-width: 48ch; margin-bottom: 28px; }
.results .btn-solid { background: var(--gold); color: #1E1809; }
.results .btn-solid:hover { background: #fff; color: var(--ink); box-shadow: 0 12px 28px -12px rgba(0,0,0,.5); }

/* what-you-get card */
.reduce-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 40px);
  backdrop-filter: blur(2px);
}
.reduce-card h3 {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 22px;
}
.reduce-list { display: grid; gap: 2px; }
.reduce-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 16px; color: var(--paper);
}
.reduce-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.reduce-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E1809' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat,
    var(--brass);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-list { margin-top: 40px; display: grid; gap: 2px; }
.contact-list li {
  display: grid; grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-key { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.contact-list a { transition: color .3s var(--ease); }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 40px 80px -60px rgba(30,24,9,.4);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  letter-spacing: .03em; color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(180,132,42,.12);
}
.field textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-mute); text-align: center; }
.form-note.is-success { color: var(--gold-2); font-weight: 500; }
.form-note.is-error { color: #b0483f; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #17120A; color: rgba(247,243,234,.7); padding: clamp(56px, 7vw, 84px) 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-row .brand-mark { color: var(--brass); background: rgba(199,154,59,.14); }
.footer-brand-row .bw-name { color: #FBF7EE; }
.footer-brand-row .bw-name em { color: var(--brass); }
.footer-brand-row .bw-sub { color: rgba(247,243,234,.5); }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: 14.5px; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,234,.45); margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: rgba(247,243,234,.7); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(247,243,234,.12);
  font-size: 13px; color: rgba(247,243,234,.5);
}
.footer-credit { color: rgba(247,243,234,.5); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 18px); font-weight: 500; color: var(--ink);
}
.faq-q:hover { color: var(--gold); }
.faq-icon { flex: none; position: relative; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold); transition: transform .35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--brass));
  transition: width .1s linear;
  pointer-events: none;
}

/* =========================================================
   VALUE-TYPES (educational tabs)
   ========================================================= */
.tcalc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -60px rgba(30,24,9,.4);
}
.tcalc-tabs { display: flex; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.tcalc-tab {
  flex: 1;
  padding: 18px 16px;
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  color: var(--ink-mute);
  position: relative;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.tcalc-tab:hover { color: var(--ink); }
.tcalc-tab.is-active { color: var(--gold-2); background: var(--surface); }
.tcalc-tab.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--gold);
}
.tcalc-tab + .tcalc-tab { border-left: 1px solid var(--line); }

.tcalc-panel { display: none; padding: clamp(26px, 3.5vw, 44px); }
.tcalc-panel.is-active { display: block; animation: tcalcIn .4s var(--ease); }
@keyframes tcalcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.vtype-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.vtype-def h3 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; letter-spacing: -0.01em;
}
.vtype-def p { color: var(--ink-soft); font-size: 16px; max-width: 52ch; }
.vtype-side { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px; }
.vtype-side-title { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.vtype-uses { display: grid; gap: 12px; }
.vtype-uses li {
  position: relative; padding-left: 22px; font-size: 15px; color: var(--ink-soft);
}
.vtype-uses li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brass);
}
.tcalc-note { margin-top: 22px; font-size: 13px; color: var(--ink-mute); text-align: center; }

/* =========================================================
   STANDARDS / CERTIFICATIONS
   ========================================================= */
.certs {
  margin-top: clamp(40px, 5vw, 60px); padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.certs-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.certs-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 20px;
}
.cert-seal { width: 42px; height: 42px; flex: none; }
.cs-ring { fill: none; stroke: var(--gold); stroke-width: 2; }
.cs-check { fill: none; stroke: var(--brass); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.cs-ribbon { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linejoin: round; }
.cs-star { fill: var(--brass); }
.cert-text b { display: block; font-size: 16px; color: var(--ink); }
.cert-text span { font-size: 13px; color: var(--ink-mute); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal { padding-top: 130px; padding-bottom: clamp(60px, 9vw, 110px); }
.legal-inner { max-width: 820px; }
.legal-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.legal-updated { color: var(--ink-mute); font-size: 14px; margin-bottom: clamp(36px, 5vw, 54px); }
.legal-body section { margin-bottom: 36px; }
.legal-body h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.legal-body p { color: var(--ink-soft); font-size: 16px; margin-bottom: 12px; }
.legal-body a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--gold); }
.legal-list { margin: 6px 0 0; display: grid; gap: 9px; }
.legal-list li {
  position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 16px;
}
.legal-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.legal-list li b { color: var(--ink); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* service cards: reveal + snappy hover in one transition, with cascade delay */
.catalog-card.reveal {
  transition: opacity .7s var(--ease), transform .5s var(--ease),
              border-color .45s var(--ease), box-shadow .45s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.catalog-card:nth-child(1) { --reveal-delay: 0s; }
.catalog-card:nth-child(2) { --reveal-delay: .08s; }
.catalog-card:nth-child(3) { --reveal-delay: .16s; }
.catalog-card:nth-child(4) { --reveal-delay: .24s; }
.catalog-card:nth-child(5) { --reveal-delay: .32s; }
.catalog-card:nth-child(6) { --reveal-delay: .40s; }
.catalog-card:nth-child(7) { --reveal-delay: .48s; }
/* JS clears --reveal-delay after the cascade so hover stays instant */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- floating quote CTA (mobile) ---- */
.mobile-cta {
  display: none;
  position: fixed; z-index: 90;
  left: 50%; bottom: 18px;
  align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 100px;
  background: var(--gold); color: #1E1809;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 14px 34px -12px rgba(144,102,24,.7);
  transform: translate(-50%, 140%);
  transition: transform .5s var(--ease), background .3s var(--ease);
}
.mobile-cta svg { width: 18px; height: 18px; }
.mobile-cta.show { transform: translate(-50%, 0); }
.mobile-cta:active { background: var(--gold-2); }

/* ---- back to top ---- */
.to-top {
  position: fixed; z-index: 90;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -14px rgba(30,24,9,.5);
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { color: var(--gold-2); border-color: var(--gold); transform: translateY(-2px); }

@media (max-width: 760px) {
  .mobile-cta { display: inline-flex; }
  .to-top { display: none; }   /* mobile uses the CTA pill instead */
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: flex-start; }
  .hv-card { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; }
  .results-inner { grid-template-columns: 1fr; gap: 40px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .catalog-card:nth-child(n) { grid-column: span 1; grid-row: auto; }
  .catalog-card:nth-child(1) { grid-column: 1 / -1; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
  .vtype-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .brand-word .bw-sub { display: none; }

  .site-header .nav.open {
    display: flex;
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
  }
  .site-header .nav.open a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }

  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card:nth-child(n) { grid-column: 1 / -1; }
  .certs { flex-direction: column; align-items: flex-start; gap: 18px; }
  .process { grid-template-columns: 1fr; gap: 26px; }
  .process-stage { min-height: 200px; }
  .pillars { grid-template-columns: 1fr; }
  .tcalc-tab { padding: 15px 8px; font-size: 13px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .contact-list li { grid-template-columns: 100px 1fr; }
}

@media (max-width: 420px) {
  .trust-strip { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* =========================================================
   MOTION & MICRO-INTERACTIONS
   ========================================================= */

/* ---- hero aurora: soft drifting gold glow ---- */
.hero { position: relative; }
.hero-aurora {
  position: absolute; inset: -10% -5% auto -5%;
  height: 130%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner, .hero .trust-strip { position: relative; z-index: 1; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.aurora-blob--1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -12%; left: 48%;
  background: radial-gradient(circle, rgba(180,132,42,.34), transparent 70%);
  animation: auroraDrift1 20s var(--ease) infinite;
}
.aurora-blob--2 {
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  top: 24%; left: 60%;
  background: radial-gradient(circle, rgba(199,154,59,.30), transparent 70%);
  animation: auroraDrift2 26s var(--ease) infinite;
}
.aurora-blob--3 {
  width: 30vw; height: 30vw; max-width: 400px; max-height: 400px;
  top: 8%; left: -6%;
  background: radial-gradient(circle, rgba(180,132,42,.18), transparent 70%);
  animation: auroraDrift3 23s var(--ease) infinite;
}
@keyframes auroraDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6%, 5%) scale(1.12); } }
@keyframes auroraDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5%, -6%) scale(.9); } }
@keyframes auroraDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8%, 4%) scale(1.15); } }

/* deeper shadow once header frosts on scroll */
.site-header.scrolled { box-shadow: 0 8px 30px -22px rgba(30,24,9,.6); }

@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
  .catalog-card:hover { transform: none; }
}
