/* ============================================================
   AWA — Contrast Therapy
   Sala-inspired: huge type, radical white space, minimal copy
   ============================================================ */

:root {
  --paper:   #F8F4EE;
  --bone:    #EFE9DF;
  --ink:     #181614;
  --ink-mid: #504840;
  --ink-soft:#968C82;
  --green:   #4A8870;
  --green-d: #306054;
  --line:    rgba(24,22,20,0.10);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', sans-serif;
  --font-label: 'Josefin Sans', 'Helvetica Neue', sans-serif;

  /* Core rhythm — generous at every breakpoint */
  --pad-x: clamp(32px, 8vw, 140px);
  --pad-y: clamp(100px, 14vw, 220px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ---- Shared heading style ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--green); }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- Shared label ---- */
.intro-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.intro-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}


/* ============================================================
   NAV
   ============================================================ */
.awa-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.awa-nav.scrolled {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: block;
  position: relative;
  height: 72px;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  transition: opacity 0.4s ease;
}
.nav-logo-light { opacity: 1; }
.nav-logo-dark  { opacity: 0; position: absolute; top: 0; left: 0; }
.awa-nav.scrolled .nav-logo-light { opacity: 0; }
.awa-nav.scrolled .nav-logo-dark  { opacity: 1; }
.nav-cta {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.45);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.awa-nav.scrolled .nav-cta { color: var(--ink); border-color: var(--line); }
.awa-nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) clamp(60px, 10vh, 120px);
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url('/hero-sauna.jpg') center 35% / cover no-repeat;
  animation: heroPan 24s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroPan {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08) translateX(-1.5%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.hero h1 {
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  color: #fff;
}
.hero h1 em { color: rgba(255,255,255,0.78); }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  transition: background 0.35s, color 0.35s;
}
.btn-primary::after { content: '→'; font-size: 13px; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.founding .btn-primary,
.signup .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.founding .btn-primary:hover,
.signup .btn-primary:hover {
  background: var(--green);
  color: #fff;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(32px, 5vh, 60px);
  right: var(--pad-x);
  z-index: 2;
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}
.hero-scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255,255,255,0.8);
  animation: scrollTick 2s ease-in-out infinite;
}
@keyframes scrollTick {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}


/* ============================================================
   INTRO
   ============================================================ */
.intro-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  padding: var(--pad-y) var(--pad-x);
  align-items: start;
}
.intro-left h2 {
  font-size: clamp(52px, 7.5vw, 130px);
  line-height: 0.92;
}
.intro-right {
  padding-top: clamp(12px, 2vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intro-right p {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.72;
  color: var(--ink-mid);
}


/* ============================================================
   PHILOSOPHY BAND
   ============================================================ */
.philosophy {
  padding: 0 var(--pad-x) var(--pad-y);
}
.philosophy-inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px) 0;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.philosophy-quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0;
}
.philosophy-sub {
  display: none;
}


/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  background: var(--bone);
  padding: var(--pad-y) var(--pad-x);
}
.pillars-header {
  margin-bottom: clamp(64px, 9vw, 140px);
}
.pillars-header h2 {
  font-size: clamp(56px, 8.5vw, 148px);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.pillar-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 40px;
}
.pillar-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar:hover .pillar-image img { transform: scale(1.05); }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.pillar-title em { font-style: italic; color: var(--green); }
.pillar-rule {
  width: 32px;
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}
.pillar-body {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-mid);
}


/* ============================================================
   RITUAL STAGES
   ============================================================ */
.ritual {
  padding: var(--pad-y) var(--pad-x);
}
.ritual-header {
  margin-bottom: clamp(64px, 9vw, 140px);
  max-width: 800px;
}
.ritual-header h2 {
  font-size: clamp(56px, 8.5vw, 148px);
  margin-bottom: 28px;
}
.ritual-intro {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink-mid);
  line-height: 1.55;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.step-visual {
  aspect-ratio: 3 / 4;
  margin-bottom: 28px;
  overflow: hidden;
}
.step-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step:hover .step-visual img { transform: scale(1.05); }
.step-visual--blank {
  background: var(--bone);
  background-image: linear-gradient(135deg, var(--bone) 0%, var(--paper) 100%);
}
.step-num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.step-title em { font-style: italic; color: var(--green); }
.step-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-d);
  background: rgba(74, 136, 112, 0.10);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.step-body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-mid);
}


/* ============================================================
   FOUNDERS
   ============================================================ */
.founders {
  background: var(--bone);
  padding: var(--pad-y) var(--pad-x);
}
.founders-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 120px);
}
.founders-header .intro-label {
  justify-content: center;
}
.founders-header .intro-label::before { display: none; }
.founders-header h2 {
  font-size: clamp(56px, 8.5vw, 148px);
  margin-bottom: 28px;
}
.founders-intro {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  max-width: 860px;
  margin: 0 auto;
}
.founder-card { text-align: center; }
.founder-photo {
  width: clamp(160px, 22vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  background: var(--paper);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card h3 {
  font-size: clamp(28px, 2.8vw, 44px);
  margin-bottom: 6px;
}
.founder-role {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}


/* ============================================================
   PROGRESS
   ============================================================ */
.progress {
  padding: var(--pad-y) var(--pad-x);
}
.progress-header {
  margin-bottom: clamp(56px, 8vw, 120px);
}
.progress-header h2 {
  font-size: clamp(48px, 6.5vw, 110px);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.timeline-item { padding-top: 32px; position: relative; }
.timeline-marker {
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink-soft);
}
.timeline-item.completed .timeline-marker,
.timeline-item.active .timeline-marker {
  background: var(--green);
  border-color: var(--green);
}
.timeline-item.active .timeline-marker {
  box-shadow: 0 0 0 5px rgba(74,136,112,0.20);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(74,136,112,0.20); }
  50%      { box-shadow: 0 0 0 9px rgba(74,136,112,0.08); }
}
.timeline-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.timeline-item.active .timeline-label { color: var(--green); }
.timeline-content h3 {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}


/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--pad-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 110px);
  align-items: center;
}
.location-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.location-image::after {
  content: 'SW · LONDON';
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24,22,20,0.45);
  backdrop-filter: blur(4px);
  padding: 7px 14px;
}
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-content h2 {
  font-size: clamp(48px, 7vw, 120px);
  margin-bottom: 32px;
}
.location-content p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
  color: var(--ink-mid);
  margin-bottom: 20px;
  max-width: 480px;
}
.location-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-d);
  border: 1px solid var(--green);
  padding: 11px 18px;
}


/* ============================================================
   FOUNDING MEMBERSHIP
   ============================================================ */
.founding {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.founding::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,136,112,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.founding-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.founding-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}
.founding h2 {
  font-size: clamp(48px, 7vw, 120px);
  color: var(--paper);
  margin-bottom: 32px;
}
.founding h2 em { color: rgba(159, 210, 190, 0.9); }
.founding-sub {
  font-size: clamp(18px, 1.4vw, 21px);
  color: rgba(248,244,238,0.65);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 56px;
}
.founding-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: left;
}
.founding-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248,244,238,0.09);
}
.perk-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 10px;
}
.founding-perk p {
  font-size: 15px;
  color: rgba(248,244,238,0.85);
  line-height: 1.55;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--pad-y) var(--pad-x);
  max-width: calc(960px + (var(--pad-x) * 2));
  margin: 0 auto;
  box-sizing: content-box;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.faq-header { margin-bottom: clamp(48px, 6vw, 88px); }
.faq-header h2 { font-size: clamp(52px, 7.5vw, 130px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--green); }
.faq-toggle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
  color: var(--ink-mid);
  padding-bottom: 28px;
  max-width: 680px;
}


/* ============================================================
   SIGNUP
   ============================================================ */
.signup {
  background: var(--bone);
  padding: var(--pad-y) var(--pad-x);
}
.signup-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.signup-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.signup h2 {
  font-size: clamp(52px, 7.5vw, 130px);
  margin-bottom: 28px;
}
.signup-sub {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 48px;
}
.klaviyo-form-X4Ezj3 { margin-bottom: 0; }


/* ============================================================
   FOOTER
   ============================================================ */
.awa-footer {
  padding: 60px var(--pad-x);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-logo-img { height: 64px; }
.footer-mid {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social-link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  align-self: center;
  transition: opacity 0.3s;
}
.footer-social-link:hover { opacity: 0.7; }
.footer-right {
  text-align: right;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
  letter-spacing: 0.02em;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .pillar:last-child { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --pad-x: clamp(24px, 5vw, 48px); --pad-y: clamp(80px, 12vw, 140px); }

  .intro-band { grid-template-columns: 1fr; gap: 40px; }
  .location { grid-template-columns: 1fr; }
  .location-image { aspect-ratio: 4 / 3; }
  .founders-grid { gap: 40px; max-width: 520px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .timeline-item { padding-left: 22px; padding-top: 0; border-left: 1px solid var(--line); }
  .timeline-marker { left: -7px; top: 0; }
  .founding-perks { grid-template-columns: 1fr; }
  .awa-footer { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-right { text-align: center; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: clamp(58px, 14vw, 88px); }
  .pillars-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 52px; }
  .founders-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
