/* ===========================================================================
   NEON NIGHTS PARTY BUS — design system
   ---------------------------------------------------------------------------
   Token-based. One brand: near-black violet canvas, one violet→magenta gradient
   family (CTAs only), neon cyan for links/accents, champagne gold for prices.
   Headings: "Outfit" (self-hosted, SIL Open Font License). Body: system stack.

   Rules that keep it premium:
   - Cyan is never used on buttons. Gold is never a background.
   - Exactly one gradient family site-wide (violet→magenta).
   - Every interactive element has hover, active, and :focus-visible states.
   =========================================================================== */

/* ------------------------------- Font ----------------------------------- */
@font-face {
  font-family: "Outfit";
  src: url("fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------- Tokens ---------------------------------- */
:root {
  /* Canvas */
  --ink:        #08060f;   /* page background */
  --raised:     #0e0a1a;   /* alternate sections */
  --panel:      #151024;   /* card surface */
  --panel-2:    #1c1530;   /* card surface, lighter end */

  /* Brand accents */
  --violet:     #7c3aed;
  --magenta:    #e11d8f;
  --grad:       linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  --cyan:       #22d3ee;
  --gold:       #f5c86b;

  /* Text */
  --text:       #f7f4ff;
  --muted:      #a79fc4;

  /* Lines & shadows */
  --line:       rgba(247, 244, 255, 0.10);
  --line-soft:  rgba(247, 244, 255, 0.06);
  --shadow-1:   0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-2:   0 2px 4px rgba(0, 0, 0, 0.45), 0 16px 48px rgba(0, 0, 0, 0.5);
  --glow:       0 8px 32px rgba(225, 29, 143, 0.35);

  /* Shape & rhythm */
  --r-sm:       10px;
  --r-md:       14px;
  --r-lg:       20px;
  --space-1:    0.25rem;
  --space-2:    0.5rem;
  --space-3:    0.75rem;
  --space-4:    1rem;
  --space-5:    1.5rem;
  --space-6:    2rem;
  --space-7:    3rem;
  --space-8:    4.5rem;

  /* Type */
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ------------------------------- Base ------------------------------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: rgba(124, 58, 237, 0.5); }

img { max-width: 100%; display: block; }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0 1.6rem;
  height: 3.25rem;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease,
              background-color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }

/* Tier 1 — the one gradient. CTAs only. */
.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), var(--glow);
}
.btn--primary:hover { filter: brightness(1.1) saturate(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 12px 40px rgba(225, 29, 143, 0.45); }

/* Tier 2 — quiet outline. */
.btn--secondary {
  color: var(--text);
  background: rgba(247, 244, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn--secondary:hover { background: rgba(247, 244, 255, 0.09); border-color: rgba(247, 244, 255, 0.22); }

/* Tier 3 — text link with arrow, for tertiary actions. */
.btn--link {
  color: var(--cyan);
  background: none;
  padding: 0;
  height: auto;
  font-weight: 700;
}
.btn--link:hover { transform: none; text-decoration: underline; text-underline-offset: 3px; }

.btn--lg { height: 3.6rem; padding: 0 2.1rem; font-size: 1.06rem; }
.btn--sm { height: 2.6rem; padding: 0 1.15rem; font-size: 0.92rem; }
.btn--block { width: 100%; }

/* Card CTA */
.btn--card {
  color: #fff;
  background: var(--grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 20px rgba(225, 29, 143, 0.28);
  margin-top: auto;
  width: 100%;
  height: 2.9rem;
  font-size: 0.95rem;
}
.btn--card:hover { filter: brightness(1.1); }

/* -------------------------------- Nav ------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.7rem 1.1rem;
  background: rgba(8, 6, 15, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.nav__brand:hover { text-decoration: none; }
.nav__brand-logo {
  height: 30px;
  width: auto;
  display: block;
  max-width: 62vw; /* never crowd the hamburger on small phones */
  object-fit: contain;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  background: rgba(247, 244, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex: none;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav__bars { position: relative; }
.nav__bars::before { position: absolute; left: 0; top: -6px; }
.nav__bars::after  { position: absolute; left: 0; top: 6px; }

.nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--raised);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.1rem 1.1rem;
  box-shadow: var(--shadow-2);
}
.nav--open .nav__menu { display: flex; }
.nav__link {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.8rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.nav__link:hover { text-decoration: none; color: var(--cyan); }
.nav__link.is-active { color: var(--gold); }
.nav__link--cta {
  margin-top: 0.7rem;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  border-bottom: none;
  padding: 0.8rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav__link--cta.is-active { color: #fff; }
.nav__link--cta:hover { color: #fff; filter: brightness(1.08); }

/* ----------------------- Sticky mobile action bar ------------------------ */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(8, 6, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.stickybar .btn { height: 2.9rem; font-size: 0.95rem; padding: 0 1rem; }
body { padding-bottom: 4.6rem; } /* room for the sticky bar on mobile */

/* -------------------------------- Hero ----------------------------------- */
.hero {
  position: relative;
  padding: var(--space-8) 1.25rem var(--space-7);
  text-align: center;
  /* Near-black behind the logo (top); the gradient blooms up from below it,
     so the neon pops against black the way the artwork was designed to. */
  background:
    radial-gradient(1200px 520px at 50% 118%, rgba(124, 58, 237, 0.52), transparent 60%),
    radial-gradient(820px 440px at 84% 106%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(820px 440px at 16% 110%, rgba(225, 29, 143, 0.26), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
/* faint grain so the gradients don't band */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.hero__logo {
  display: block;
  width: min(640px, 94%);
  height: auto;
  margin: 0 auto var(--space-3);
  /* True transparent cutout of the artwork — neon stays fully vibrant, the
     black background is gone entirely (no box, no blend-mode dependency). */
  filter: drop-shadow(0 6px 30px rgba(124, 58, 237, 0.35));
}
.hero__title.hero__title--sub { font-size: clamp(1.5rem, 4vw, 2.2rem); }

.hero__eyebrow {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}
.hero__title {
  margin: 0 0 var(--space-4);
  font-size: clamp(2.3rem, 7.5vw, 4.1rem);
  font-weight: 900;
  color: var(--text);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, #c4b5fd, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tagline {
  margin: 0 auto var(--space-6);
  max-width: 640px;
  font-size: 1.12rem;
  color: var(--muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.hero__note { margin: var(--space-5) 0 0; font-size: 0.9rem; color: var(--muted); }

/* ------------------------------ Sections --------------------------------- */
.section { padding: var(--space-8) 1.25rem; max-width: 1080px; margin: 0 auto; }
.section--alt {
  background: var(--raised);
  max-width: none;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section--narrow { max-width: 760px; }

.section__head { text-align: center; margin-bottom: var(--space-7); }
.section__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
}
.section__title {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
}
.section__sub { margin: 0 auto; max-width: 640px; color: var(--muted); font-size: 1.05rem; }
.section__foot {
  margin: var(--space-7) auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ----------------------------- Breadcrumbs ------------------------------- */
.crumbs {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-4) 1.25rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cyan); }
.crumbs span[aria-current] { color: var(--text); }

/* ------------------------------- Cards ----------------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
/* glassy top highlight */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 255, 0.28), transparent);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: var(--shadow-2);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border-radius: var(--r-md);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}
.card__icon svg { width: 26px; height: 26px; }

.card__title { margin: 0 0 var(--space-2); font-size: 1.28rem; font-weight: 800; }
.card__cap {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cyan);
  font-size: 0.92rem;
}
.card__desc { margin: 0 0 var(--space-4); color: var(--muted); flex-grow: 1; }
.card__price {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
}
.card__price span { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.card__actions { display: grid; gap: var(--space-2); margin-top: auto; }
.card__actions .btn--card { margin-top: 0; }
.card__more { text-align: center; font-size: 0.92rem; }

/* ------------------------------ Trust strip ------------------------------ */
.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(247, 244, 255, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}
.trust li svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ------------------------------- Steps ----------------------------------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.step {
  position: relative;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  box-shadow: var(--shadow-1);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: var(--grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  margin-bottom: var(--space-4);
}
.step__title { margin: 0 0 var(--space-2); font-size: 1.22rem; font-weight: 800; }
.step__desc { margin: 0; color: var(--muted); }

/* ------------------------------ Pay list --------------------------------- */
.pay { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: grid; gap: var(--space-2); }
.pay li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(247, 244, 255, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.9rem;
  font-weight: 700;
}
.pay__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 4.6rem;
}

/* ------------------------------- Teasers --------------------------------- */
.teasers { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.teaser {
  position: relative;
  display: block;
  color: var(--text);
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.teaser::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 255, 0.28), transparent);
}
.teaser:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: var(--shadow-2);
  text-decoration: none;
}
.teaser__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
  border-radius: var(--r-md);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}
.teaser__icon svg { width: 26px; height: 26px; }
.teaser__title { margin: 0 0 var(--space-2); font-size: 1.28rem; font-weight: 800; }
.teaser__desc { margin: 0 0 var(--space-4); color: var(--muted); }
.teaser__link { font-family: var(--font-display); font-weight: 700; color: var(--cyan); }

/* ------------------------------ CTA band --------------------------------- */
.cta-band { text-align: center; }
.cta-band__title { margin: 0 0 var(--space-2); font-size: clamp(1.7rem, 5vw, 2.3rem); font-weight: 800; }
.cta-band__sub { margin: 0 0 var(--space-5); color: var(--muted); }

/* ------------------------------- Answer box ------------------------------ */
/* AEO: the direct answer, visually first-class so humans trust it too. */
.answer {
  max-width: 760px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.14), rgba(225, 29, 143, 0.07));
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-5);
  font-size: 1.08rem;
}
.answer strong { color: var(--gold); }

/* -------------------------------- Tables --------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  font-size: 0.98rem;
  min-width: 480px;
}
.rate-table th, .rate-table td { padding: 0.9rem 1.1rem; text-align: left; }
.rate-table thead th {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}
.rate-table tbody tr + tr td { border-top: 1px solid var(--line-soft); }
.rate-table td strong { font-family: var(--font-display); color: var(--gold); font-size: 1.05rem; }
.rate-table .rt-note { color: var(--muted); font-size: 0.88rem; }

/* -------------------------------- Prose ---------------------------------- */
.prose { max-width: 700px; margin: 0 auto var(--space-6); }
.prose p { margin: 0 0 var(--space-4); color: var(--muted); font-size: 1.05rem; }
.prose h2 { font-size: 1.5rem; margin: var(--space-6) 0 var(--space-3); }
.prose ul { color: var(--muted); margin: 0 0 var(--space-4); padding-left: 1.2rem; }
.prose li { margin-bottom: var(--space-2); }
.prose strong { color: var(--text); }

/* ------------------------------ Info cards ------------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.info-card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-1);
}
.info-card__title { margin: 0 0 var(--space-4); font-size: 1.18rem; font-weight: 800; }
.info-card__note { margin: var(--space-4) 0 0; font-size: 0.86rem; color: var(--muted); }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.info-list li { display: flex; gap: var(--space-3); }
.info-list li span:first-child {
  min-width: 4.2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.2rem;
}

/* --------------------------------- FAQ ----------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: var(--space-3); }
.faq__item {
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.35rem 1.25rem;
  box-shadow: var(--shadow-1);
  transition: border-color 0.15s ease;
}
.faq__item[open] { border-color: rgba(124, 58, 237, 0.45); }
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  padding: 0.9rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
  flex: none;
  transition: transform 0.15s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0 0 var(--space-4); color: var(--muted); }

/* -------------------------------- Forms ---------------------------------- */
.form {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-2);
}
.field { margin-bottom: var(--space-4); display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field label {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}
.field__opt { color: var(--muted); font-weight: 500; }
.field__hint { margin: 0.55rem 0 0; font-size: 0.84rem; color: var(--muted); line-height: 1.45; }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(8, 6, 15, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0 0.95rem;
  height: 3.1rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { height: auto; padding: 0.8rem 0.95rem; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23a79fc4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(225, 29, 143, 0.22);
}
.field input[type="date"],
.field input[type="time"] { color-scheme: dark; }

.form__error {
  margin: 0 0 var(--space-4);
  color: #ffc4de;
  font-weight: 600;
  background: rgba(225, 29, 143, 0.1);
  border: 1px solid rgba(225, 29, 143, 0.4);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.95rem;
}
.form__fineprint { margin: var(--space-4) 0 0; text-align: center; font-size: 0.83rem; color: var(--muted); }

/* ------------------------------- Pay note -------------------------------- */
.paynote {
  max-width: 640px;
  margin: var(--space-6) auto 0;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
}
.paynote__title { margin: 0 0 var(--space-4); font-size: 1.15rem; font-weight: 800; }
.paynote__steps { margin: 0; padding-left: 1.2rem; color: var(--muted); display: grid; gap: var(--space-3); }
.paynote__steps strong { color: var(--text); }

/* ------------------------------- Gallery --------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.shot {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--panel);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(247,244,255,0.02) 0 12px, rgba(247,244,255,0.05) 12px 24px),
    linear-gradient(165deg, var(--panel-2), var(--panel));
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* -------------------------------- Footer --------------------------------- */
.footer {
  text-align: center;
  padding: var(--space-7) 1.25rem var(--space-7);
  border-top: 1px solid var(--line-soft);
  background: var(--raised);
}
.footer__brand { margin: 0 0 var(--space-2); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.footer__contact { margin: 0 0 var(--space-2); font-weight: 700; }
.footer__social { margin: 0 0 var(--space-4); color: var(--muted); }
.footer__pay { margin: 0 0 var(--space-4); font-size: 0.9rem; color: var(--muted); }
.footer__pay strong { color: var(--text); }
.footer__links {
  margin: 0 auto var(--space-5);
  max-width: 820px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 2;
}
.footer__links-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.footer__links a { color: var(--muted); white-space: nowrap; }
.footer__links a:hover { color: var(--cyan); }
.footer__legal {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.85;
}
.footer__copy { margin: var(--space-4) 0 0; font-size: 0.78rem; color: var(--muted); opacity: 0.7; }

/* ----------------------------- Breakpoints ------------------------------- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .teasers { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
  .trust { grid-template-columns: repeat(4, 1fr); }
}

/* Desktop nav: inline links, hide hamburger and sticky bar */
@media (min-width: 880px) {
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .nav__link { padding: 0.55rem 0.75rem; border-bottom: none; font-size: 0.98rem; }
  .nav__link--cta { margin-top: 0; margin-left: 0.5rem; padding: 0.6rem 1.2rem; }
  .nav__brand-logo { height: 34px; max-width: none; }
  .stickybar { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 420px) {
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
