/* ==========================================================================
   Vital Swim Academy — design system
   ========================================================================== */

:root {
  --ink:        #05070a;
  --ink-2:      #0a0e14;
  --ink-3:      #111721;
  --ink-4:      #171e2a;

  --gold-deep:  #8a6b2c;
  --gold-mid:   #c9a961;
  --gold:       #e2ce94;
  --gold-light: #eadeae;

  --line:       rgba(234, 222, 174, .14);
  --line-soft:  rgba(234, 222, 174, .07);

  --text:       #e9e7e1;
  --text-dim:   #9aa2ad;
  --text-faint: #6b7482;

  --metal: linear-gradient(115deg,
    #8a6b2c 0%, #eadeae 26%, #c9a961 44%,
    #f7f0d8 62%, #c9a961 78%, #a67c3d 100%);

  --shell: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .7s;

  --f-display: 'Poppins', 'Century Gothic', 'Futura', system-ui, sans-serif;
  --f-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --f-ui: 'Poppins', system-ui, sans-serif;
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.03rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Small UI text stays on the sans — serif gets thin and muddy at label sizes
   on a dark ground, where the reading copy above ~0.95rem holds up fine. */
.field label, .btn, .nav__link, .eyebrow, .crumb, .stat__l,
.rate__unit, .contact-item__k, .foot-col h4, .foot-base,
.brand__name, .faq summary, .vid__cap p, .form-note {
  font-family: var(--f-ui);
}

/* height:auto stops the width/height HTML attributes from forcing a fixed
   height when CSS only overrides the width */
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--ink); }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: .8rem 1.2rem;
  z-index: 999;
  font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- layout ---------- */

.shell {
  width: min(var(--shell), 100% - var(--gut) * 2);
  margin-inline: auto;
}

.shell--narrow { width: min(760px, 100% - var(--gut) * 2); }

section { position: relative; }

/* Four spacing steps rather than one, so section rhythm varies instead of
   every band breathing identically. */
.band       { padding-block: clamp(4.5rem, 11vw, 8.5rem); }
.band--tight{ padding-block: clamp(2.5rem, 6vw, 4rem); }
.band--tall { padding-block: clamp(6rem, 15vw, 11rem); }
.band--snug { padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(4.5rem, 11vw, 8.5rem); }

/* Separation without a fill — used where a background change would just
   continue the striped light/dark/light rhythm. */
.band--rule { border-top: 1px solid var(--line-soft); }

.band--raised {
  background: var(--ink-2);
  border-block: 1px solid var(--line-soft);
}

/* ---------- type helpers ---------- */

.eyebrow {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
  flex: none;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(270deg, var(--gold-mid), transparent);
  flex: none;
}

.metal {
  background: var(--metal);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s ease-in-out infinite;
}

@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 62ch;
}

.section-head { max-width: 66ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--metal);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--gold {
  background: var(--btn-bg);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #16120a;
  box-shadow: 0 6px 26px -10px rgba(234, 222, 174, .5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-position .6s var(--ease);
}

.btn--gold:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 12px 36px -10px rgba(234, 222, 174, .6);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold-mid);
  background: rgba(234, 222, 174, .06);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* ---------- header / nav ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 1rem;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              padding .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-head.is-stuck {
  background: rgba(5, 7, 10, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line-soft);
  padding-block: .55rem;
}

.site-head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: none;
  min-height: 44px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform .5s var(--ease);
}

.brand:hover .brand__mark { transform: scale(1.08) rotate(-4deg); }

.brand__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--gold-light);
}
.brand__name span {
  display: block;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 1.5rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding-block: .35rem;
  white-space: nowrap;
  transition: color .3s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--metal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__link[aria-current='page'] { color: var(--gold-light); }
.nav__link[aria-current='page']::after { transform: scaleX(1); }

.nav__cta { display: inline-flex; white-space: nowrap; padding: .7rem 1.25rem; font-size: .85rem; }

@media (max-width: 1080px) and (min-width: 901px) {
  .nav__links { gap: 1.1rem; }
  .nav__link { font-size: .8rem; }
  .brand__name span { display: none; }
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
}

.burger span {
  position: absolute;
  left: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--gold-light);
  translate: -50% 0;
  transition: .4s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; width: 12px; }
.burger span:nth-child(3) { top: 27px; }

.burger[aria-expanded='true'] span:nth-child(1) { top: 22px; rotate: 45deg; }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { top: 22px; rotate: -45deg; }

@media (max-width: 900px) {
  .burger { display: block; }

  /* keep the logo and the close button above the full-screen menu overlay */
  .brand, .burger { position: relative; z-index: 2; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
  }

  .nav.is-open { opacity: 1; visibility: visible; }

  .nav__links { flex-direction: column; gap: 1.6rem; }
  .nav__link { font-size: 1.5rem; font-weight: 500; }

  .nav__links li {
    opacity: 0;
    transform: translateY(14px);
    transition: .5s var(--ease);
  }
  .nav.is-open .nav__links li { opacity: 1; transform: none; }
  .nav.is-open .nav__links li:nth-child(1) { transition-delay: .08s; }
  .nav.is-open .nav__links li:nth-child(2) { transition-delay: .14s; }
  .nav.is-open .nav__links li:nth-child(3) { transition-delay: .2s; }
  .nav.is-open .nav__links li:nth-child(4) { transition-delay: .26s; }
  .nav.is-open .nav__links li:nth-child(5) { transition-delay: .32s; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 7.5rem 8.5rem;
  overflow: hidden;
}

.hero__water {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201, 169, 97, .13), transparent 62%),
    radial-gradient(90% 60% at 12% 105%, rgba(234, 222, 174, .07), transparent 60%),
    radial-gradient(70% 55% at 88% 92%, rgba(138, 107, 44, .1), transparent 60%);
}

.hero__caustics {
  position: absolute;
  inset: -20%;
  z-index: 0;
  opacity: .11;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 540px 540px;
  mix-blend-mode: screen;
  animation: drift 42s linear infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='540'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.026' numOctaves='2' seed='11'/%3E%3CfeColorMatrix values='0 0 0 0 0.88 0 0 0 0 0.79 0 0 0 0 0.55 0 0 0 -3.4 1.55'/%3E%3C/filter%3E%3Crect width='540' height='540' filter='url(%23c)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(-6%, -4%, 0) rotate(2deg); }
}

/* no z-index: keeps the hero out of its own stacking context so the video's
   screen blend can composite against the water and caustics behind it */
.hero__in { position: relative; }

/* The source clip carries a generator watermark in the bottom-right corner.
   The frame is cropped past it rather than showing it. */
.hero__logo-wrap {
  position: relative;
  width: min(700px, 90vw);
  margin-inline: auto;
  aspect-ratio: 1280 / 662;   /* crops the bottom 8% of the 1280x720 source */
  overflow: hidden;
}

.hero__logo {
  width: 100%;
  display: block;
  mix-blend-mode: screen;
  /* crushes compression haze in the near-black field so `screen` leaves no box */
  filter: contrast(1.16) saturate(1.05);
}

.hero__logo-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__tagline {
  margin-top: .4rem;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 20ch;
  margin-inline: auto;
}

.hero__sub {
  margin: 1.6rem auto 2.4rem;
  max-width: 54ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero__cta { justify-content: center; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-display);
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--gold-mid), transparent);
  animation: pulse-line 2.4s var(--ease) infinite;
  transform-origin: top;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleY(.35); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* bubbles */

.bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -8%;
  border-radius: 50%;
  border: 1px solid rgba(234, 222, 174, .16);
  background: radial-gradient(circle at 32% 28%, rgba(234, 222, 174, .1), transparent 62%);
  animation: rise linear infinite;
}

@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  14%  { opacity: .5; }
  85%  { opacity: .28; }
  100% { transform: translateY(-112vh) translateX(var(--sway, 20px)) scale(1.15); opacity: 0; }
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding-block: clamp(9rem, 16vw, 12rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 20% 0%, rgba(201, 169, 97, .13), transparent 60%),
    radial-gradient(70% 60% at 90% 30%, rgba(138, 107, 44, .1), transparent 60%);
  pointer-events: none;
}

.page-hero__in { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.4rem; }

.crumb {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
  font-family: var(--f-display);
}
/* negative margin absorbs the padding, so the tap area grows to 44px
   without shifting the breadcrumb's position */
.crumb a {
  display: inline-block;
  padding: .75rem .35rem;
  margin: -.75rem -.35rem;
}

.crumb a:hover { color: var(--gold-mid); }

/* ---------- cards ---------- */

.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 4 items halve cleanly; 3 items would orphan, so they go straight to one column */
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px)  { .grid--2, .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 620px)  { .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.card:hover { transform: translateY(-5px); }
.card:hover::before { opacity: .55; }

.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(234, 222, 174, .08);
  border: 1px solid var(--line);
  margin-bottom: 1.3rem;
  color: var(--gold-light);
}
.card__icon svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: .6rem; color: var(--text); }
.card p { color: var(--text-dim); font-size: .96rem; margin: 0; }

/* ---------- steps ---------- */

.steps {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border-radius: var(--r-lg);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), background .5s var(--ease);
}

.step:hover { transform: translateY(-5px); background: var(--ink-3); }

.step__n {
  font-family: var(--f-display);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  background: var(--metal);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .55;
  margin-bottom: .9rem;
  transition: opacity .5s var(--ease);
}

.step:hover .step__n { opacity: 1; }

.step h3 { margin-bottom: .55rem; }
.step p { color: var(--text-dim); font-size: .95rem; margin: 0; }

/* ---------- checklist ---------- */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }

.ticks li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  color: var(--text-dim);
}

.ticks svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: .28em;
  color: var(--gold-mid);
}

.ticks strong { color: var(--text); font-weight: 600; }

/* ---------- split ---------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.split--reverse > *:first-child { order: 2; }

@media (max-width: 700px) {
  .split--reverse > *:first-child { order: 0; }
}

.media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}

.media img { width: 100%; height: 100%; object-fit: cover; }

.media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 10, .55));
  pointer-events: none;
}

.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 10; }

/* ---------- video ---------- */

.vid {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #000;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}

.vid video { width: 100%; display: block; }

.vid__cap {
  padding: 1.1rem 1.3rem;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
}

.vid__cap h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.vid__cap p { font-size: .88rem; color: var(--text-dim); margin: 0; }

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

.stat { text-align: center; }

.stat__n {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  background: var(--metal);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__l {
  margin-top: .6rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--f-display);
}

/* ---------- quote / testimonials ---------- */

.quote {
  position: relative;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  border-radius: var(--r-lg);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  height: 100%;
}

.quote__mark {
  font-family: var(--f-display);
  font-size: 3.4rem;
  line-height: .8;
  color: var(--gold-mid);
  opacity: .35;
}

.quote p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}

.quote__who {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .92rem;
}
.quote__meta { font-size: .8rem; color: var(--text-faint); }

/* ---------- pricing / cta panel ---------- */

.panel {
  position: relative;
  border-radius: clamp(var(--r-md), 3vw, 28px);
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(110% 130% at 8% 0%, rgba(201, 169, 97, .16), transparent 55%),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  overflow: hidden;
}

.panel--center { text-align: center; }
.panel--center .lede { margin-inline: auto; }
.panel--center .btn-row { justify-content: center; }

.rate {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2rem 0;
}

.rate__item {
  flex: 1 1 190px;
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-md);
  background: rgba(234, 222, 174, .045);
  border: 1px solid var(--line-soft);
}

.rate__price {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  background: var(--metal);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rate__unit {
  margin-top: .45rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--f-display);
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

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

.field { display: grid; gap: .5rem; margin-bottom: 1.15rem; }

.field label {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-dim);
}

.field label .req { color: var(--gold-mid); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  color: var(--text);
  font-family: var(--f-body);
  font-size: .96rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-mid);
  background: var(--ink-3);
}

.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='%23c9a961' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-note {
  font-size: .82rem;
  color: var(--text-faint);
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .92rem;
  display: none;
}
.form-status.is-ok {
  display: block;
  background: rgba(201, 169, 97, .12);
  border: 1px solid var(--gold-mid);
  color: var(--gold-light);
}
.form-status.is-err {
  display: block;
  background: rgba(220, 90, 90, .1);
  border: 1px solid rgba(220, 90, 90, .45);
  color: #f0b4b4;
}

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

a.contact-item:hover { border-color: var(--gold-mid); transform: translateX(4px); }

.contact-item svg { width: 20px; height: 20px; color: var(--gold-mid); flex: none; margin-top: .2em; }
.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

.contact-item__k {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--f-display);
  line-height: 1.3;
}

.contact-item__v {
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ---------- credentials ---------- */

.creds {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(3, 1fr);
}

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

.cred {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  transition: border-color .45s var(--ease), transform .45s var(--ease);
}

.cred:hover { border-color: var(--line); transform: translateY(-4px); }

.cred__top { display: flex; align-items: center; gap: .8rem; }

.cred__badge {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(234, 222, 174, .08);
  border: 1px solid var(--line);
  color: var(--gold-light);
}
.cred__badge svg { width: 20px; height: 20px; }

.cred h3 { font-size: 1.02rem; line-height: 1.25; }

.cred__issuer {
  font-family: var(--f-ui);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: .2rem;
}

.cred dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem .9rem;
  font-size: .88rem;
}

.cred dt {
  font-family: var(--f-ui);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  align-self: center;
}

.cred dd { margin: 0; color: var(--text); }

.cred__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  font-family: var(--f-ui);
  font-size: .86rem;
  font-weight: 500;
  color: var(--gold-light);
  border-top: 1px solid var(--line-soft);
  padding-top: .9rem;
  transition: color .3s var(--ease), gap .3s var(--ease);
}

.cred__action svg { width: 16px; height: 16px; flex: none; }
a.cred__action:hover { color: var(--gold-mid); gap: .8rem; }

.cred__note {
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  padding-top: .9rem;
  font-size: .84rem;
  color: var(--text-faint);
}
.cred__note a { color: var(--gold-mid); }
.cred__note a:hover { text-decoration: underline; }

/* ---------- faq ---------- */

.faq { display: grid; gap: .75rem; }

.faq details {
  border-radius: var(--r-md);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color .4s var(--ease);
}

.faq details[open] { border-color: var(--line); }

.faq summary {
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-mid);
  transition: rotate .35s var(--ease);
  flex: none;
  line-height: 1;
}

.faq details[open] summary::after { rotate: 45deg; }

.faq p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-dim);
  font-size: .95rem;
  margin: 0;
}

/* ---------- prose ---------- */

.prose h2 { margin: 2.6rem 0 1rem; }
.prose h3 { margin: 2rem 0 .7rem; color: var(--gold-light); }
.prose p { color: var(--text-dim); }
.prose > :first-child { margin-top: 0; }

.pull {
  margin: 2.5rem 0;
  padding: 1.6rem 0 1.6rem 1.8rem;
  border-left: 2px solid var(--gold-mid);
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -.01em;
}

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.foot-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 3rem;
}

.foot-brand__logo {
  width: 190px;
  mix-blend-mode: screen;
  margin-bottom: 1.1rem;
}

.foot-brand p { color: var(--text-faint); font-size: .9rem; max-width: 34ch; }

.foot-col h4 {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; }

/* 44px minimum touch target — the links are short, so the height comes from
   padding rather than the text box */
.foot-col a, .foot-col span {
  color: var(--text-dim);
  font-size: .92rem;
  transition: color .3s var(--ease);
  display: flex;
  align-items: center;
  min-height: 44px;
}

.foot-col a:hover { color: var(--gold-light); }

.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: .4s var(--ease);
}

.socials a:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.socials svg { width: 18px; height: 18px; }

.foot-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text-faint);
}

/* ---------- divider ---------- */

.wave { display: block; width: 100%; height: auto; color: var(--ink-2); }
.wave path { fill: currentColor; }

.wave-anim path { animation: wave-shift 14s ease-in-out infinite alternate; }

@keyframes wave-shift {
  from { transform: translateX(0); }
  to   { transform: translateX(-2%); }
}

/* ---------- reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .14s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .23s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .32s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .41s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
  .bubbles, .hero__caustics { display: none; }
}
