/* ==========================================================================
   Yogic Spirits Studio — homepage
   Vanilla CSS, no build step. Tokens first, then layout, then components.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */

:root {
  /* Surfaces — paper tinted with the brand violet, one family throughout */
  --paper-50: #fbf8fc;
  --paper-100: #f3edf5;
  --paper-150: #ece4ef;
  --paper-200: #dfd4e3;
  --paper-300: #c3b2c9;

  /* Ink — the same violet hue taken almost to black */
  --ink: #241b28;
  --ink-70: #514657;
  --ink-45: #786b80;

  /* One accent, the brand plum. Its light form is decorative only:
     white text on the light purple falls under 3:1, so it never
     carries body copy. */
  --plum: #5c3a60;
  --plum-dark: #472c4a;
  --plum-soft: #c3a0d6;
  --plum-tint: #e6d6ef;

  /* Deep band = darker shade of the same palette, not a jump to #111 */
  --deep: #241826;
  --deep-soft: #362a3a;

  --radius-xl: 32px;
  --radius-l: 22px;
  --radius-m: 14px;
  --radius-s: 8px;

  /* Shadows carry the background hue instead of neutral black */
  --shadow-1: 0 1px 2px rgba(52, 34, 60, 0.06), 0 10px 26px -14px rgba(52, 34, 60, 0.24);
  --shadow-2: 0 2px 6px rgba(52, 34, 60, 0.08), 0 34px 64px -34px rgba(52, 34, 60, 0.42);

  --container: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);

  --z-base: 1;
  --z-panel: 200;
  /* The header sits above the panel so the close button stays reachable */
  --z-sticky: 210;
  --z-grain: 300;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

/* ---------------------------------------------------------------- 2. Reset */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--paper-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain breaks the digital flatness of the large paper areas */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

img,
svg { display: block; max-width: 100%; }

img {
  height: auto;
  background-color: var(--paper-150);
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* The deep bands swallow the plum outline — switch to the light form there */
.booking :focus-visible,
.footer :focus-visible { outline-color: var(--plum-soft); }

::selection {
  background: var(--plum);
  color: var(--paper-50);
}

/* ------------------------------------------------------------ 3. Typography */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.028em;
  text-wrap: balance;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

h1 {
  font-size: clamp(2.85rem, 1.4rem + 6.3vw, 6.1rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.85rem);
  letter-spacing: -0.034em;
}

h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { text-wrap: pretty; }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 34ch;
  font-weight: 350;
}

.measure { max-width: 60ch; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  flex: none;
}

.section-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink-45);
  letter-spacing: 0;
}

.num {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.accent-word {
  color: var(--plum);
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

/* --------------------------------------------------------------- 4. Layout */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  /* Optically balanced: bottom slightly heavier than top */
  padding-block: clamp(4.5rem, 8vw, 8rem) clamp(5rem, 9vw, 9.5rem);
  position: relative;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: calc(var(--z-panel) + 10);
  padding: 0.7rem 1.15rem;
  background: var(--ink);
  color: var(--paper-50);
  border-radius: var(--radius-s);
  font-size: 0.9rem;
  transform: translateY(-160%);
  transition: transform 0.22s var(--ease);
}

.skip-link:focus-visible { transform: translateY(0); }

/* For labels that must exist for screen readers but never appear on screen */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.rule {
  height: 1px;
  background: var(--paper-200);
  border: 0;
  margin: 0;
}

/* -------------------------------------------------------------- 5. Buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper-50);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 100px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.24s var(--spring), background-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
  will-change: transform;
}

.btn svg { flex: none; transition: transform 0.28s var(--spring); }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn--accent {
  --btn-bg: var(--plum);
  --btn-fg: #fff;
}

.btn--accent:hover { --btn-bg: var(--plum-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1px var(--paper-300);
}

.btn--ghost:hover {
  --btn-bg: var(--paper-100);
  box-shadow: inset 0 0 0 1px var(--paper-300), var(--shadow-1);
}

.btn--light {
  --btn-bg: var(--paper-50);
  --btn-fg: var(--ink);
}

/* Tertiary style — keeps CTA groups from being "one filled + one ghost" */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 450;
  padding-block: 0.2rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s var(--ease), color 0.2s var(--ease);
}

.link-arrow:hover {
  background-size: 100% 1px;
  color: var(--plum);
}

.link-arrow svg { transition: transform 0.28s var(--spring); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------- 6. Header */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 252, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}

.header.is-stuck::before,
.header.is-solid::before {
  opacity: 1;
  border-bottom-color: var(--paper-200);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 4.9rem;
  transition: min-height 0.3s var(--ease);
}

.header.is-stuck .header__inner { min-height: 4.1rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-right: auto;
  flex: none;
}

.brand svg { color: var(--plum); }

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-45);
  line-height: 1.4;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.4vw, 1.15rem);
}

.nav a {
  position: relative;
  padding: 0.45rem 0.15rem;
  font-size: 0.945rem;
  font-weight: 400;
  color: var(--ink-70);
  transition: color 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

.nav a[aria-current="page"]::after {
  background: var(--plum);
  transform: scaleX(1);
}

.header__side {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: none;
}

.lang {
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-45);
  border: 1px solid var(--paper-200);
  border-radius: 100px;
  padding: 0.2rem;
  background: rgba(251, 248, 252, 0.6);
}

.lang a,
.lang span {
  padding: 0.28rem 0.66rem;
  border-radius: 100px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.lang [aria-current="true"] {
  background: var(--ink);
  color: var(--paper-50);
}

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

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 100px;
  border: 1px solid var(--paper-200);
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease);
}

.burger:hover { background: var(--paper-100); }

.burger span {
  position: relative;
  width: 1.05rem;
  height: 1px;
  background: var(--ink);
  transition: background-color 0.2s var(--ease);
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--spring);
}

.burger span::before { top: -0.32rem; }
.burger span::after { top: 0.32rem; }

.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(0.32rem) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-0.32rem) rotate(-45deg); }

/* Mobile panel */
.panel {
  position: fixed;
  inset: 0;
  z-index: var(--z-panel);
  background: var(--paper-50);
  padding: 6rem var(--gutter) 2.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease),
    visibility 0.32s;
}

.panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.panel__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--paper-150);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.panel__list a span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-45);
  letter-spacing: 0.04em;
}

.panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ----------------------------------------------------------------- 7. Hero */

.hero {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(4rem, 7vw, 7rem);
  position: relative;
}

/* Ambient warmth behind the hero instead of a flat 45deg fade */
.hero::before {
  content: "";
  position: absolute;
  inset: -25% -10% auto -30%;
  height: 130%;
  z-index: -1;
  background:
    radial-gradient(58% 46% at 22% 26%, rgba(92, 58, 96, 0.13), transparent 68%),
    radial-gradient(50% 44% at 82% 8%, rgba(195, 160, 214, 0.38), transparent 72%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}

.hero__copy {
  grid-column: 1 / span 7;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero h1 { margin-top: 0.6rem; }

.hero h1 .line-2 {
  display: block;
  padding-left: clamp(0rem, 5vw, 4.5rem);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.6rem;
}

.hero__media {
  grid-column: 8 / span 5;
  position: relative;
  margin-bottom: -3.5rem;
}

.hero__media img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-2);
}

.hero__media .shot-a {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-s) var(--radius-xl);
}

/* Overlapping second shot creates depth instead of flat side-by-side blocks */
.hero__media .shot-b {
  position: absolute;
  left: -32%;
  bottom: 8%;
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-l) var(--radius-s) var(--radius-l) var(--radius-l);
  border: 6px solid var(--paper-50);
}

.hero__badge {
  position: absolute;
  top: 6%;
  left: -18%;
  background: var(--paper-50);
  border-radius: 100px;
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.hero__badge b {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 100px;
  background: var(--plum);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--paper-200);
}

.stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.stats dd {
  color: var(--ink-45);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 22ch;
  margin-top: 0.35rem;
}

/* -------------------------------------------------------------- 8. Marquee */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--paper-200);
  padding-block: 1.05rem;
  background: var(--paper-100);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee ul {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
}

.marquee li {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-70);
  white-space: nowrap;
}

.marquee li::after {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 100px;
  background: var(--plum);
  opacity: 0.65;
}

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

/* ------------------------------------------------------------- 9. Approach */

.approach__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.approach__media {
  grid-column: 1 / span 5;
  position: relative;
  margin-top: clamp(0rem, 4vw, 3.5rem);
}

.approach__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-s) var(--radius-xl) var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-2);
}

.quote-chip {
  position: absolute;
  right: -2.5rem;
  bottom: 2.5rem;
  max-width: 15rem;
  background: var(--paper-50);
  border-radius: var(--radius-l);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.quote-chip small {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.approach__text {
  grid-column: 7 / span 6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach__text p { color: var(--ink-70); max-width: 52ch; }

.approach__text h2 { margin-block: 0.4rem 0.3rem; }

/* --------------------------------------------------------- 10. Reasons bento */

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-head > div { max-width: min(52ch, 100%); }
.section-head h2 { margin-top: 0.9rem; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.25rem);
}

.tile {
  position: relative;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  border-radius: var(--radius-l);
  background: var(--paper-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 13.5rem;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

/* Spotlight border follows the cursor */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    16rem 16rem at var(--mx, 50%) var(--my, 0%),
    rgba(92, 58, 96, 0.5),
    transparent 70%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.tile:hover { transform: translateY(-3px); }
.tile:hover::before { opacity: 1; }

.tile h3 { letter-spacing: -0.022em; }
.tile p { color: var(--ink-70); font-size: 0.97rem; line-height: 1.55; }

.tile__mark {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--plum);
  margin-bottom: 0.15rem;
}

.tile--wide-3 { grid-column: span 3; }
.tile--wide-2 { grid-column: span 2; }
.tile--wide-4 { grid-column: span 4; }
.tile--full { grid-column: span 6; }

/* The one emphasised tile carries the accent — no extra height needed */
.tile--accent {
  background: var(--plum);
  color: #fff;
}

.tile--accent p { color: rgba(255, 255, 255, 0.86); }
.tile--accent .tile__mark { color: rgba(255, 255, 255, 0.9); }

.tile--accent .price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}

.tile--accent .price sup {
  font-size: 0.34em;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  top: -1.4em;
  margin-left: 0.35rem;
}

.tile--photo {
  min-height: 20rem;
  justify-content: flex-end;
  color: #fff;
  background: var(--deep);
}

.tile--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}

.tile--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(36, 24, 38, 0.88) 0%,
    rgba(36, 24, 38, 0.42) 45%,
    rgba(36, 24, 38, 0.08) 100%
  );
}

.tile--photo:hover img { transform: scale(1.045); }
.tile--photo > * { position: relative; z-index: 2; }
.tile--photo p { color: rgba(255, 255, 255, 0.84); }

.tile--quiet {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--paper-200);
}

.tile--band {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 0;
  background: var(--paper-150);
  padding-block: clamp(1.5rem, 2.2vw, 1.9rem);
}

.tile--band p { max-width: 46ch; }

/* ------------------------------------------------------- 11. Experiences */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  group: card;
}

.offer:nth-child(1) { grid-column: 1 / span 7; }
.offer:nth-child(2) { grid-column: 8 / span 5; margin-top: clamp(0rem, 6vw, 5rem); }
.offer:nth-child(3) { grid-column: 1 / span 5; }
.offer:nth-child(4) { grid-column: 6 / span 7; margin-top: clamp(0rem, 4vw, 3rem); }

.offer__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--paper-150);
}

.offer:nth-child(odd) .offer__frame { aspect-ratio: 16 / 11; }
.offer:nth-child(even) .offer__frame { aspect-ratio: 4 / 5; }

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

.offer:hover .offer__frame img { transform: scale(1.04); }

.offer__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(251, 248, 252, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-s);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-l);
}

.offer p {
  color: var(--ink-70);
  font-size: 0.99rem;
  max-width: 46ch;
}

.offer__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

/* The whole card is the link, so its cue reacts to the card, not to itself */
.offer:hover .offer__foot .link-arrow {
  color: var(--plum);
  background-size: 100% 1px;
}

.offer:hover .offer__foot .link-arrow svg { transform: translateX(3px); }

/* ------------------------------------------------------ 12. Schedule band */

.schedule {
  background: var(--paper-100);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.schedule__text {
  grid-column: 1 / span 5;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.schedule__text p { color: var(--ink-70); }

.schedule__media {
  grid-column: 6 / span 7;
}

.schedule__media img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
}

.pass {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-m);
  background: var(--paper-50);
  box-shadow: inset 0 0 0 1px var(--paper-200);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}

.pass:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--paper-300), var(--shadow-1);
}

.pass svg { color: var(--plum); flex: none; }
.pass strong { display: block; font-weight: 500; letter-spacing: -0.01em; }
.pass small { color: var(--ink-45); font-size: 0.86rem; }

/* -------------------------------------------------------- 13. Teachers */

.teachers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.teacher:nth-child(2) { margin-top: clamp(0rem, 6vw, 5rem); }

.teacher figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--paper-150);
  margin-bottom: 1.5rem;
}

.teacher:nth-child(1) figure {
  border-radius: var(--radius-xl) var(--radius-s) var(--radius-xl) var(--radius-xl);
}

.teacher:nth-child(2) figure {
  border-radius: var(--radius-s) var(--radius-xl) var(--radius-xl) var(--radius-xl);
}

/* Slight overscale trims the letterboxed edges baked into the source portraits */
.teacher figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.75s var(--ease);
}

.teacher:hover figure img { transform: scale(1.1); }

.teacher__name {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.teacher__role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.teacher p {
  color: var(--ink-70);
  margin-top: 0.85rem;
  font-size: 0.99rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

/* The light purple earns its place here: decorative fill, ink-coloured text */
.chips li {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-s);
  background: var(--plum-tint);
  color: var(--ink-70);
}

/* -------------------------------------------------------------- 14. FAQ */

.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.faq__intro {
  grid-column: 1 / span 4;
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Narrow column: the display scale has to come down or the title shatters */
.faq__intro h2 { font-size: clamp(1.85rem, 1.15rem + 2.1vw, 2.75rem); }
.faq__intro p { color: var(--ink-70); }

/* Plain definition list, not an accordion: every answer is crawlable and visible */
.faq__list {
  grid-column: 6 / span 7;
  display: grid;
  gap: 0;
}

.faq__list > div {
  padding-block: 1.6rem;
  border-top: 1px solid var(--paper-200);
}

.faq__list > div:last-child { border-bottom: 1px solid var(--paper-200); }

.faq__list dt {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.25;
}

.faq__list dd {
  margin-top: 0.6rem;
  color: var(--ink-70);
  font-size: 0.99rem;
  max-width: 58ch;
}

.faq__list dd a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* --------------------------------------------------------- 15. Booking CTA */

.booking {
  background: var(--deep);
  color: var(--paper-100);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 90%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(195, 160, 214, 0.26), transparent 70%);
  pointer-events: none;
}

.booking__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.booking h2 {
  grid-column: 1 / span 5;
  color: var(--paper-50);
}

.booking h2 .accent-word { color: var(--plum-soft); }

.booking__options {
  grid-column: 7 / span 6;
  display: grid;
  gap: 0.85rem;
}

.opt {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-m);
  background: rgba(251, 248, 252, 0.05);
  box-shadow: inset 0 0 0 1px rgba(251, 248, 252, 0.14),
    inset 0 1px 0 rgba(251, 248, 252, 0.09);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--spring);
}

.opt:hover {
  background: rgba(251, 248, 252, 0.1);
  transform: translateX(4px);
}

.opt:active { transform: translateX(2px) scale(0.995); }

.opt svg { color: var(--plum-soft); flex: none; }
.opt strong { display: block; font-weight: 500; color: var(--paper-50); }

.opt small {
  color: rgba(243, 237, 245, 0.62);
  font-size: 0.87rem;
  font-variant-numeric: tabular-nums;
}

.opt .opt__go { margin-left: auto; opacity: 0.5; transition: opacity 0.25s var(--ease); }
.opt:hover .opt__go { opacity: 1; }

/* ------------------------------------------------------------- 16. Footer */

.footer {
  background: var(--deep);
  color: rgba(243, 237, 245, 0.66);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: 0.94rem;
}

.footer a { transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--paper-50); }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(243, 237, 245, 0.12);
}

.footer h2,
.footer h3 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 237, 245, 0.45);
  margin-bottom: 1.05rem;
  letter-spacing: 0.14em;
}

.footer__links li { margin-bottom: 0.6rem; }

.newsletter p {
  color: rgba(243, 237, 245, 0.72);
  max-width: 34ch;
  margin-bottom: 1.2rem;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 24rem;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(243, 237, 245, 0.2);
  background: rgba(251, 248, 252, 0.05);
  color: var(--paper-50);
  font: inherit;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.newsletter input::placeholder { color: rgba(243, 237, 245, 0.4); }

.newsletter input:focus-visible {
  outline: none;
  border-color: var(--plum-soft);
  background: rgba(251, 248, 252, 0.09);
}

.newsletter input[aria-invalid="true"] { border-color: #e0857f; }

.newsletter__msg {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  min-height: 1.2rem;
}

.newsletter__msg[data-state="error"] { color: #f4a49e; }
.newsletter__msg[data-state="ok"] { color: var(--plum-soft); }

.footer__contact li { margin-bottom: 0.6rem; }
.footer__contact strong { color: var(--paper-50); font-weight: 450; }

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-s);
  box-shadow: inset 0 0 0 1px rgba(243, 237, 245, 0.16);
  transition: background-color 0.22s var(--ease), transform 0.22s var(--spring);
}

.socials a:hover {
  background: rgba(251, 248, 252, 0.09);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.75rem;
  font-size: 0.85rem;
  color: rgba(243, 237, 245, 0.45);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ------------------------------------------------------------ 17. Reveals */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

/* --------------------------------------------------------- 18. Responsive */

/* The full nav plus the booking button stops fitting before the layout does */
@media (max-width: 1140px) {
  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 1080px) {
  .hero__copy { grid-column: 1 / span 12; }
  .hero__media { grid-column: 3 / span 8; margin-bottom: 0; margin-top: 1.5rem; }
  .hero__badge { left: 2%; }
  .hero__media .shot-b { left: -12%; width: 44%; }

  .approach__media { grid-column: 1 / span 6; }
  .approach__text { grid-column: 7 / span 6; }
  .quote-chip { right: -1rem; }

  .schedule__text,
  .schedule__media { grid-column: 1 / span 12; }

  .faq__intro { grid-column: 1 / span 12; position: static; }
  .faq__list { grid-column: 1 / span 12; }

  .booking h2 { grid-column: 1 / span 12; }
  .booking__options { grid-column: 1 / span 12; }

  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .header__side .btn { display: none; }

  .offer:nth-child(n) {
    grid-column: 1 / span 12;
    margin-top: 0;
  }

  .offer:nth-child(n) .offer__frame { aspect-ratio: 16 / 10; }

  .tile--wide-3,
  .tile--wide-2,
  .tile--wide-4 { grid-column: span 6; }

  .teachers__grid { grid-template-columns: 1fr; }
  .teacher:nth-child(2) { margin-top: 0; }
}

@media (max-width: 700px) {
  .hero__grid { gap: 2rem; }
  .hero h1 .line-2 { padding-left: 0; }
  .hero__media { grid-column: 1 / span 12; }
  .hero__media .shot-b { left: auto; right: -4%; bottom: -6%; width: 40%; }
  .hero__badge { left: auto; right: 4%; top: -1rem; }

  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats > div {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }

  .stats dd { margin-top: 0; }

  .approach__media,
  .approach__text { grid-column: 1 / span 12; }

  .approach__media { margin-top: 0; }

  .quote-chip {
    position: static;
    max-width: none;
    margin-top: 1rem;
    box-shadow: var(--shadow-1);
  }

  .tile--band { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .footer__top { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; max-width: none; }
  .newsletter__form .btn { justify-content: center; }
}

@media (max-width: 560px) {
  .tile--wide-3,
  .tile--wide-2,
  .tile--wide-4,
  .tile--full { grid-column: span 6; }
  .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* -------------------------------------------------------- 19. Preferences */

@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;
  }

  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media print {
  .header, .panel, .marquee, .booking, .socials { display: none; }
  body { background: #fff; }
}
