/* ============================================================
   VALOR PRECIOUS METALS — Hess-style design system
   Deep green #0A6E3A · Cream paper · Gold accents
   Source Serif 4 (display) + Source Sans 3 (body)
   ============================================================ */

:root {
  /* Brand palette — Hess-style */
  --ink:       #0C1218;        /* dark navy/black for covers */
  --ink-soft:  #15202B;
  --paper:     #F4ECD8;        /* cream paper */
  --paper-warm:#EFE4C9;
  --paper-deep:#E8DBB8;
  --green:     #0A6E3A;        /* deep green */
  --green-deep:#075028;
  --green-dim: #0E8245;
  --gold:      #C8A042;        /* gold accent */
  --gold-bright:#E8B66A;
  --gold-pale: #F1D89A;
  --rule:      #B79554;
  --text:      #1A1F26;
  --text-soft: #4A5260;
  --text-muted:#7A8290;
  --line:      rgba(12,18,24,0.12);

  /* Type */
  --serif: "Source Serif 4","Source Serif Pro",ui-serif,Georgia,serif;
  --sans:  "Source Sans 3","Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --mono:  "JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,monospace;

  /* Spacing */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem; --s-12: 3rem;
  --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Type scale */
  --t-xs:  .75rem;
  --t-sm:  .875rem;
  --t-base:1rem;
  --t-md:  1.125rem;
  --t-lg:  1.375rem;
  --t-xl:  clamp(1.5rem, 2.4vw, 2rem);
  --t-2xl: clamp(2rem, 3.6vw, 3rem);
  --t-3xl: clamp(2.5rem, 5.4vw, 4.25rem);
  --t-hero:clamp(3rem, 8vw, 6.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--green); color: var(--paper); }

/* ----- Utility ----- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.serif { font-family: var(--serif); }
.gold-rule {
  width: 64px; height: 2px;
  background: var(--gold);
  margin-bottom: var(--s-6);
}
.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}
.container-narrow {
  width: min(880px, 92%);
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION — sticky cream bar with gold underline
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(244, 236, 216, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled {
  background: rgba(244,236,216,0.96);
  box-shadow: 0 6px 24px rgba(12,18,24,0.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) 0;
}
.nav__brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--serif);
  font-weight: 600;
}
.nav__brand-mark { width: 34px; height: 34px; }
.nav__brand-text { line-height: 1.05; }
.nav__brand-text .top {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--green); font-weight: 700; font-family: var(--sans);
}
.nav__brand-text .bot {
  font-size: var(--t-md); color: var(--ink); font-family: var(--serif);
}
.nav__links {
  display: flex; gap: var(--s-6); align-items: center;
  font-size: var(--t-sm);
}
.nav__links a {
  position: relative; padding: var(--s-2) 0;
  font-weight: 500; color: var(--text);
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--green); color: var(--paper) !important;
  padding: var(--s-2) var(--s-4) !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s;
}
.nav__cta:hover { background: var(--green-deep); }
.nav__cta::after { display: none; }
.nav__toggle { display: none; font-size: 1.4rem; }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--s-4) 0 var(--s-6);
  gap: var(--s-4);
  border-top: 1px solid var(--line);
}
.nav__mobile a { font-size: var(--t-md); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* ============================================================
   HERO — dark cover with 3D gold bars
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(232,182,106,0.10), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(10,110,58,0.18), transparent 70%);
  pointer-events: none;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 961px) {
  .hero__canvas { pointer-events: auto; }
}
.hero__inner {
  position: relative; z-index: 2;
  width: min(1240px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  pointer-events: none;
}
.hero__inner > * { pointer-events: auto; }
.hero__copy {
  max-width: 620px;
  position: relative;
  z-index: 3;
}
.hero__copy::before {
  content: '';
  position: absolute;
  inset: -3rem -4rem -3rem -4rem;
  background: radial-gradient(ellipse at 25% 50%, rgba(12,18,24,0.88), rgba(12,18,24,0.7) 45%, rgba(12,18,24,0.2) 80%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.hero__rule {
  width: 80px; height: 2px; background: var(--gold);
  margin-bottom: var(--s-6);
}
.hero__eyebrow {
  color: var(--gold-bright);
  letter-spacing: .28em; font-size: var(--t-xs); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.hero__title {
  font-family: var(--serif);
  font-size: var(--t-hero);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--paper-warm);
  font-style: italic;
  margin-bottom: var(--s-8);
  max-width: 540px;
}
.hero__cities {
  font-size: var(--t-xs); letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--s-8);
}
.hero__cta-row {
  display: flex; gap: var(--s-4); flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-6);
  font-size: var(--t-sm); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(244,236,216,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-green {
  background: var(--green); color: var(--paper);
}
.btn-green:hover { background: var(--green-deep); }

.hero__visual {
  position: relative;
  min-height: 480px;
}
.hero__seal {
  position: absolute; right: -10px; top: 20px;
  width: 180px; height: 180px; opacity: .65;
  display: none;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--s-6);
  transform: translateX(-50%);
  font-size: var(--t-xs); letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
  z-index: 3;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 28px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

.hero__footer {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid rgba(232,182,106,0.25);
  padding: var(--s-4) 0;
  z-index: 2;
  font-size: var(--t-xs); letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.hero__footer .container {
  display: flex; justify-content: space-between; align-items: center;
}

@media (max-width: 960px) {
  .hero { padding-top: 100px; padding-bottom: var(--s-12); min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .hero__footer { display: none; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero__copy::before {
    inset: -1.5rem -1.5rem -1.5rem -1.5rem;
    background: radial-gradient(ellipse at center, rgba(12,18,24,0.88), rgba(12,18,24,0.6) 60%, transparent 100%);
  }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
section[data-section] {
  scroll-margin-top: 90px;
}

.section {
  padding: clamp(var(--s-16), 9vw, var(--s-32)) 0;
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-paper {
  background: var(--paper);
}
.section-warm {
  background: var(--paper-warm);
}
.section-green {
  background: var(--green);
  color: var(--paper);
}

.section__header {
  margin-bottom: var(--s-12);
  max-width: 760px;
}
.section__eyebrow {
  font-size: var(--t-xs); letter-spacing: .24em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.section-paper .section__eyebrow,
.section-warm .section__eyebrow { color: var(--green); }

.section__title {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}
.section-paper .section__title,
.section-warm .section__title { color: var(--ink); }
.section__title em { font-style: italic; color: var(--gold-bright); }
.section-paper .section__title em,
.section-warm .section__title em { color: var(--green); }

.section__lead {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 640px;
}
.section-dark .section__lead,
.section-green .section__lead { color: var(--paper-warm); }

/* ============================================================
   POWER GRID — Timeless / Inflation / Tangible
   ============================================================ */
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.power-card {
  padding: var(--s-8);
  background: var(--paper-warm);
  border-top: 2px solid var(--gold);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.power-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,18,24,0.10);
}
.power-card__num {
  font-family: var(--serif);
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: var(--s-4);
}
.power-card__title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.power-card__body {
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--text-soft);
}
@media (max-width: 880px) {
  .power-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FORGE — How a Gold Bar Is Made (3D sequence)
   ============================================================ */
.forge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.forge__stage {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0A0F14, #1A2230);
  border: 1px solid rgba(232,182,106,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.forge__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.forge__stage-label {
  position: absolute; left: var(--s-4); top: var(--s-4);
  font-family: var(--sans);
  font-size: var(--t-xs); letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold);
  z-index: 2;
}
.forge__stage-temp {
  position: absolute; right: var(--s-4); top: var(--s-4);
  font-family: var(--mono);
  font-size: var(--t-xs);
  color: var(--gold-bright);
  z-index: 2;
}
.forge__steps {
  display: flex; flex-direction: column;
  gap: var(--s-2);
}
.forge__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-4);
  border-left: 2px solid rgba(244,236,216,0.18);
  cursor: pointer;
  transition: border-color .3s, background .3s, padding .3s;
}
.forge__step:hover {
  background: rgba(232,182,106,0.06);
}
.forge__step.active {
  border-left-color: var(--gold);
  background: rgba(232,182,106,0.08);
}
.forge__step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-xl);
  color: var(--gold);
  font-weight: 500;
}
.forge__step__title {
  display: block;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: var(--s-2);
  text-align: left;
  color: var(--paper);
}
.forge__step__body {
  display: block;
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--paper-warm);
  text-align: left;
}
.forge__step > span:last-child { display: block; }
.forge__step { text-align: left; }

@media (max-width: 960px) {
  .forge { grid-template-columns: 1fr; }
}

/* ============================================================
   VAULT — Multi-layered security
   ============================================================ */
.vault {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-12);
  align-items: center;
}
.vault__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  background:
    radial-gradient(ellipse at center, rgba(232,182,106,0.15), transparent 70%),
    linear-gradient(180deg, #0C1218, #15202B);
  border: 1px solid rgba(232,182,106,0.25);
  overflow: hidden;
}
.vault__door {
  position: absolute; inset: 8% 12%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,182,106,0.18), transparent 60%),
    radial-gradient(circle at center, #1A2230, #0A0F14);
}
.vault__door::before, .vault__door::after {
  content: ''; position: absolute; inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(232,182,106,0.45);
}
.vault__door::after {
  inset: 22%;
  border-color: rgba(232,182,106,0.65);
  background: radial-gradient(circle at 30% 30%, rgba(232,182,106,0.18), transparent 70%);
}
.vault__spokes {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: spokeRotate 60s linear infinite;
}
@keyframes spokeRotate { to { transform: rotate(360deg); } }
.vault__spoke {
  position: absolute;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.vault__spoke:nth-child(1) { transform: rotate(0deg); }
.vault__spoke:nth-child(2) { transform: rotate(45deg); }
.vault__spoke:nth-child(3) { transform: rotate(90deg); }
.vault__spoke:nth-child(4) { transform: rotate(135deg); }
.vault__handle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12%; height: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold) 50%, var(--green-deep));
  box-shadow: 0 0 32px rgba(232,182,106,0.6);
}
.vault__stat {
  position: absolute; left: var(--s-4); bottom: var(--s-4);
  font-family: var(--mono); font-size: var(--t-xs);
  color: var(--gold-bright);
  letter-spacing: .14em;
}

.vault__feats {
  display: flex; flex-direction: column; gap: var(--s-6);
}
.vault__feat {
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(244,236,216,0.15);
}
.vault__feat:last-child { border-bottom: 0; }
.vault__feat__title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: var(--s-3);
  display: flex; align-items: baseline; gap: var(--s-3);
}
.vault__feat__title::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.vault__feat__body {
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--paper-warm);
  padding-left: 35px;
}

@media (max-width: 960px) {
  .vault { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARE — Valor vs The Pretenders
   ============================================================ */
.compare {
  background: var(--paper-warm);
}
.compare__table {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  font-size: var(--t-sm);
}
.compare__cell {
  padding: var(--s-4);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; align-items: center;
  line-height: 1.4;
}
.compare__cell:nth-child(5n) { border-right: 0; }
.compare__cell.head {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 600;
  font-size: var(--t-md);
  padding: var(--s-6) var(--s-4);
  border-bottom: 2px solid var(--gold);
}
.compare__cell.head.valor {
  background: var(--green);
  position: relative;
}
.compare__cell.head.valor::before {
  content: 'YOUR CHOICE';
  position: absolute; top: var(--s-3); right: var(--s-3);
  font-family: var(--sans);
  font-size: 9px; letter-spacing: .2em;
  background: var(--gold); color: var(--ink);
  padding: 2px 6px; border-radius: 2px;
  font-weight: 700;
}
.compare__cell.row-label {
  background: var(--paper-warm);
  font-weight: 600;
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-base);
}
.compare__cell.valor {
  background: rgba(10,110,58,0.06);
  color: var(--green-deep);
  font-weight: 600;
}
.compare__cell .check { color: var(--green); margin-right: 6px; font-weight: 700; }
.compare__cell .x { color: #B14A3C; margin-right: 6px; font-weight: 700; }

.compare__note {
  font-size: var(--t-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--s-4);
  max-width: 720px;
}

@media (max-width: 880px) {
  .compare__table {
    grid-template-columns: 1.2fr 1fr 1fr;
    font-size: var(--t-xs);
  }
  .compare__table .hide-mobile { display: none; }
  .compare__cell { padding: var(--s-3); }
}

/* ============================================================
   ROLLOVER — Process strip
   ============================================================ */
.roll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,182,106,0.2);
  border: 1px solid rgba(232,182,106,0.25);
}
.roll__step {
  background: var(--ink-soft);
  padding: var(--s-8) var(--s-6);
  position: relative;
  transition: background .3s ease;
}
.roll__step:hover { background: #1F2C3A; }
.roll__time {
  font-family: var(--mono);
  font-size: var(--t-xs);
  color: var(--gold);
  letter-spacing: .18em;
  margin-bottom: var(--s-3);
}
.roll__title {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.roll__body {
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--paper-warm);
}
@media (max-width: 880px) {
  .roll { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   METALS — IRS-approved portfolio
   ============================================================ */
.metals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.metal {
  padding: var(--s-6);
  background: var(--paper-warm);
  border-top: 2px solid var(--gold);
  position: relative;
  cursor: pointer;
  transition: transform .3s, background .3s;
}
.metal:hover {
  transform: translateY(-3px);
  background: var(--paper-deep);
}
.metal__symbol {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: var(--s-3);
  font-style: italic;
}
.metal__name {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.metal__purity {
  font-family: var(--mono);
  font-size: var(--t-xs);
  color: var(--green);
  margin-bottom: var(--s-3);
  letter-spacing: .12em;
}
.metal__body {
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--text-soft);
}
@media (max-width: 880px) { .metals { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}
.testimonial {
  padding: var(--s-10);
  background: var(--paper);
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  top: -10px; left: var(--s-4);
  opacity: .25;
  font-style: italic;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: var(--s-5);
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-size: var(--t-sm);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   JOURNEY — Visual journey from account to vault
   ============================================================ */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.journey__step {
  text-align: center;
  position: relative;
}
.journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px; top: 32px;
  width: 16px; height: 2px;
  background: var(--gold);
}
.journey__icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--s-4);
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: var(--t-xl);
  color: var(--gold);
  font-style: italic;
}
.journey__title {
  font-family: var(--serif);
  font-size: var(--t-md);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.journey__body {
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--text-soft);
}
@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr 1fr; }
  .journey__step::after { display: none; }
}

/* ============================================================
   FAQ — Accordion
   ============================================================ */
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-6) 0;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color .2s;
}
.faq__q:hover { color: var(--green); }
.faq__q__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: var(--t-md);
  font-weight: 500;
  min-width: 40px;
}
.faq__q__text { flex: 1; }
.faq__q__icon {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex-shrink: 0;
}
.faq__item.open .faq__q__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.faq__item.open .faq__a { max-height: 600px; }
.faq__a__inner {
  padding: 0 0 var(--s-6) 56px;
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 720px;
}

/* ============================================================
   PRIVATE CLIENT (exclusive)
   ============================================================ */
.pclient {
  position: relative;
  overflow: hidden;
}
.pclient::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,182,106,0.15), transparent 60%);
  pointer-events: none;
}
.pclient__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-12);
}
.pclient__badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: rgba(232,182,106,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: var(--s-2) var(--s-4);
  font-size: var(--t-xs);
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-6);
}
.pclient__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.pclient__feat {
  padding: var(--s-5);
  background: rgba(244,236,216,0.04);
  border-top: 2px solid var(--gold);
}
.pclient__feat__title {
  font-family: var(--serif);
  font-size: var(--t-md);
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--gold-bright);
}
.pclient__feat__body {
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--paper-warm);
}
@media (max-width: 960px) {
  .pclient__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(10,110,58,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232,182,106,0.15), transparent 50%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--s-16);
  position: relative; z-index: 1;
}
.contact__details {
  display: flex; flex-direction: column;
  gap: var(--s-6);
}
.contact__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(232,182,106,0.2);
}
.contact__label {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 4px;
}
.contact__value {
  font-family: var(--serif);
  font-size: var(--t-md);
  line-height: 1.4;
  color: var(--paper);
}
.contact__value a { border-bottom: 1px solid var(--gold); transition: color .2s; }
.contact__value a:hover { color: var(--gold-bright); }

.contact__form {
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(232,182,106,0.2);
  padding: var(--s-8);
}
.contact__form__title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.contact__form__sub {
  font-size: var(--t-sm);
  color: var(--paper-warm);
  margin-bottom: var(--s-6);
  font-style: italic;
  font-family: var(--serif);
}
.field {
  margin-bottom: var(--s-4);
}
.field label {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(232,182,106,0.3);
  padding: var(--s-2) 0;
  font-family: var(--sans);
  font-size: var(--t-base);
  color: var(--paper);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select option { background: var(--ink); color: var(--paper); }
@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--s-10); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper-warm);
  padding: var(--s-12) 0 var(--s-6);
  border-top: 1px solid rgba(232,182,106,0.2);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-10);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(232,182,106,0.15);
}
.footer__brand {
  display: flex; flex-direction: column; gap: var(--s-3);
}
.footer__brand-title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  color: var(--paper);
  font-weight: 600;
}
.footer__brand-sub {
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer__brand-body {
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--paper-warm);
  max-width: 320px;
  margin-top: var(--s-2);
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.footer__col a, .footer__col p {
  display: block;
  font-size: var(--t-sm);
  margin-bottom: var(--s-2);
  color: var(--paper-warm);
  transition: color .2s;
}
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--t-xs);
  letter-spacing: .14em;
  color: var(--gold);
}
.footer__bottom .left { text-transform: uppercase; }
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .footer__bottom { flex-direction: column; gap: var(--s-3); text-align: center; }
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--paper-deep);
  padding: var(--s-12) 0;
  font-size: var(--t-xs);
  line-height: 1.6;
  color: var(--text-soft);
}
.disclaimer h3 {
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--ink);
  font-weight: 600;
  margin-bottom: var(--s-4);
  letter-spacing: .04em;
}
.disclaimer p { margin-bottom: var(--s-3); }

/* ============================================================
   ANIMATIONS — fade-in on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   TERMINAL NAV LINK — live pulse indicator
   ============================================================ */
.nav__terminal {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--gold-bright) !important;
  font-weight: 700;
}
.nav__terminal__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: nav-pulse 2s infinite ease-in-out;
}
@keyframes nav-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.35; transform: scale(0.85); }
}
