:root {
  --bg: #faf9f6;
  --card: #ffffff;
  --heading: #121212;
  --body: #5f5f5f;
  --border: #e8e6e1;
  --blue: #1e40af;
  --emerald: #0f766e;
  --button: #111111;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(232, 230, 225, 0.45) 1px, transparent 1px) 50% 0 / min(92vw, 760px) 100% no-repeat,
    var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 22px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--heading);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--heading);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.header-link {
  color: var(--heading);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding-top: 52px;
  padding-bottom: 74px;
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-title,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(40px, 10.5vw, 72px);
  line-height: 1;
}

.hero-title span {
  color: var(--blue);
  font-style: italic;
}

.hero-copy {
  max-width: 630px;
  margin: 28px 0 0;
  color: #4b4b4b;
  font-size: clamp(17px, 4.3vw, 20px);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--button);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(18, 18, 18, 0.12);
  transform: translateY(-2px);
}

.button-note {
  margin: 16px 0 0;
  color: #77736b;
  font-size: 12px;
  line-height: 1.6;
}

.section-cta {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.section-cta .button {
  margin-top: 0;
}

.section-cta p {
  max-width: 500px;
  margin: 16px auto 0;
  color: #77736b;
  font-size: 13px;
  line-height: 1.6;
}

.editorial {
  border-top: 1px solid var(--border);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 10vw, 62px);
  line-height: 0.98;
}

h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(29px, 7vw, 40px);
  line-height: 1.08;
}

p {
  margin: 0 0 20px;
}

.emphasis {
  color: var(--heading);
  font-weight: 700;
}

.quote-band {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
  padding: 106px 0;
  text-align: center;
}

.quote-band p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--heading);
  font-family: var(--font-serif);
  font-size: clamp(46px, 12vw, 82px);
  font-weight: 600;
  line-height: 0.96;
}

.callout {
  margin: 34px 0 0;
  padding: 28px 0 28px 26px;
  border-left: 2px solid var(--blue);
  color: var(--heading);
  font-family: var(--font-serif);
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 600;
  line-height: 1.12;
}

.system-list {
  margin: 34px 0;
  border-top: 1px solid var(--border);
}

.system-list div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.system-list strong {
  color: var(--heading);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.system-list span {
  color: var(--body);
}

.stats-grid {
  display: grid;
  gap: 12px;
  margin: 36px 0;
}

.stats-grid article,
.terms-list article,
.steps article,
.offer-card,
details {
  background: var(--card);
  border: 1px solid var(--border);
}

.stats-grid article {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stats-grid article:hover,
.offer-card:hover {
  box-shadow: 0 20px 48px rgba(18, 18, 18, 0.06);
  transform: translateY(-2px);
}

.stats-grid span {
  display: block;
  color: var(--emerald);
  font-family: var(--font-serif);
  font-size: clamp(42px, 12vw, 58px);
  font-weight: 700;
  line-height: 0.95;
}

.stats-grid p {
  margin: 12px 0 0;
  color: var(--heading);
  font-weight: 600;
  line-height: 1.45;
}

.video-section {
  border-top: 1px solid var(--border);
}

.video-frame {
  position: relative;
  display: block;
  width: 100%;
  margin: 36px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0eee9;
  border: 1px solid var(--border);
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-frame:hover {
  border-color: rgba(30, 64, 175, 0.34);
  box-shadow: 0 20px 48px rgba(18, 18, 18, 0.08);
  transform: translateY(-2px);
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.76);
  transform: scale(1.02);
  transition: filter 180ms ease, transform 180ms ease;
}

.video-frame:hover img {
  filter: grayscale(0.35) contrast(1.02) brightness(0.82);
  transform: scale(1.04);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.08), rgba(18, 18, 18, 0.42));
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.2);
  transform: translate(-50%, -50%);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--blue);
}

.video-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-pair {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.video-card {
  min-width: 0;
}

.video-card .video-frame {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--heading);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: inset 0 0 0 3px var(--bg);
}

.terms-list,
.steps {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.terms-list article,
.steps article {
  padding: 24px;
}

.terms-list span,
.steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-list h3 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.terms-list p,
.steps p {
  margin: 0;
}

.booking {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offer-card {
  margin-top: 42px;
  padding: 34px 24px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-card h2 {
  margin-bottom: 18px;
  color: var(--heading);
}

.offer-card p:not(.offer-label) {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card small {
  display: block;
  max-width: 590px;
  margin: 20px auto 0;
  color: #77736b;
  font-size: 12px;
  line-height: 1.6;
}

.faq-section {
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 0;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 48px 22px 22px;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.45;
  position: relative;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 21px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 22px 24px;
}

.postscript {
  text-align: center;
}

.postscript p {
  color: var(--heading);
  font-family: var(--font-serif);
  font-size: clamp(30px, 7vw, 46px);
  font-weight: 600;
  line-height: 1.12;
}

.site-footer {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: #77736b;
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  body {
    font-size: 17px;
  }

  .site-header,
  .section {
    width: min(100% - 72px, var(--max));
  }

  .section {
    padding: 112px 0;
  }

  .hero {
    padding-top: 76px;
    padding-bottom: 100px;
  }

  .hero-title {
    max-width: 760px;
  }

  .system-list div {
    grid-template-columns: 180px 1fr;
    gap: 34px;
    align-items: baseline;
  }

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

  .stats-grid article {
    padding: 24px 20px;
  }

  .stats-grid span {
    font-size: 44px;
  }

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

  .video-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terms-list article {
    padding: 30px;
  }

  .offer-card {
    padding: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
