/* ==========================================================
   Venture Regatta Seychelles 2027 — Design Tokens
   Light premium / nautical / minimal
   ========================================================== */

:root {
  /* palette — light-leaning, навигированная палитра */
  --navy:        #0b3a68;
  --navy-700:    #0a2f55;
  --navy-900:    #061d36;
  --gold:        #c9a94b;
  --gold-soft:   #d8be72;

  --bg:          #f7f4ec;   /* off-white cream */
  --bg-2:        #efeadd;   /* slightly darker cream */
  --bg-card:     #ffffff;
  --bg-dark:     #0b3a68;   /* navy used sparingly */

  --ink:         #0c1a2b;
  --ink-2:       #2a3a52;
  --muted:       #6b7280;
  --rule:        rgba(11, 58, 104, 0.12);
  --rule-strong: rgba(11, 58, 104, 0.22);

  --shadow-sm: 0 1px 2px rgba(11,29,54,.04), 0 1px 1px rgba(11,29,54,.02);
  --shadow-md: 0 8px 24px -8px rgba(11,29,54,.18), 0 2px 4px rgba(11,29,54,.04);
  --shadow-lg: 0 24px 60px -20px rgba(11,29,54,.28), 0 4px 12px rgba(11,29,54,.06);

  /* type */
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* spacing rhythm */
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.section-sub {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 16px;
  margin-top: 12px;
  max-width: 60ch;
}

/* ---------- layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section--cream { background: var(--bg); }
.section--cream-2 { background: var(--bg-2); }
.section--white { background: #fff; }
.section--navy {
  background: var(--navy);
  color: #f0e9d6;
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 {
  color: #fff;
}
.section--navy .section-sub { color: rgba(240, 233, 214, 0.7); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(201,169,75,.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: rgba(11,58,104,.04);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(247, 244, 236, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.nav__logo svg { flex: 0 0 28px; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .2s;
}
.nav__link:hover { color: var(--navy); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  transition: all .2s;
}
.lang-switch button.active {
  background: var(--navy);
  color: #fff;
}

/* progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 81;
  transition: width .12s linear;
}

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-2.75px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 79;
  flex-direction: column;
  padding: 32px var(--pad-x);
  gap: 4px;
  border-top: 1px solid var(--rule);
}
.nav--open .nav__mobile { display: flex; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.nav__mobile .btn {
  margin-top: 24px;
  width: 100%;
}
.nav__mobile-foot {
  margin-top: auto;
  padding: 24px 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__right .lang-switch { display: none; }
  .nav__right .btn { display: none; }
  .nav__burger { display: flex; }

  .section { padding: 64px 0; }
  .section-title { font-size: 36px; }

  .hero__inner { padding-bottom: 48px; padding-top: 100px; }
  .hero h1 { font-size: 44px; line-height: 1.05; }
  .hero__sub { font-size: 12px; gap: 6px 14px; margin-bottom: 32px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .why-card { padding: 36px 24px; }
  .bp-card { padding: 28px 24px; }
  .price-card { padding: 32px 24px; }
  .form-card { padding: 28px 20px; }
  .tg-card { padding: 32px 24px; }

  .form-card form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

  .route-day { grid-template-columns: 70px 1fr; gap: 14px; padding: 16px 0; }
  .route-day__content h4 { font-size: 19px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .quote { font-size: 22px; padding: 0 8px; }

  .stat { padding: 28px 12px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .toast { left: 16px; right: 16px; transform: translateY(100px); }
  .toast.show { transform: translateY(0); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 14s ease-out;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__bg--fallback {
  background: radial-gradient(ellipse at 30% 30%, #1d6ea7 0%, #0b3a68 45%, #061d36 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,29,54,0.35) 0%, rgba(6,29,54,0) 30%, rgba(6,29,54,0) 50%, rgba(6,29,54,0.85) 100%),
    linear-gradient(90deg, rgba(6,29,54,0.45) 0%, rgba(6,29,54,0) 50%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 10vh, 120px);
  padding-top: 120px;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero__sub {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero__sub span { display: inline-flex; align-items: center; gap: 10px; }
.hero__sub span + span::before {
  content: "·";
  color: var(--gold);
  margin-right: 8px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* meta strip над hero ботом */
.hero__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: none;
}

/* ---------- WHY SEYCHELLES ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.why-card {
  background: var(--bg);
  padding: 56px 40px;
  transition: background .3s, transform .3s;
}
.why-card:hover {
  background: #fff;
}
.why-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 32px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 500;
}
.why-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* section header pattern */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 16px; display: block; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- about format ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-photo--fallback {
  background:
    linear-gradient(135deg, rgba(11,58,104,.7), rgba(11,58,104,.2)),
    repeating-linear-gradient(45deg, #1d6ea7 0px, #1d6ea7 4px, #2a86c4 4px, #2a86c4 8px);
}
.about-photo__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(6,29,54,0.45);
  padding: 6px 10px;
  backdrop-filter: blur(8px);
}
.about-text h2 { margin-bottom: 24px; }
.about-text .lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.about-bullets {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.about-bullets li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.about-bullets li::before {
  content: "✦";
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 1px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- ROUTE MAP ---------- */
.route-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.route-map {
  position: relative;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.route-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.route-pin {
  cursor: pointer;
  transition: all .2s;
}
.route-pin:hover, .route-pin.active { transform: scale(1.15); }
.route-pin circle.dot { transition: all .25s; }
.route-pin.active circle.dot {
  fill: var(--gold);
  r: 9;
}
.route-pin circle.halo {
  fill: rgba(201,169,75,0.0);
  transition: all .25s;
}
.route-pin.active circle.halo {
  fill: rgba(201,169,75,0.18);
  r: 22;
}
.route-pin text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  fill: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.route-pin.active text { fill: var(--gold); }

.route-timeline {
  display: flex;
  flex-direction: column;
}
.route-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all .25s;
  align-items: start;
}
.route-day:first-child { padding-top: 0; }
.route-day:hover, .route-day.active {
  padding-left: 12px;
}
.route-day__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.route-day__date small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  margin-top: 2px;
}
.route-day__content h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  color: #fff;
}
.route-day__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.route-day__desc {
  font-size: 14px;
  color: rgba(240, 233, 214, 0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .35s ease;
}
.route-day.active .route-day__desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .route-wrapper { grid-template-columns: 1fr; }
  .route-map { aspect-ratio: 4/3; }
}

/* ---------- BUSINESS PROGRAM ---------- */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bp-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 40px;
  border-radius: 2px;
  transition: all .35s ease;
  position: relative;
}
.bp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.bp-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  margin-bottom: 28px;
  color: var(--navy);
  transition: all .3s;
}
.bp-card:hover .bp-card__icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.bp-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
}
.bp-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.62;
  margin-bottom: 20px;
}
.bp-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 880px) { .bp-grid { grid-template-columns: 1fr; } }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat {
  background: var(--navy);
  padding: 40px 20px;
  text-align: center;
}
.stat__val {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- PARTICIPANTS ---------- */
.participants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.participant {
  border-top: 2px solid var(--navy);
  padding-top: 28px;
}
.participant__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.participant h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
}
.participant p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--navy);
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  padding: 0 32px;
}
.quote::before, .quote::after {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.18em;
}
.quote::before { content: "\201C"; margin-right: 4px; }
.quote::after { content: "\201D"; margin-left: 4px; }
@media (max-width: 880px) { .participants-grid { grid-template-columns: 1fr; } }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 40px;
  border-radius: 2px;
  transition: all .3s;
  position: relative;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,169,75,0.06), rgba(201,169,75,0));
}
.price-card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: rgba(201,169,75,0.1);
  padding: 6px 12px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,75,0.3);
}
.price-card__price {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  color: #fff;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.price-card__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  margin-bottom: 32px;
}
.price-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0 24px;
}
.price-card__list {
  list-style: none;
  margin: 0; padding: 0;
}
.price-card__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--gold);
}
.price-card__excluded {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.price-card__cta {
  margin-top: 36px;
  width: 100%;
}
.price-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--navy); }
.faq-q__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: all .3s;
}
.faq-item.open .faq-q__icon {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 32px;
}

/* ---------- FORM ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px 40px;
  border-radius: 2px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.field input, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.field textarea { resize: vertical; min-height: 100px; }
.field--error input, .field--error textarea { border-color: #d97757; }
.field__error {
  font-family: var(--mono);
  font-size: 11px;
  color: #f0a98d;
}

.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}
.choice button {
  padding: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .2s;
}
.choice button.active {
  background: var(--gold);
  color: var(--navy-900);
}

.form-success {
  background: rgba(201,169,75,0.1);
  border: 1px solid var(--gold);
  padding: 40px;
  text-align: center;
  color: var(--gold-soft);
}
.form-success__title {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}

.tg-card {
  background: linear-gradient(180deg, rgba(201,169,75,0.08), rgba(201,169,75,0));
  border: 1px solid var(--gold);
  padding: 48px 40px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tg-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.tg-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 14px;
  color: #fff;
}
.tg-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.tg-card .btn { margin-top: auto; }

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

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  z-index: 100;
  opacity: 0;
  transition: all .35s ease;
  max-width: 90vw;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.footer__by {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer__col li {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ---------- utility ---------- */
.spacer-l { height: 80px; }
.divider {
  height: 1px;
  background: var(--rule);
  margin: 0;
}

/* fade-in observer */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
