/* ============================================================
   HUMAN TOOLS — ht.css
   Single source of truth for the visual language.
   Quiet luxury. Aman / Apple restraint.
   ============================================================ */

/* ---------- FONTS ----------
   Loaded via <link rel="stylesheet"> in HTML head (faster than @import).
   Bunny Fonts is a privacy-respecting Google Fonts proxy — no IP logging.
   https://fonts.bunny.net

   If you ever want to self-host:
   1. Download WOFF2 files into /fonts/
   2. Remove the <link> from every HTML <head>
   3. Uncomment the self-hosted @font-face blocks below
   ----------------------------------------------------------- */

/* ---------- SELF-HOSTED FALLBACK (commented out by default) ----------
   Uncomment these if you drop WOFF2 files into /fonts/ and remove the @import above.

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
-------------------------------------------------------------------- */

/* ---------- TOKENS ---------- */

:root {
  /* Palette */
  --white: #FFFFFF;
  --off: #F5F1EB;
  --off2: #EDE7DC;
  --ink: #1C1A18;
  --ink2: #252220;
  --mid: #6B6560;
  --adobe: #D8C4AB;
  --adobe-dk: #6B5228;
  --adobe-line: rgba(216, 196, 171, 0.35);
  --border: rgba(28, 26, 24, 0.09);

  /* Typography families */
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Bebas Neue', 'Impact', sans-serif;
  /* --serif used for emphasis/italic accents.
     Kept as a variable so it can be re-pointed to a serif later without refactoring.
     Currently resolves to Jost (italic applied via font-style on the element). */
  --serif: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid spacing scale */
  --s-1: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --s-2: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --s-3: clamp(1rem, 0.8rem + 1vw, 1.75rem);
  --s-4: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --s-5: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --s-6: clamp(4rem, 3rem + 5vw, 7rem);

  /* Containers */
  --container: min(1240px, 92vw);
  --container-narrow: min(880px, 92vw);
  --container-wide: min(1440px, 96vw);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
}

/* ---------- RESET ---------- */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ---------- ACCESSIBILITY ---------- */

.skip {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.skip:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--adobe-dk);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- TYPOGRAPHY ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.75rem, 2rem + 5vw, 6.5rem);
}

h2 {
  font-size: clamp(2.25rem, 1.5rem + 4vw, 5rem);
}

h3 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}

h4 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  letter-spacing: 0.08em;
}

p {
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid);
}

strong {
  font-weight: 500;
  color: var(--ink);
}

.col {
  color: var(--adobe);
}

.col-dk {
  color: var(--adobe-dk);
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.875rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: var(--s-3);
  display: inline-block;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--adobe);
  border: 0;
  margin: var(--s-3) 0;
}

.rule-center {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}

/* Italic accent glyph (pull-quote open quote).
   Uses --serif token which now resolves to Jost italic 300.
   Kept as a semantic hook: if the brand later wants a serif accent,
   re-point --serif to Cormorant/Playfair/etc. and this still works. */
.quote-glyph {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(4rem, 3rem + 5vw, 7rem);
  line-height: 0.5;
  color: var(--adobe);
  display: block;
  margin-bottom: var(--s-2);
  user-select: none;
}

/* ---------- LAYOUT ---------- */

.container {
  width: var(--container);
  margin: 0 auto;
}

.container-narrow {
  width: var(--container-narrow);
  margin: 0 auto;
}

.container-wide {
  width: var(--container-wide);
  margin: 0 auto;
}

section {
  padding: var(--s-6) 0;
  position: relative;
}

.sec-pad-sm {
  padding: var(--s-5) 0;
}

.bg-off { background: var(--off); }
.bg-off2 { background: var(--off2); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: var(--off); }
.bg-ink2 { background: var(--ink2); color: var(--off); }

.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4,
.bg-ink2 h1, .bg-ink2 h2, .bg-ink2 h3, .bg-ink2 h4 {
  color: var(--white);
}

.bg-ink p, .bg-ink2 p {
  color: rgba(245, 241, 235, 0.75);
}

.bg-ink strong, .bg-ink2 strong {
  color: var(--white);
}

/* ---------- NAV ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.85rem 0;
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.nav.solid .logo,
.nav.nav--dark .logo {
  color: var(--ink);
}

.nav__links {
  display: none;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  list-style: none;
}

.nav__links a {
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s var(--ease);
  padding: 0.5rem 0;
}

.nav.solid .nav__links a,
.nav.nav--dark .nav__links a {
  color: var(--ink);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--adobe);
}

.nav.solid .nav__links a:hover,
.nav.solid .nav__links a[aria-current="page"],
.nav.nav--dark .nav__links a:hover,
.nav.nav--dark .nav__links a[aria-current="page"] {
  color: var(--adobe-dk);
}

.nav__cta {
  display: none;
}

.burger {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav.solid .burger span,
.nav.nav--dark .burger span {
  background: var(--ink);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--ink);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--ink);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--off);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--s-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-align: center;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mobile-menu a:hover {
  color: var(--adobe-dk);
}

.mobile-menu__cta {
  margin-top: var(--s-4);
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.9rem, 0.8rem + 0.3vw, 1.125rem) clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--r-sm);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}

.btn--primary:hover:not(:disabled) {
  background: var(--adobe-dk);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover:not(:disabled) {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--adobe {
  background: var(--adobe);
  color: var(--ink);
}

.btn--adobe:hover:not(:disabled) {
  background: var(--adobe-dk);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: clamp(1.1rem, 1rem + 0.4vw, 1.35rem) clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-size: 1rem;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}

.btn-row--center {
  justify-content: center;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg .hero__poster-fallback {
  z-index: 0;
}

.hero__bg video {
  z-index: 1;
}

.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 26, 24, 0.5) 0%,
    rgba(28, 26, 24, 0.3) 40%,
    rgba(28, 26, 24, 0.7) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--s-6) + 40px) 0 var(--s-5);
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 1.5rem + 7vw, 7.5rem);
  margin-bottom: var(--s-3);
  text-wrap: balance;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 0.2s forwards;
}

.hero .rule {
  background: var(--adobe);
  margin: var(--s-3) auto;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 0.5s forwards;
}

.hero__sub {
  font-size: clamp(1.0625rem, 0.95rem + 0.6vw, 1.375rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto var(--s-4);
  line-height: 1.5;
  font-weight: 300;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 0.7s forwards;
}

.hero .btn-row {
  justify-content: center;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 0.95s forwards;
}

.hero__proof {
  margin-top: var(--s-4);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 1.15s forwards;
}

.hero__proof .stars {
  color: var(--adobe);
  letter-spacing: 0.15em;
  margin-right: 0.5em;
}

.scroll-hint {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 1.35s forwards, bob 2.5s ease-in-out 2.5s infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0.75rem auto 0;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Secondary page hero (about, team, reviews, events) */
.page-hero {
  position: relative;
  padding: calc(var(--s-6) + 60px) 0 var(--s-5);
  background: var(--off);
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 1.75rem + 5vw, 5.5rem);
  margin-bottom: var(--s-2);
  text-wrap: balance;
}

.page-hero .eyebrow {
  margin-bottom: var(--s-2);
}

.page-hero__sub {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  color: var(--mid);
  max-width: 640px;
  margin: var(--s-3) auto 0;
  line-height: 1.55;
}

/* ---------- TICKER ---------- */

.ticker {
  background: var(--ink);
  color: var(--adobe);
  padding: 1rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(216, 196, 171, 0.15);
}

.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.ticker__track span {
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.ticker__track span::after {
  content: '•';
  margin-left: 3rem;
  color: var(--adobe-dk);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- REVEAL / SCROLL ANIMATIONS ----------
   Disabled. Content is always visible.
   Keeping the .reveal class on elements so we don't have to strip it
   from the HTML, but it no longer does anything. */

.reveal,
.reveal.in,
html.js .reveal,
html.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.d1,
.reveal.d2,
.reveal.d3,
.reveal.d4 {
  transition-delay: 0s;
}

/* ---------- PREMISE ---------- */

.premise {
  padding: var(--s-6) 0;
  text-align: center;
}

.premise h2 {
  font-size: clamp(2.25rem, 1.25rem + 6.5vw, 6rem);
  max-width: 12ch;
  margin: 0 auto var(--s-4);
  line-height: 0.95;
}

.premise__sub {
  max-width: 640px;
  margin: 0 auto var(--s-5);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  color: var(--ink);
}

.premise__cols {
  display: grid;
  gap: var(--s-4);
  text-align: left;
  margin-top: var(--s-4);
}

.premise__col h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  color: var(--adobe-dk);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--adobe-line);
}

.premise__col ul {
  list-style: none;
}

.premise__col li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

.premise__col li:last-child {
  border-bottom: none;
}

/* ---------- PHOTO BREAK ---------- */

.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 40vh, 480px);
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 8s var(--ease);
}

.photo-break:hover img {
  transform: scale(1.04);
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--s-4);
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(28, 26, 24, 0.3),
    rgba(28, 26, 24, 0.55)
  );
}

.photo-break__overlay p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  max-width: 24ch;
}

.photo-break--cta .photo-break__overlay {
  gap: var(--s-3);
}

/* ---------- STAT MOMENT (Dark bars) ---------- */

.stat-moment {
  background: var(--ink2);
  color: var(--off);
  padding: var(--s-6) 0;
}

.stat-moment .eyebrow {
  color: var(--adobe);
}

.stat-moment__top {
  text-align: center;
  margin-bottom: var(--s-5);
}

.stat-moment__big {
  font-family: var(--display);
  font-size: clamp(5rem, 3rem + 15vw, 14rem);
  line-height: 0.85;
  color: var(--adobe);
  margin: var(--s-3) 0 var(--s-2);
}

.stat-moment__caption {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  color: rgba(245, 241, 235, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.stat-bars {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.stat-bar__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.stat-bar__label {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.8);
}

.stat-bar__val {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--adobe);
  letter-spacing: 0.05em;
}

.stat-bar__track {
  height: 3px;
  background: rgba(245, 241, 235, 0.08);
  overflow: hidden;
  border-radius: 2px;
}

.stat-bar__fill {
  height: 100%;
  width: 0;
  background: var(--adobe);
  transition: width 1.8s var(--ease-out);
}

.stat-bar__row + .stat-bar__row {
  margin-top: var(--s-2);
}

.stat-moment__close {
  max-width: 760px;
  margin: var(--s-5) auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.125rem, 0.95rem + 0.8vw, 1.75rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.03em;
}

/* ---------- LIGHTER ---------- */

.lighter {
  padding: var(--s-6) 0;
  text-align: center;
  background: var(--white);
}

.lighter__top {
  max-width: 640px;
  margin: 0 auto var(--s-4);
  font-family: var(--display);
  font-size: clamp(1.125rem, 0.95rem + 0.8vw, 1.75rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.2;
}

.lighter__word {
  font-family: var(--display);
  font-size: clamp(5rem, 2rem + 20vw, 18rem);
  letter-spacing: 0.08em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  position: relative;
  display: inline-block;
  margin: var(--s-3) 0 var(--s-4);
}

.lighter__word::before {
  content: attr(data-word);
  position: absolute;
  inset: 0;
  color: var(--adobe);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s var(--ease-out);
}

.lighter__word.revealed::before {
  clip-path: inset(0 0 0 0);
}

.lighter__after {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  color: var(--mid);
  line-height: 1.6;
}

/* ---------- SPLIT SECTION ---------- */

.split {
  padding: var(--s-6) 0;
  background: var(--off);
}

.split__grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}

.split__img,
.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 5 / 4;
}

.split__img img,
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.split__img:hover img,
.split__media:hover img {
  transform: scale(1.03);
}

.split__copy h2 {
  margin-bottom: var(--s-3);
  max-width: 15ch;
}

.split__copy p {
  margin-bottom: var(--s-3);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
}

.split__copy p:last-of-type {
  margin-bottom: var(--s-4);
}

.split__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
}

.split__meta span {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  font-weight: 400;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials {
  padding: var(--s-6) 0;
  background: var(--off2);
}

.testimonials__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.testimonials__featured {
  max-width: 820px;
  margin: 0 auto var(--s-5);
  text-align: center;
  padding: var(--s-4);
}

.testimonials__featured blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.25rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.testimonials__featured cite {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  font-style: normal;
}

.testimonials__stack {
  display: grid;
  gap: var(--s-3);
  max-width: 960px;
  margin: 0 auto;
}

.quote-card {
  background: var(--white);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-left: 2px solid var(--adobe);
}

.quote-card blockquote {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: var(--s-2);
  font-weight: 300;
}

.quote-card cite {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  font-style: normal;
  font-weight: 400;
}

.testimonials__cta {
  text-align: center;
  margin-top: var(--s-5);
}

.testimonials__cta p {
  margin-bottom: var(--s-2);
  font-size: 0.9375rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* ---------- FIVE DAYS ---------- */

.five-days {
  padding: var(--s-6) 0;
  background: var(--white);
}

.five-days__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.days {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: baseline;
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem) clamp(1rem, 0.5rem + 1vw, 1.5rem);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
  cursor: default;
}

.day:hover {
  background: var(--off);
}

.day__num {
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: var(--adobe);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
  min-width: 2.5ch;
}

.day:hover .day__num {
  color: var(--adobe-dk);
}

.day__body h3 {
  font-size: clamp(1.125rem, 1rem + 0.75vw, 1.625rem);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.day__body p {
  color: var(--mid);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.55;
  max-width: 60ch;
}

.five-days__cta {
  text-align: center;
  margin-top: var(--s-5);
}

/* ---------- PROOF STATS (4-grid) ---------- */

.proof {
  padding: var(--s-6) 0;
  background: var(--off);
  text-align: center;
}

.proof__head {
  margin-bottom: var(--s-5);
}

.proof__grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.proof__item {
  padding: var(--s-4) var(--s-2);
  border-top: 1px solid var(--adobe-line);
  position: relative;
}

.proof__num {
  font-family: var(--display);
  font-size: clamp(2.75rem, 2rem + 4vw, 5rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.proof__num .col {
  color: var(--adobe-dk);
}

.proof__label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ---------- INVESTMENT ---------- */

.invest {
  padding: var(--s-6) 0;
  background: var(--white);
}

.invest__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.invest__price {
  font-family: var(--display);
  font-size: clamp(3rem, 1.75rem + 8vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-2);
}

.invest__price .col {
  color: var(--adobe-dk);
}

.invest__sub {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}

.invest__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 620px;
  margin: 0 auto var(--s-5);
  text-align: left;
}

.invest__list li {
  padding: 0.875rem 0 0.875rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
}

.invest__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--adobe-dk);
  font-weight: 400;
}

.invest__breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  max-width: 720px;
  margin: var(--s-4) auto var(--s-5);
  padding: var(--s-3) 0;
  border-block: 1px solid var(--border);
}

.invest__breakdown__item h5 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.invest__breakdown__item p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.invest__note {
  max-width: 680px;
  margin: var(--s-4) auto var(--s-5);
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  color: var(--mid);
  line-height: 1.65;
}

/* ---------- GUARANTEE ---------- */

.guarantee {
  background: var(--off2);
  padding: var(--s-6) 0;
}

.guarantee__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: var(--s-2);
  display: block;
}

.guarantee h2 {
  font-size: clamp(2rem, 1.5rem + 3.5vw, 4rem);
  margin-bottom: var(--s-3);
}

.guarantee p {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--s-3);
  color: var(--ink);
}

.guarantee__conditions {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  text-align: left;
  max-width: 560px;
  margin: var(--s-3) auto 0;
}

.guarantee__conditions li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid var(--adobe-line);
  position: relative;
  font-size: 1rem;
  color: var(--ink);
}

.guarantee__conditions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--adobe-dk);
  font-weight: 400;
}

.guarantee__conditions li:last-child {
  border-bottom: none;
}

/* ---------- FAQ ---------- */

.faq {
  padding: var(--s-6) 0;
  background: var(--white);
}

.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

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

.faq__q {
  width: 100%;
  padding: var(--s-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}

.faq__q:hover {
  color: var(--adobe-dk);
}

.faq__icon {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--adobe-dk);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq__item[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
}

.faq__a-inner {
  padding: 0 0 var(--s-3);
  color: var(--mid);
  line-height: 1.65;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  max-width: 65ch;
}

/* ---------- FINALE (dark section) ---------- */

.finale {
  background: var(--ink2);
  color: var(--white);
  padding: var(--s-6) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(216, 196, 171, 0.08), transparent 60%);
  pointer-events: none;
}

.finale__inner {
  position: relative;
  z-index: 1;
}

.finale h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 1.5rem + 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: var(--s-3);
}

.finale h2 .col {
  color: var(--adobe);
}

.finale__sub {
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.7);
  margin-bottom: var(--s-4);
}

.finale .btn-row {
  justify-content: center;
}

/* ---------- FOOTER ---------- */

.footer {
  background: var(--ink);
  color: rgba(245, 241, 235, 0.7);
  padding: var(--s-5) 0 var(--s-3);
  font-size: 0.9375rem;
}

.footer__grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-4);
}

.footer__brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: var(--s-2);
}

.footer__brand p {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.65);
  max-width: 30ch;
  line-height: 1.5;
}

.footer h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe);
  margin-bottom: var(--s-2);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.625rem;
}

.footer a {
  color: rgba(245, 241, 235, 0.7);
  transition: color 0.3s var(--ease);
}

.footer a:hover {
  color: var(--adobe);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: var(--s-2);
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 196, 171, 0.2);
  border-radius: 50%;
  color: rgba(245, 241, 235, 0.7);
  transition: all 0.3s var(--ease);
}

.footer__social a:hover {
  border-color: var(--adobe);
  color: var(--adobe);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__bottom {
  padding-top: var(--s-3);
  border-top: 1px solid rgba(216, 196, 171, 0.1);
  font-size: 0.8125rem;
  /* Contrast fix: original spec used rgba(232,226,217,.16) which fails WCAG.
     This passes AA on --ink. */
  color: rgba(232, 226, 217, 0.55);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ---------- WHATSAPP FAB ---------- */

.wa {
  position: fixed;
  right: clamp(1rem, 0.5rem + 1vw, 1.5rem);
  bottom: clamp(1rem, 0.5rem + 1vw, 1.5rem);
  z-index: 95;
  width: clamp(52px, 48px + 1vw, 60px);
  height: clamp(52px, 48px + 1vw, 60px);
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wa svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.wa__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--adobe);
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.dates {
  padding: var(--s-6) 0;
  background: var(--white);
}

.dates__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}

.filter {
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: var(--r-sm);
}

.filter:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.filter[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.date-grid {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

.date-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s-4);
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1fr;
  transition: all 0.3s var(--ease);
}

.date-card:hover {
  border-color: var(--adobe);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(28, 26, 24, 0.05);
}

.date-card[data-status="soldout"] {
  opacity: 0.6;
}

.date-card[data-status="soldout"]:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.date-card__month {
  font-family: var(--display);
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.date-card__city {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: 0.5rem;
}

.date-card__when {
  font-size: 0.9375rem;
  color: var(--mid);
  margin-bottom: 0.25rem;
}

.date-card__where {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.date-card__status {
  align-self: center;
  justify-self: start;
}

.date-card__status .pill {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  font-weight: 500;
}

.pill--soldout {
  background: rgba(28, 26, 24, 0.08);
  color: var(--mid);
}

.pill--available {
  background: var(--adobe);
  color: var(--ink);
}

/* ---------- NEXT STEPS ---------- */

.next-steps {
  padding: var(--s-6) 0;
  background: var(--off);
}

.next-steps__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.next-steps__grid {
  display: grid;
  gap: var(--s-3);
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.step-card {
  background: var(--white);
  padding: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  border-top: 3px solid var(--adobe);
  display: flex;
  flex-direction: column;
}

.step-card .eyebrow {
  margin-bottom: var(--s-2);
}

.step-card h3 {
  margin-bottom: var(--s-2);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.875rem);
}

.step-card p {
  margin-bottom: var(--s-4);
  flex-grow: 1;
  line-height: 1.6;
  color: var(--mid);
}

/* ---------- WAITLIST ---------- */

.waitlist {
  padding: var(--s-6) 0;
  background: var(--white);
}

.waitlist__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.waitlist__head {
  margin-bottom: var(--s-4);
}

.waitlist__head h3 {
  margin-bottom: var(--s-2);
}

.waitlist__head p {
  color: var(--mid);
  line-height: 1.6;
}

.form {
  display: grid;
  gap: var(--s-2);
  text-align: left;
}

.form__field {
  display: flex;
  flex-direction: column;
}

.form__field label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form__field input,
.form__field select {
  padding: 0.875rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}

.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-bottom-color: var(--adobe-dk);
}

.form__field.error input,
.form__field.error select {
  border-bottom-color: #c53030;
}

.form__err {
  font-size: 0.75rem;
  color: #c53030;
  margin-top: 0.375rem;
  letter-spacing: 0.05em;
  min-height: 1em;
}

.form__submit {
  margin-top: var(--s-3);
  justify-self: stretch;
}

.form__submit .btn {
  width: 100%;
}

.form__status {
  margin-top: var(--s-2);
  padding: var(--s-2);
  text-align: center;
  font-size: 0.9375rem;
  display: none;
}

.form__status.show { display: block; }
.form__status.success { color: #2f7a3a; background: rgba(47, 122, 58, 0.08); }
.form__status.error { color: #c53030; background: rgba(197, 48, 48, 0.08); }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form__hidden { display: none; }

/* ---------- BOOKING MODAL ---------- */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__box {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
  border-radius: var(--r-md);
}

.modal.open .modal__box {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 1.5rem;
  transition: color 0.3s var(--ease);
  line-height: 1;
}

.modal__close:hover {
  color: var(--ink);
}

.modal__head {
  margin-bottom: var(--s-3);
}

.modal__head .eyebrow {
  margin-bottom: var(--s-1);
}

.modal__head h3 {
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  margin-bottom: var(--s-1);
}

.modal__head p {
  font-size: 0.9375rem;
  color: var(--mid);
}

.modal__footnote {
  font-size: 0.8125rem;
  color: var(--mid);
  text-align: center;
  margin-top: var(--s-2);
  letter-spacing: 0.05em;
}

.modal__success {
  display: none;
  text-align: center;
  padding: var(--s-3) 0;
}

.modal__success.show { display: block; }

.modal__success h3 {
  margin-bottom: var(--s-2);
}

.modal__success p {
  color: var(--mid);
  margin-bottom: var(--s-3);
  line-height: 1.6;
}

/* ---------- REVIEWS PAGE ---------- */

.video-grid {
  padding: var(--s-6) 0;
  background: var(--white);
}

.video-grid__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.videos {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--off2);
  display: block;
  transition: transform 0.4s var(--ease);
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.video-card:hover .video-card__play {
  background: var(--adobe);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}

.reviews-stack {
  padding: var(--s-6) 0;
  background: var(--off);
}

.reviews-stack__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.reviews-stack__grid {
  display: grid;
  gap: var(--s-2);
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

/* ---------- ABOUT PAGE ---------- */

.about-what {
  padding: var(--s-6) 0;
  background: var(--white);
  text-align: center;
}

.about-what__inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-what__inner h2 {
  margin-bottom: var(--s-3);
}

.about-what__inner p {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  line-height: 1.65;
  margin-bottom: var(--s-3);
}

.frameworks {
  padding: var(--s-6) 0;
  background: var(--off);
}

.frameworks__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.frameworks__grid {
  display: grid;
  gap: var(--s-2);
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.fw-card {
  background: var(--white);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-left: 2px solid var(--adobe);
}

.fw-card h3 {
  margin-bottom: var(--s-2);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.fw-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--mid);
}

/* ---------- TEAM PAGE ---------- */

.team {
  padding: var(--s-6) 0;
  background: var(--white);
}

.team__grid {
  display: grid;
  gap: var(--s-5);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.team__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 5;
}

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

.team__copy h2 {
  margin-bottom: var(--s-2);
}

.team__copy .meta {
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: var(--s-3);
  display: block;
}

.team__copy p {
  margin-bottom: var(--s-3);
  font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem);
  line-height: 1.7;
}

.team__quote {
  padding: var(--s-3);
  background: var(--off);
  border-left: 2px solid var(--adobe);
  margin: var(--s-3) 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
}

.team__quote cite {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
}

.team__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-block: 1px solid var(--border);
  margin-top: var(--s-3);
}

.team__stats > div {
  flex: 1 1 auto;
}

.team__stats strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--adobe-dk);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.team__stats span {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ---------- 404 ---------- */

.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off);
  padding: var(--s-4);
}

.error-page__inner h1 {
  font-size: clamp(6rem, 4rem + 12vw, 14rem);
  color: var(--adobe-dk);
  line-height: 0.9;
  margin-bottom: var(--s-2);
}

.error-page__inner h2 {
  font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  margin-bottom: var(--s-2);
}

.error-page__inner p {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1875rem);
  color: var(--mid);
  margin-bottom: var(--s-4);
  max-width: 40ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 700px) {
  .premise__cols {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
  }

  .split__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
  }

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

  .date-grid {
    grid-template-columns: 1fr;
  }

  .date-card {
    grid-template-columns: 1.5fr 1fr auto auto;
    gap: var(--s-3);
    align-items: center;
  }

  .date-card__meta {
    min-width: 0;
  }

  .next-steps__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .reviews-stack__grid {
    grid-template-columns: 1fr 1fr;
  }

  .frameworks__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team__grid {
    grid-template-columns: 2fr 3fr;
    gap: var(--s-5);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--s-4);
  }
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

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

  .videos {
    grid-template-columns: repeat(5, 1fr);
  }

  .invest__breakdown {
    gap: var(--s-4);
  }
}


/* ============================================================
   DATE PREVIEW CARDS (experience.html)
   Shows Cape Town + Dubai above the Zoho iframe so dates are
   visible before the visitor commits to opening the form.
   ============================================================ */

.dates-preview {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-4);
}

@media (min-width: 700px) {
  .dates-preview {
    grid-template-columns: 1fr 1fr;
  }
}

.date-preview {
  background: var(--white);
  padding: var(--s-3);
  border-left: 2px solid var(--adobe);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.date-preview__city {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.date-preview__date {
  font-size: 0.9375rem;
  color: var(--ink2);
  font-weight: 500;
  line-height: 1.3;
}

.date-preview__country {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-top: 0.25rem;
}

/* ============================================================
   LEGAL PAGES (privacy, terms, disclaimer, refund, cookie)
   Minimal single-column reading layout. No decorative elements.
   ============================================================ */

.legal {
  padding: var(--s-6) 0 var(--s-5);
  background: var(--white);
}

.legal__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--s-3);
}

.legal .page-hero {
  background: var(--off);
  padding-block: var(--s-5) var(--s-4);
}

.legal__meta {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}

.legal__inner h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  color: var(--ink);
}

.legal__inner h2:first-child {
  margin-top: 0;
}

.legal__inner h3 {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  font-weight: 500;
  margin-top: var(--s-3);
  margin-bottom: var(--s-1);
  color: var(--ink);
  letter-spacing: 0.01em;
}

.legal__inner p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--s-2);
  color: var(--ink2);
}

.legal__inner ul {
  margin: var(--s-2) 0 var(--s-2) var(--s-2);
  padding-inline-start: var(--s-2);
}

.legal__inner ul li {
  margin-bottom: 0.625rem;
  line-height: 1.65;
  color: var(--ink2);
}

.legal__inner a {
  color: var(--adobe-dk);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.legal__inner a:hover {
  color: var(--ink);
}

.legal__inner strong {
  font-weight: 500;
  color: var(--ink);
}

.legal__inner address {
  font-style: normal;
  background: var(--off);
  padding: var(--s-2);
  border-left: 2px solid var(--adobe);
  margin: var(--s-2) 0;
  line-height: 1.75;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--ink);
  color: var(--off);
  padding: var(--s-3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  border-top: 1px solid rgba(216, 196, 171, 0.2);
}

.cookie-banner[data-visible="true"] {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(245, 241, 235, 0.85);
}

.cookie-banner__text a {
  color: var(--adobe);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.cookie-banner__text a:hover {
  color: var(--off);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--adobe);
  background: transparent;
  color: var(--adobe);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.cookie-banner__btn:hover {
  background: var(--adobe);
  color: var(--ink);
}

.cookie-banner__btn--primary {
  background: var(--adobe);
  color: var(--ink);
}

.cookie-banner__btn--primary:hover {
  background: #e4d4bf;
  border-color: #e4d4bf;
}

@media (max-width: 699px) {
  .cookie-banner {
    padding: var(--s-2);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__btn {
    flex: 1;
  }
}

/* ============================================================
   DATE CARDS — bookable cohorts grid
   Used on events.html (free SA) and experience.html (paid destination)
   ============================================================ */

.cohorts {
  padding: var(--s-5) 0 var(--s-6);
  background: var(--white);
}

.cohorts__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-4);
  padding-inline: var(--s-3);
}

.cohorts__head h2 {
  margin-bottom: var(--s-2);
}

.cohorts__head p {
  color: var(--ink2);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
}

.cohorts__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--s-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}

@media (min-width: 640px) {
  .cohorts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
  }
}

@media (min-width: 1000px) {
  .cohorts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cohort-card {
  position: relative;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-3) var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font-family: var(--sans);
}

.cohort-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(216, 196, 171, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.cohort-card:hover,
.cohort-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28, 26, 24, 0.08);
  border-color: var(--adobe);
  outline: none;
}

.cohort-card:hover::before,
.cohort-card:focus-visible::before {
  opacity: 1;
}

.cohort-card__city {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

.cohort-card__dates {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.5;
}

.cohort-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.cohort-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.cohort-card__meta span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--adobe-dk);
  border-radius: 50%;
  display: inline-block;
}

.cohort-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.875rem var(--s-2);
  background: var(--ink);
  color: var(--off);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: background 0.25s var(--ease);
}

.cohort-card:hover .cohort-card__cta,
.cohort-card:focus-visible .cohort-card__cta {
  background: var(--adobe-dk);
  color: var(--white);
}

.cohort-card__cta::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.25s var(--ease);
}

.cohort-card:hover .cohort-card__cta::after {
  transform: translateX(4px);
}

.cohort-card--soldout {
  opacity: 0.55;
  cursor: not-allowed;
}

.cohort-card--soldout:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.cohort-card--soldout .cohort-card__cta {
  background: var(--mid);
  color: var(--off);
}

.cohort-card--soldout:hover .cohort-card__cta {
  background: var(--mid);
}

/* ============================================================
   BOOKING MODAL — brand form that posts to Zoho
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--s-3);
  background: rgba(28, 26, 24, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: var(--off);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
}

.modal[data-open="true"] .modal__dialog {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .modal__dialog {
    padding: var(--s-5) var(--s-4);
  }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  z-index: 2;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--ink);
  color: var(--off);
  border-color: var(--ink);
  outline: none;
}

.modal__eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: 0.625rem;
  display: block;
}

.modal__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.modal__selection {
  font-size: 0.875rem;
  color: var(--ink2);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}

.modal__selection strong {
  color: var(--ink);
  font-weight: 500;
}

/* FORM — shared styles for booking + waitlist */

.book-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.book-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}

@media (min-width: 480px) {
  .book-form__row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.book-form__field {
  display: flex;
  flex-direction: column;
}

.book-form__label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 0.375rem;
  font-weight: 500;
}

.book-form__label em {
  font-style: normal;
  color: var(--adobe-dk);
  margin-left: 0.125rem;
}

.book-form__input {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.book-form__input:focus {
  outline: none;
  border-color: var(--adobe-dk);
  box-shadow: 0 0 0 3px rgba(107, 82, 40, 0.12);
}

.book-form__input:invalid:not(:placeholder-shown) {
  border-color: #C0392B;
}

.book-form__error {
  display: none;
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.book-form__field[data-error="true"] .book-form__error {
  display: block;
}

.book-form__field[data-error="true"] .book-form__input {
  border-color: #C0392B;
}

.book-form__submit {
  margin-top: var(--s-2);
  padding: 1.125rem var(--s-3);
  background: var(--ink);
  color: var(--off);
  border: none;
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background 0.25s var(--ease), transform 0.1s var(--ease);
}

.book-form__submit:hover {
  background: var(--adobe-dk);
}

.book-form__submit:active {
  transform: scale(0.99);
}

.book-form__submit[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.book-form__fineprint {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.5;
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ============================================================
   WAITLIST INLINE BLOCK — for use on events.html when all cohorts full
   ============================================================ */

.waitlist-block {
  background: var(--ink);
  color: var(--off);
  padding: var(--s-5) var(--s-3);
  border-radius: var(--r-md);
  max-width: 720px;
  margin: var(--s-5) auto 0;
  text-align: center;
}

.waitlist-block h3 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  color: var(--off);
  letter-spacing: 0.03em;
  margin-bottom: var(--s-2);
}

.waitlist-block p {
  color: rgba(245, 241, 235, 0.8);
  max-width: 480px;
  margin: 0 auto var(--s-3);
  line-height: 1.6;
}

.waitlist-block .btn {
  background: var(--adobe);
  color: var(--ink);
  border-color: var(--adobe);
}

.waitlist-block .btn:hover {
  background: var(--off);
  border-color: var(--off);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou-body {
  background: var(--off);
}

.nav--solid {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.thankyou {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: var(--s-6) 0 var(--s-5);
}

.thankyou__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-inline: var(--s-3);
}

.thankyou__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--adobe);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: var(--s-3);
  box-shadow: 0 8px 32px rgba(216, 196, 171, 0.45);
}

.thankyou h1 {
  font-size: clamp(3rem, 2rem + 5vw, 5.5rem);
  margin-bottom: var(--s-3);
  color: var(--ink);
}

.thankyou .rule {
  background: var(--adobe);
  margin: var(--s-3) auto;
  width: 64px;
  height: 1px;
}

.thankyou__lede {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink2);
  max-width: 560px;
  margin: 0 auto var(--s-5);
}

.thankyou__next {
  text-align: left;
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-3);
  margin-bottom: var(--s-4);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .thankyou__next {
    padding: var(--s-4);
  }
}

.thankyou__next h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--adobe-dk);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}

.thankyou__next ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thankyou__next li {
  counter-increment: step;
  position: relative;
  padding-left: 3.5rem;
  min-height: 40px;
  line-height: 1.6;
  color: var(--ink2);
}

.thankyou__next li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--display);
  font-size: 1.625rem;
  color: var(--adobe-dk);
  letter-spacing: 0.04em;
  line-height: 1;
}

.thankyou__next li strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.thankyou__next a {
  color: var(--adobe-dk);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thankyou__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: var(--s-3);
}

.thankyou__fineprint {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

.thankyou__fineprint a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
