/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  background: rgba(10, 13, 18, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 13, 18, 0.92);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 2.25rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  color: var(--text-dim);
  transition: color .2s;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--accent); }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 1.5rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__cta-mobile { display: none; }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 11, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 90;
}
.nav--open ~ .nav__overlay,
.nav--open + .nav__overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem clamp(1.5rem, 8vw, 2.5rem);
    background: var(--panel);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    font-size: var(--step-0);
  }
  .nav--open .nav__links { transform: translateX(0); }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta-desktop { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 0.5rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(217,138,84,0.08), transparent),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 120px);
}
/* Two soft, slowly drifting glow orbs behind the hero copy */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(217,138,84,0.16), transparent 70%);
  animation: orbDrift1 16s ease-in-out infinite;
}
.hero::after {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(78,159,107,0.09), transparent 70%);
  animation: orbDrift2 20s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 6%) scale(1.08); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -5%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}
.hero__inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }

/* Feint orange horizontal light streaks sweeping across behind hero copy */
.hero__streams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero__streams span {
  position: absolute;
  left: 0;
  height: 1px;
  width: 40%;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.55) 45%, rgba(var(--accent-rgb), 0.5) 55%, transparent 100%);
  animation: streamAcross linear infinite;
}
.hero__streams span:nth-child(1) { top: 8%;  width: 34%; animation-duration: 7s;   animation-delay: 0s; }
.hero__streams span:nth-child(2) { top: 18%; width: 26%; animation-duration: 9.5s; animation-delay: 1.4s; }
.hero__streams span:nth-child(3) { top: 30%; width: 44%; animation-duration: 6.5s; animation-delay: 0.6s; }
.hero__streams span:nth-child(4) { top: 44%; width: 30%; animation-duration: 10s;  animation-delay: 2.6s; }
.hero__streams span:nth-child(5) { top: 58%; width: 38%; animation-duration: 7.8s; animation-delay: 1s; }
.hero__streams span:nth-child(6) { top: 70%; width: 24%; animation-duration: 8.6s; animation-delay: 3.2s; }
.hero__streams span:nth-child(7) { top: 84%; width: 42%; animation-duration: 6.9s; animation-delay: 2s; }
.hero__streams span:nth-child(8) { top: 94%; width: 28%; animation-duration: 9s;   animation-delay: 0.2s; }

@keyframes streamAcross {
  from { transform: translateX(-60%); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  to   { transform: translateX(320%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__streams { display: none; }
}
.hero h1 {
  font-size: var(--step-5);
  margin-top: 1.1em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
/* Typewriter caret, used by the hero headline animation in main.js */
.caret {
  display: inline-block;
  width: 0.06em;
  margin-left: 0.08em;
  background: var(--accent);
  height: 0.85em;
  vertical-align: -0.05em;
  animation: caret-blink 0.9s step-end infinite;
}
@keyframes caret-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .caret { animation: none; opacity: 0; }
}
.hero p.lede {
  margin: 1.5rem auto 0;
  max-width: 560px;
  font-size: var(--step-1);
  color: var(--text-dim);
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero__note {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-faint);
}
.hero__scroll {
  margin: clamp(3rem, 8vw, 5.5rem) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 28px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollpulse 1.8s var(--ease) infinite;
}
@keyframes scrollpulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   STAT STRIP  (signature: terminal ticker readout)
   ========================================================= */
.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.stat {
  padding: 1.35rem var(--gutter);
  border-left: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.stat:first-child { border-left: none; }
.stat:hover { background: rgba(217,138,84,0.04); }
.stat__value {
  font-family: var(--font-mono);
  font-size: var(--step-3);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.stat:hover .stat__value { transform: scale(1.06); }
.stat__label {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-strip__footnote {
  padding: 0.9rem var(--gutter);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
}

/* =========================================================
   TWO-STEP APPROACH
   ========================================================= */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.approach-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.approach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,138,84,0.35);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.approach-card:hover .icon-chip {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 0 4px rgba(217,138,84,0.08);
}
.approach-card__index {
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: var(--step--1);
  margin-top: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.approach-card h3 {
  font-size: var(--step-2);
  margin-top: 0.5rem;
}
.approach-card p {
  margin-top: 0.9rem;
  color: var(--text-dim);
}
.callout {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.75rem clamp(1.5rem, 4vw, 2.5rem);
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--text);
  font-style: italic;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 760px) { .approach { grid-template-columns: 1fr; } }

/* =========================================================
   PILLAR GRID (about)
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pillar:hover { background: var(--panel-alt); }
.pillar .icon-chip { margin-bottom: 1.1rem; }
.pillar h3 {
  font-size: var(--step-1);
  color: var(--text);
}
.pillar p {
  margin-top: 0.75rem;
  color: var(--text-dim);
  font-size: var(--step--1);
}
@media (max-width: 700px) { .pillars { grid-template-columns: 1fr; } }

.mission-quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.mission-quote::before { content: "\201C"; color: var(--accent); }
.mission-quote::after { content: "\201D"; color: var(--accent); }

/* =========================================================
   PROCESS TIMELINE
   ========================================================= */
.timeline { display: flex; flex-direction: column; max-width: 640px; margin: 0 auto; }
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.timeline-step:last-child { border-bottom: 1px solid var(--line); }
.timeline-step:hover { transform: translateY(-3px); }
.timeline-step:hover .timeline-step__num { color: var(--accent); }
.timeline-step__num {
  font-family: var(--font-mono);
  font-size: var(--step-2);
  color: var(--text-faint);
  transition: color 0.3s var(--ease);
}
.timeline-step h3 {
  font-size: var(--step-1);
  color: var(--text);
  margin-top: 0.6rem;
}
.timeline-step p {
  margin-top: 0.6rem;
  color: var(--text-dim);
  max-width: 480px;
}

/* =========================================================
   THREE-CARD (custody/security)
   ========================================================= */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.info-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,138,84,0.3);
  box-shadow: 0 20px 36px -22px rgba(0,0,0,0.55);
}
.info-card .icon-chip { margin-bottom: 1.1rem; }
.info-card h3 {
  font-size: var(--step-0);
  color: var(--text);
}
.info-card p {
  margin-top: 0.6rem;
  font-size: var(--step--1);
  color: var(--text-dim);
}
@media (max-width: 760px) { .card-row { grid-template-columns: 1fr; } }

/* =========================================================
   PERFORMANCE / CHART
   ========================================================= */
.chart-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.chart-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 180px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-dim), rgba(138,114,32,0.55));
  min-height: 4px;
  border-radius: 2px 2px 0 0;
  transition: height 0.9s var(--ease), background .25s, box-shadow .25s, transform .25s;
}
.bar.is-best {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 18px -2px rgba(232,162,114,0.55);
}
.bar:hover {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 16px -2px rgba(232,162,114,0.5);
  transform: scaleY(1.01);
}
.bars__labels {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-faint);
}
.bars__labels span { flex: 1; text-align: center; }
.chart-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.chart-stats .stat__value { font-size: var(--step-2); }
@media (max-width: 760px) { .chart-stats { grid-template-columns: repeat(2, 1fr); } }

.disclosure {
  margin-top: 0;
  font-size: 0.75rem;
  color: var(--text-faint);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: left;
}

/* Live TradingView XAU/USD chart panel */
.live-chart-panel { margin-top: 1.25rem; padding-bottom: 0.5rem; }
.tradingview-widget-container { height: 780px; width: 100%; }
.tradingview-widget-container__widget { height: 100%; width: 100%; }
.tradingview-widget-copyright {
  padding-top: 0.6rem;
  text-align: right;
}
.tradingview-widget-copyright a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.tradingview-widget-copyright a:hover { color: var(--accent); }
@media (max-width: 900px) {
  .tradingview-widget-container { height: 620px; }
}
@media (max-width: 600px) {
  .tradingview-widget-container { height: 480px; }
}

/* Equity growth line chart panel, sits below the monthly bar chart panel */
.equity-panel { margin-top: 1.25rem; }
.equity-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.equity-panel__label {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.equity-panel__value {
  font-family: var(--font-mono);
  font-size: var(--step-2);
  color: var(--accent);
}
.equity-svg-holder { width: 100%; height: 180px; }
.equity-svg-holder svg { width: 100%; height: 100%; overflow: visible; }
.equity-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(217,138,84,0.35));
}
.equity-dot {
  fill: var(--accent-bright);
  filter: drop-shadow(0 0 6px rgba(232,162,114,0.7));
}
.equity-start-label {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
  text-align: left;
}

/* =========================================================
   TEAM NOTE
   ========================================================= */
.team-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.team-note blockquote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin: 0;
  line-height: 1.25;
}
.team-note .body { color: var(--text-dim); margin-top: 2rem; }
.team-note .body p + p { margin-top: 1.1rem; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
  min-width: 560px;
}
table.compare th, table.compare td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
table.compare th:first-child,
table.compare td:first-child,
table.compare th[scope="row"] {
  text-align: left;
}
table.compare thead th {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: var(--text-faint);
  background: var(--panel);
}
table.compare tbody th { color: var(--text-dim); font-weight: 400; }
table.compare td.good { color: var(--positive); font-family: var(--font-mono); }
table.compare td.bad { color: var(--negative); font-family: var(--font-mono); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }
table.compare tbody tr { transition: background 0.25s var(--ease); }
table.compare tbody tr:hover { background: rgba(217,138,84,0.045); }

/* =========================================================
   CASE STUDY
   ========================================================= */
.case-study-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3rem);
}
.case-study-panel h2 {
  margin-top: 0.6em;
  font-size: var(--step-3);
}
.case-study-panel p.lede {
  color: var(--text-dim);
  margin-top: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.case-study__strip {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 0;
}
.stepper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 110px;
}
.stepper-item__row {
  display: flex;
  align-items: center;
  width: 100%;
}
.stepper-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(217,138,84,0.15);
}
.stepper-line {
  height: 1px;
  flex: 1;
  background: var(--line-strong);
  margin: 0 0.4rem;
}
.stepper-label {
  margin-top: 0.6rem;
}
.case-study__stats {
  display: flex;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}
.case-study__stats .stat {
  flex: 1;
  min-width: 220px;
  background: var(--panel-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  border-left: none;
  padding: 1.75rem;
}
.case-study__stats .stat__value.positive { color: var(--positive); }
.case-study__stats .stat__value.negative { color: var(--negative); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: var(--step-1);
  text-align: left;
  color: var(--text);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.faq-item__q:hover { color: var(--accent); padding-left: 0.35rem; }
.faq-item[data-open="true"] .faq-item__q { color: var(--accent); }
.faq-item__q .plus {
  font-family: var(--font-mono);
  color: var(--accent);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[data-open="true"] .plus { transform: rotate(135deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), opacity .35s var(--ease);
  color: var(--text-dim);
  opacity: 0;
}
.faq-item[data-open="true"] .faq-item__a { opacity: 1; }
.faq-item__a p { padding-bottom: 1.5rem; text-align: left; }

/* =========================================================
   VERIFICATION BADGES
   ========================================================= */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.badge {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  padding: 0.7em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.badge .icon { width: 14px; height: 14px; color: var(--positive); flex-shrink: 0; }
.badge:hover {
  border-color: rgba(78,159,107,0.5);
  color: var(--text);
  transform: translateY(-2px);
}

/* =========================================================
   CONTACT / CONSULTATION
   ========================================================= */
.contact__info {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.contact__info p { color: var(--text-dim); margin-top: 1rem; }
.contact__meta {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* --- Booking form: multi-section layout --- */
.booking-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-section__legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--text);
}
.form-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
  flex-shrink: 0;
}
.form-section__icon svg { width: 16px; height: 16px; }
.form-section > .field,
.form-section > .form-grid-2,
.form-section > .field-helper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.form-section > .field:first-of-type,
.form-section > .form-grid-2:first-of-type {
  margin-top: 1.5rem;
}
.form-section > *:last-child { padding-bottom: 1.5rem; }
.form-section > .field + .field,
.form-section > .form-grid-2 + .field,
.form-section > .field + .field-helper {
  margin-top: 1.25rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

.req { color: var(--accent); }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--panel-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  transition: border-color .2s;
  min-height: 48px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B93A7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 16px;
  padding-right: 2.5em;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.field-helper {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}
.field-helper--center { text-align: center; margin-top: 0.5rem; }

.field--checkbox { }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.checkbox-label span {
  font-size: var(--step--1);
  color: var(--text-dim);
  line-height: 1.55;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem var(--gutter) 2.5rem;
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}
