:root {
  --burg: #6B2D3E;
  --burg-deep: #401721;
  --burg-dark: #271f1a;
  --cream: #F5F0E8;
  --cream-2: #EDE6D6;
  --white: #FAF8F4;
  --gold: #C9A96E;
  --gold-light: #E8D4A5;
  --text: #2A2420;
  --muted: #927f6c;
  --line: rgba(107, 45, 62, .18);
  --shadow: 0 32px 90px rgba(42, 36, 32, .22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 1000;
  background: var(--burg);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  transition: top .25s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 16px 14px 26px;
  border: 1px solid rgba(232, 212, 165, .23);
  background: rgba(39, 31, 26, .76);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
  transition: .3s ease;
}
.site-header.scrolled {
  top: 12px;
  background: rgba(39, 31, 26, .9);
}
.brand {
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: .08em;
  line-height: .8;
  display: grid;
}
.brand em {
  font-style: italic;
  color: var(--gold-light);
  margin-left: 42px;
  margin-top: -2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav a:not(.nav-cta) {
  opacity: .82;
  transition: .25s;
}
.nav a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  padding: 14px 22px;
  border: 1px solid rgba(232, 212, 165, .45);
  color: var(--white);
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(232, 212, 165, .35);
  background: transparent;
  color: var(--white);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 160px max(28px, calc((100vw - 1220px) / 2)) 70px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 75% 20%, rgba(201,169,110,.18), transparent 34rem),
    linear-gradient(90deg, rgba(39,31,26,.88), rgba(64,23,33,.54) 50%, rgba(39,31,26,.62)),
    linear-gradient(0deg, rgba(39,31,26,.88), transparent 55%);
}
.hero-content {
  width: min(860px, 100%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 600;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(70px, 10vw, 155px);
  line-height: .82;
  letter-spacing: -.04em;
}
.hero h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}
.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(250,248,244,.78);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  border: 1px solid transparent;
  transition: .25s ease;
}
.button:hover { transform: translateY(-4px); }
.button.primary {
  background: var(--burg);
  color: var(--white);
}
.button.secondary {
  border-color: rgba(232,212,165,.38);
  color: var(--white);
  background: rgba(250,248,244,.05);
}
.hero-card {
  position: absolute;
  right: max(28px, calc((100vw - 1220px) / 2));
  bottom: 72px;
  width: 285px;
  padding: 24px;
  border: 1px solid rgba(232,212,165,.25);
  background: rgba(39,31,26,.58);
  backdrop-filter: blur(14px);
}
.hero-card span {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 50px;
  font-family: var(--serif);
  font-size: 42px;
}
.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}
.hero-card p {
  color: rgba(250,248,244,.68);
  line-height: 1.6;
  margin: 0;
}
.scroll-note {
  position: absolute;
  left: max(28px, calc((100vw - 1220px) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,248,244,.55);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}
.scroll-note div {
  width: 70px;
  height: 1px;
  background: var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.intro-logo {
  background: var(--burg);
}
.intro-logo img,
.intro .intro-logo {
  height: 100%;
}
.intro-logo img {
  width: 100%;
  object-fit: cover;
}
.intro-text {
  display: grid;
  align-content: center;
  padding: 80px max(28px, calc((100vw - 1220px) / 2)) 80px 80px;
  background: var(--cream);
}
.intro-text h2,
.section-head h2,
.split-copy h2,
.editorial-text h2,
.shop-copy h2,
.booking-band h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--burg-deep);
  margin: 0;
}
.intro-text p:not(.eyebrow),
.split-copy p,
.editorial-text p,
.shop-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 24px;
}

.section {
  padding: 120px max(28px, calc((100vw - 1220px) / 2));
}
.section-head {
  max-width: 850px;
  margin-bottom: 50px;
}
.experience {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.experience-grid,
.class-grid,
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.experience-card {
  min-height: 330px;
  padding: 36px 30px;
  border: 1px solid rgba(107,45,62,.16);
  background: rgba(250,248,244,.52);
  position: relative;
  overflow: hidden;
}
.experience-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -95px;
  bottom: -95px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .12;
}
.experience-card span,
.class-card p {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  margin-bottom: 70px;
}
.experience-card h3,
.class-card h3,
.price-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--burg-deep);
}
.experience-card p,
.class-card span,
.price-card p {
  color: var(--muted);
  line-height: 1.75;
}

.split,
.shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: var(--white);
}
.split-image img,
.shop-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 14px;
  color: var(--burg-deep);
}
.tick-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.classes {
  background: var(--burg-deep);
  color: var(--white);
}
.classes .section-head h2 { color: var(--white); }
.class-grid {
  border-top: 1px solid rgba(232,212,165,.24);
  border-left: 1px solid rgba(232,212,165,.24);
}
.class-card {
  padding: 38px;
  border-right: 1px solid rgba(232,212,165,.24);
  border-bottom: 1px solid rgba(232,212,165,.24);
  min-height: 430px;
}
.class-card h3 { color: var(--white); }
.class-card a {
  display: inline-flex;
  margin-top: 34px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}

.editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 760px;
  background: var(--cream);
}
.editorial-text {
  padding: 110px 70px 110px max(28px, calc((100vw - 1220px) / 2));
  display: grid;
  align-content: center;
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership {
  background: var(--cream-2);
}
.membership-grid {
  gap: 22px;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(107,45,62,.13);
  padding: 34px;
  box-shadow: 0 22px 70px rgba(42,36,32,.08);
}
.price-card.featured {
  background: var(--burg);
  color: var(--white);
}
.price-card.featured h3,
.price-card.featured p,
.price-card.featured span { color: var(--white); }
.price-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}
.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 62px;
  color: var(--gold);
  margin: 28px 0;
}
.price-card a {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.shop {
  background: var(--cream);
}
.shop-copy {
  order: 2;
}
.shop-image {
  order: 1;
}

.booking-band {
  padding: 150px max(28px, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(90deg, rgba(64,23,33,.94), rgba(64,23,33,.62)),
    url("assets/studio-front.png") center/cover;
  color: var(--white);
  text-align: center;
}
.booking-band h2 {
  color: var(--white);
  max-width: 850px;
  margin: 0 auto 32px;
}
.contact {
  background: var(--cream);
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid rgba(107,45,62,.16);
  background: var(--white);
  padding: 46px;
  box-shadow: var(--shadow);
}
.contact-card h2 {
  font-size: clamp(44px, 6vw, 88px);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.booking-modal.open { display: block; }
.booking-shade {
  position: absolute;
  inset: 0;
  background: rgba(42,36,32,.62);
  backdrop-filter: blur(8px);
}
.booking-panel {
  position: absolute;
  top: 26px;
  right: 26px;
  bottom: 26px;
  width: min(520px, calc(100% - 52px));
  overflow: auto;
  background: var(--cream);
  padding: 42px;
  box-shadow: -30px 0 90px rgba(0,0,0,.28);
}
.booking-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--burg);
  font-size: 28px;
}
.booking-panel h2 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--burg-deep);
  font-size: clamp(46px, 6vw, 78px);
  line-height: .9;
  margin: 10px 0 18px;
}
.booking-intro {
  color: var(--muted);
  line-height: 1.7;
}
.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burg);
}
.booking-form input,
.booking-form select {
  border: 1px solid rgba(107,45,62,.18);
  background: var(--white);
  padding: 15px 14px;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
}
.booking-submit {
  border: 0;
  background: var(--burg);
  color: var(--white);
  padding: 16px 22px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.floating-book {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(107,45,62,.9);
  color: var(--white);
  border: 1px solid rgba(232,212,165,.36);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.footer {
  padding: 34px max(28px, calc((100vw - 1220px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--burg-deep);
  color: rgba(250,248,244,.7);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .08em;
  text-transform: none;
}
.footer p { margin: 6px 0 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(39,31,26,.96);
    border: 1px solid rgba(232,212,165,.22);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav-cta { text-align: center; }
  .hero-card { display: none; }
  .intro,
  .split,
  .editorial,
  .shop {
    grid-template-columns: 1fr;
  }
  .intro-text,
  .editorial-text {
    padding: 80px 28px;
  }
  .shop-copy,
  .shop-image {
    order: initial;
  }
  .experience-grid,
  .class-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .class-card {
    min-height: auto;
  }
  .contact-card {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }
  .brand {
    font-size: 24px;
  }
  .hero {
    padding: 136px 20px 60px;
  }
  .hero h1 {
    font-size: clamp(56px, 18vw, 84px);
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions,
  .button {
    width: 100%;
  }
  .section,
  .classes,
  .membership,
  .shop,
  .contact {
    padding: 78px 20px;
  }
  .split {
    gap: 34px;
  }
  .booking-panel {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: 92vh;
    padding: 30px 22px;
  }
  .floating-book {
    right: 14px;
    bottom: 14px;
    font-size: 13px;
  }
}

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