/* ============================================================
   Sweat Squad — landing page
   Tokens lifted verbatim from the Claude Design project
   (tokens/colors.css, typography.css, layout.css).
   ============================================================ */

/* ---------- Color ---------- */
:root {
  --mint-100: #EAF6EF;
  --mint-200: #D9EFE1;
  --mint-300: #C8E6D2;   /* brand mint — "Sweat" */
  --mint-400: #A6D4B6;
  --mint-500: #7FBF9A;
  --mint-600: #5AA179;

  --peri-100: #EDEFF6;
  --peri-200: #D3D8EC;
  --peri-300: #A0AAC8;   /* brand periwinkle — "Squad" */
  --peri-400: #808CB8;
  --peri-500: #6570A2;
  --peri-600: #4F5988;

  --cream-50:  #FBFAF6;
  --cream-100: #F5F3EC;
  --cream-200: #ECEAE1;
  --cream-300: #DFDCD1;
  --sand-400:  #BDB9AC;

  --ink-900: #2A2A2E;
  --ink-700: #4A4A50;
  --ink-500: #74747C;
  --ink-300: #A6A6AD;
  --white:   #FFFFFF;

  --grad-brand: linear-gradient(120deg, var(--mint-300) 0%, var(--peri-300) 100%);
  --grad-brand-soft: linear-gradient(120deg, var(--mint-100) 0%, var(--peri-100) 100%);

  --bg-page: var(--cream-100);
  --text-body: var(--ink-700);

  /* ---------- Type ---------- */
  --font-display: 'Pacifico', 'Brush Script MT', cursive;
  --font-sans: 'Montserrat', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-relaxed: 1.7;
  --ls-wide: 0.08em;
  --ls-wider: 0.16em;

  /* ---------- Space / radius / shadow / motion ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-4: 16px;
  --space-6: 24px;

  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(74,74,80,0.07);
  --shadow-md: 0 8px 24px rgba(74,74,80,0.09);
  --shadow-lg: 0 18px 44px rgba(74,74,80,0.12);
  --shadow-mint: 0 12px 30px rgba(127,191,154,0.28);
  --shadow-peri: 0 12px 30px rgba(101,112,162,0.26);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;

  --container-max: 1120px;
}

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

html, body {
  margin: 0;
  background: var(--bg-page);
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-body);
}

img { max-width: 100%; }

a { color: var(--peri-500); }
a:hover { color: var(--peri-600); }

h1, h2, h3,
.display {
  font-family: var(--font-sans);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  color: var(--ink-900);
}

.accent { color: var(--peri-500); }

/* Skip link — keyboard users shouldn't have to tab the whole nav */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--white);
  color: var(--ink-900);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: 0 0 var(--radius-lg) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--peri-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Button  (from components/forms/Button.jsx)
   Rendered as <a> here — the design nested <a> inside <button>,
   which is invalid HTML and breaks keyboard activation.
   ============================================================ */
.btn {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  line-height: 1;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.btn-sm { padding: 8px 18px;  font-size: var(--text-sm); }
.btn-md { padding: 13px 28px; font-size: var(--text-base); }
.btn-lg { padding: 17px 38px; font-size: var(--text-md); }

.btn-primary {
  background: var(--peri-300);
  color: var(--white);
  border: 2px solid var(--peri-300);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-peri);
}

.btn-secondary {
  background: var(--mint-300);
  color: var(--ink-900);
  border: 2px solid var(--mint-300);
}
.btn-secondary:hover {
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mint);
}

.btn-outline {
  background: transparent;
  color: var(--peri-500);
  border: 2px solid var(--peri-300);
}
.btn-outline:hover {
  background: var(--peri-100);
  color: var(--peri-500);
  transform: translateY(-2px);
}

.btn:active { transform: scale(0.96); }

/* Nav CTA uses the deeper periwinkle for contrast on cream */
.btn-nav { background: var(--peri-500); border-color: var(--peri-500); }

/* ============================================================
   Tag  (from components/core/Tag.jsx)
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1.2;
  padding: 5px 14px;
  font-size: var(--text-xs);
}
.tag-mint    { background: var(--mint-200); color: var(--mint-600); border: 1px solid transparent; }
.tag-peri    { background: var(--peri-200); color: var(--peri-600); border: 1px solid transparent; }
.tag-outline { background: transparent; color: var(--peri-500); border: 1.5px solid var(--peri-300); }

/* ============================================================
   SectionLabel  (from components/core/SectionLabel.jsx)
   ============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0;
}

/* ============================================================
   Reveal on scroll  (from the Reveal component)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* No JS / motion-sensitive users must still see content */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none !important; }
  .btn:hover { transform: none; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 34px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  padding: 10px 34px;
  background: rgba(245,243,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--cream-300);
}

.nav__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.nav__logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: height var(--dur-base) var(--ease-out);
}
.nav.is-scrolled .nav__logo img { height: 42px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
}
.nav__link:hover { color: var(--peri-500); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -82px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: var(--grad-brand-soft);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Readability scrim — one flat wash of the brand pastel beige (--cream-100)
   at --hero-scrim opacity. Solid colour only: no gradient, no per-breakpoint
   variation. Adjust the strength with --hero-scrim on .hero__scrim below. */
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --hero-scrim: 0.88;
  background: rgba(245, 243, 236, var(--hero-scrim));
}
.hero__body {
  position: relative;
  z-index: 2;
  padding: 0 40px 72px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 18px;
}
.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero__lead {
  max-width: 460px;
  margin-top: 22px;
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-900);
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ============================================================
   Shared section shells
   ============================================================ */
.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 96px 40px;
}
.split {
  display: grid;
  gap: 56px;
  align-items: center;
}
.split--about { grid-template-columns: 0.85fr 1fr; }
.split--squad { grid-template-columns: 1fr 0.9fr; }

.portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--grad-brand-soft);
}
.portrait--shadow { box-shadow: var(--shadow-md); }
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 14px 0 20px;
}
.prose {
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-700);
  max-width: 520px;
}

/* Our mission — full-width cream band, same colour as Book your spot. */
#mission {
  background: var(--cream-50);
  max-width: none;              /* let the background span edge to edge */
}
#mission .split {
  max-width: var(--container-max);
  margin: 0 auto;               /* keep the content centred */
}

/* ---------- About ---------- */
.about__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 16px 0 20px;
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--peri-500);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* ---------- Statement ---------- */
.statement {
  padding: 110px 40px;
  text-align: center;
  background: #FCF9F3;
}
.statement__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--peri-400);
  margin: 0 0 26px;
}
.statement__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 760px;
  margin: 0 auto;
}
.statement__title .accent-mint { color: #90CEAA; }
.statement__note {
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: var(--ink-500);
  margin-top: 22px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--peri-300);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
.marquee__text {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--white);
}
.marquee__star { color: rgba(255,255,255,0.6); }

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

/* ---------- Squad ---------- */
.tag-row {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ---------- Booking ----------
   Native pricing tiers. Each card is one Acuity product; the button deep-links
   straight to that product's checkout (…/catalog/<slug>?productId=<id>).
   Per-product gradients come from the brand tokens defined below. */
.booking {
  background: var(--cream-50);
  padding: 96px 24px;
}
.booking__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.booking__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
  text-align: center;
}
.booking__lead {
  font-size: var(--text-md);
  color: var(--ink-700);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* Per-product accent gradients (from the brand colour tokens). */
.booking {
  --grad-single:  linear-gradient(150deg, #F0C6A8 0%, #C98F7C 100%);
  --grad-welcome: linear-gradient(150deg, #BCCBEC 0%, #8AA3D6 100%);
  --grad-casual:  linear-gradient(150deg, #CDE4B4 0%, #97C57C 100%);
  --grad-weekend: linear-gradient(150deg, #CDB2E2 0%, #A487C9 100%);
  --grad-season:  linear-gradient(150deg, #EBCB7C 0%, #C89A3C 100%);
}

/* ---- Groups (Single Class Pass / Packages / Subscriptions) ---- */
.tier-group { margin-top: 56px; }
.tier-group__label {
  text-align: center;
  margin-bottom: 22px;
  color: var(--peri-500);
}

/* Desktop: cards sit side by side (horizontal). Single-item groups centre. */
.tier-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  align-items: stretch;
}
.tier-grid--one { grid-template-columns: minmax(0, 420px); justify-content: center; }

/* ---- The card ---- */
.tier {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-300);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Tier face — the colourful header block. A soft-blur texture photo per tier,
   under a diagonal scrim (darker top-left, where the white name/price sit) so
   the text stays legible. The brand gradient is the fallback if the image
   fails to load. */
.tier__face {
  position: relative;
  /* Uniform top padding on every card reserves room for the ribbon, so names
     clear it and stay aligned across a row (ribbon + non-ribbon side by side). */
  padding: 46px 28px 26px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(150deg, rgba(36,36,48,0.52) 0%, rgba(36,36,48,0.24) 46%, rgba(36,36,48,0.02) 80%),
    var(--tier-img),
    var(--tier-grad, var(--grad-single));
}
.tier--single  { --tier-img: url('/assets/pink.jpg');   --tier-grad: var(--grad-single); }
.tier--welcome { --tier-img: url('/assets/blue.jpg');   --tier-grad: var(--grad-welcome); }
.tier--casual  { --tier-img: url('/assets/green.jpg');  --tier-grad: var(--grad-casual); }
.tier--weekend { --tier-img: url('/assets/purple.jpg'); --tier-grad: var(--grad-weekend); }
.tier--season  { --tier-img: url('/assets/gold.jpg');   --tier-grad: var(--grad-season); }

.tier__name {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
}
.tier__tagline {
  margin: 8px 0 0;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.tier__price {
  margin: 16px 0 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-extrabold);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--white);
}
.tier__per {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  opacity: 0.9;
}

/* Ribbon for the standout tiers */
.tier__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* White content half — checklist + button */
.tier__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px 28px;
}
.checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--ink-700);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-300);
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
}
.tier__cta {
  margin-top: auto;
  width: 100%;
}

/* ---- Mobile: immersive stacked cards (one column, taller gradient) ---- */
@media (max-width: 860px) {
  .tier-grid,
  .tier-grid--one {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .tier__face { padding: 34px 26px 28px; }
  .tier:hover { transform: none; }  /* no hover lift on touch */
}

/* ---------- Love from the squad (reviews wall / masonry) ---------- */
.reviews {
  background: var(--peri-100);   /* soft periwinkle wash, separates it from neighbours */
  padding: 96px 40px;
}
.reviews__head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 44px;
}
.reviews__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
}
.reviews__sub {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-700);
}
/* Masonry via CSS columns — each card keeps its natural aspect (no crop). */
.reviews-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  column-count: 4;
  column-gap: 18px;
}
.review {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  line-height: 0;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review img,
.review__poster {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
/* Video overlays its poster and fades in once it has loaded (lazy). */
.review--video { position: relative; }
.review__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.review__media.is-ready { opacity: 1; }

@media (max-width: 1000px) { .reviews-grid { column-count: 3; } }
@media (max-width: 640px)  {
  .reviews { padding: 72px 20px; }
  .reviews-grid { column-count: 2; column-gap: 12px; }
  .review { margin-bottom: 12px; }
  .review:hover { transform: none; }
}

/* ---------- Feel the vibe (reels slideshow) ---------- */
.vibe {
  padding: 96px 0 88px;
  overflow: hidden;   /* arrows/cards can bleed to the edge without a page scrollbar */
}
.vibe__head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}
.vibe__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
}
.vibe__sub {
  margin: 14px 0 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--peri-500);
}

.reels-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* The scroll track — horizontal, snap, hidden scrollbar. Side padding uses the
   scroll gutter so the first/last card can centre nicely. */
.reels {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 40px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels::-webkit-scrollbar { display: none; }

.reel {
  position: relative;
  flex: 0 0 auto;
  width: 288px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-200);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.reel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Poster always renders (shows now, before any videos exist). */
.reel__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
/* Video layers over the poster and only fades in once JS confirms it loaded,
   so a missing reelN.mp4 leaves the poster showing (never a black box). */
.reel__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.reel__media.is-ready { opacity: 1; }
.reel { cursor: pointer; }   /* tap the video to play / pause */

/* Bottom scrim so white controls stay legible over any frame */
.reel__scrim {
  position: absolute;
  inset: 45% 0 0 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(36,36,48,0) 0%, rgba(36,36,48,0.6) 100%);
  pointer-events: none;
}

/* Play/pause + mute controls, bottom-left */
.reel__controls {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.reel__btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.reel__btn:hover { transform: scale(1.08); background: var(--white); }
.reel__btn .ic { width: 20px; height: 20px; display: none; }
/* Icon reflects current state: playing→pause icon, muted→muted icon */
.reel.is-paused    .ic-play    { display: block; }
.reel:not(.is-paused) .ic-pause { display: block; }
.reel.is-muted     .ic-muted   { display: block; }
.reel:not(.is-muted) .ic-unmuted { display: block; }

/* Instagram link pill, bottom-right */
.reel__ig {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.reel__ig:hover { transform: scale(1.04); background: var(--white); color: var(--ink-900); }

/* Prev/next arrows — desktop affordance; native swipe carries mobile. */
.reels-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--cream-300);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink-900);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.reels-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.reels-arrow--prev { left: 6px; }
.reels-arrow--next { right: 6px; }

.vibe__cta {
  text-align: center;
  margin-top: 44px;
  padding: 0 24px;
}

@media (max-width: 860px) {
  .vibe { padding: 72px 0 64px; }
  .reels { padding: 6px 20px 8px; }
  .reel { width: 72vw; max-width: 300px; }
  .reel:hover { transform: none; }
  .reels-arrow { display: none; }   /* swipe instead */
}

/* ---------- Footer ---------- */
.footer {
  background: var(--grad-brand);
  padding: 64px 40px 44px;
  text-align: center;
}
.footer__logo img {
  height: 72px;
  width: auto;
  display: inline-block;
}
.footer__address {
  color: var(--white);
  font-size: var(--text-sm);
  margin-top: 20px;
  opacity: 0.95;
}
.footer__social {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
}
.footer__social a {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}
.footer__social a:hover { opacity: 1; color: var(--white); text-decoration: underline; }
.footer__legal {
  color: var(--white);
  opacity: 0.6;
  font-size: var(--text-xs);
  margin-top: 30px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .split--about,
  .split--squad { grid-template-columns: 1fr; }

  /* Photo below the copy reads better than above it on narrow screens */
  .split--about .portrait { order: 2; }

  .section { padding: 72px 24px; }
  .statement { padding: 84px 24px; }
  .hero__body { padding: 0 24px 56px; }
  .nav { padding: 14px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav__links { gap: 16px; }
}

/* The four nav links + CTA won't fit next to the logo on a phone.
   Keep the CTA (the thing that converts), drop the section links —
   the page is short and scrolls fine. */
@media (max-width: 640px) {
  .nav__link { display: none; }
  .nav__logo img { height: 42px; }
  .hero { min-height: 88vh; }
  .hero__actions .btn { flex: 1 1 100%; }
  .booking { padding: 72px 16px; }
}
