/* ═══════════════════════════════════════════════
   THE FRAMEHOUSE STUDIOS — set-catalog site
   palette: gold × near-black ink, ivory type
   ═══════════════════════════════════════════════ */

:root {
  --ink: #0b0a08;
  --char: #14120e;
  --card: #1a1712;
  --line: rgba(201, 160, 92, 0.18);
  --gold: #c9a05c;
  --gold-hi: #e3c08d;
  --terra: #b4592f;
  --wa: #25d366;        /* official WhatsApp green */
  --wa-dark: #1da851;
  --ivory: #f3ede4;
  --muted: #9b9186;
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Pinyon Script", cursive;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

/* keeps [hidden] winning over any class rule that sets display */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
html:has(.preloader:not(.is-done)) { overflow: hidden; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--font-display); font-style: italic; }

.index {
  color: var(--gold-hi);
  font-size: 0.72em;
  vertical-align: super;
  margin-right: 0.75em;
  font-family: var(--font-display);
  font-style: italic;
}

/* section label shared look */
.sets__label, .uses__label, .bts__label, .props__label,
.about__label, .book__label {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  pointer-events: none;
}
.preloader__panel {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--ink);
  border-color: var(--line);
}
.preloader__panel--top { top: 0; border-bottom: 1px solid var(--line); }
.preloader__panel--bottom { bottom: 0; }
.preloader__inner { position: relative; z-index: 2; text-align: center; }
.preloader__mark {
  display: block;
  height: clamp(100px, 18vw, 160px);
  width: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
}
.preloader__wordmark {
  display: block;
  height: clamp(72px, 13vw, 110px);
  width: auto;
  margin: 1.4rem auto 0;
  opacity: 0;
  transform: translateY(28px);
}
.preloader__count {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--muted);
}
.preloader.is-done { display: none; }

/* ═══════════ CURSOR / GRAIN ═══════════ */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  body, a, button, select, input, textarea, [data-hover] { cursor: none; }
  .cursor {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 190; /* above lightbox (180), below preloader (200) */
    width: 34px; height: 34px;
    border: 1px solid rgba(243, 237, 228, 0.45);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s;
  }
  .cursor.is-hover {
    width: 60px; height: 60px;
    background: rgba(201, 160, 92, 0.16);
    border-color: var(--gold-hi);
  }
  .cursor-dot {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 191;
    width: 5px; height: 5px;
    background: var(--gold-hi);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
}
.grain {
  position: fixed; inset: -50%; z-index: 120;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, -3%); }
  80% { transform: translate(4%, 2%); }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  padding: 0.7rem var(--pad);
  border-bottom-color: var(--line);
}
.nav__logo { display: inline-flex; align-items: center; gap: 0.9rem; }
.nav__logo-mark { height: 2.5rem; width: auto; }
.nav__logo-text { height: 2.3rem; width: auto; opacity: 0.95; }
.nav__links { display: flex; gap: 1.8rem; }
.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav__link:hover { color: var(--gold-hi); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.25s;
}
.nav__cta:hover { background: var(--gold-hi); }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__logo-text { display: none; }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 3rem;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn--gold { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn--gold:hover { background: var(--gold-hi); }
.btn--ghost { border-color: var(--line); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(6rem, 12vh, 9rem) var(--pad) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 66%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.94) 0%, rgba(11, 10, 8, 0.72) 45%, rgba(11, 10, 8, 0.35) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%);
}
.hero__content { max-width: 46rem; position: relative; }
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.hero__row { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__word { display: inline-block; }
.hero__word--serif { font-style: italic; color: var(--gold); }
.hero__word .char { display: inline-block; white-space: pre; }
.hero__sub {
  max-width: 30rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__reel {
  position: absolute;
  right: var(--pad); bottom: clamp(4rem, 10vh, 7rem);
  width: clamp(180px, 17vw, 250px);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  padding: 0.4rem;
  background: rgba(11, 10, 8, 0.5);
  backdrop-filter: blur(6px);
}
.hero__reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__reel-tag {
  position: absolute; left: 0.4rem; right: 0.4rem; bottom: 0.4rem;
  padding: 0.5rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(11, 10, 8, 0.85), transparent);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-hi);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (max-width: 860px) {
  .hero__reel { display: none; }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--char);
}
.marquee__track { display: flex; align-items: center; gap: 2.5rem; width: max-content; will-change: transform; }
.marquee__item {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
}
.marquee__item--serif {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--gold-hi);
}
.marquee__dot { color: var(--gold); font-size: 0.7em; }

/* ═══════════ STATS ═══════════ */
.stats { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2.5rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.stat { text-align: left; }
.js .stat { opacity: 0; transform: translateY(24px); }
.stat__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
}
.stat__prefix, .stat__suffix { font-size: 0.45em; color: var(--gold-hi); font-style: italic; }
.stat__label { margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }

/* ═══════════ SETS ═══════════ */
.sets { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.sets__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.sets__title em { color: var(--gold); }
.sets__list { display: flex; flex-direction: column; gap: clamp(4rem, 8vw, 7rem); }

.set {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.set:nth-child(even) .set__media { order: 2; }
.js .set { opacity: 0; transform: translateY(40px); }

.set__media { display: grid; gap: 0.8rem; }
.set__cover {
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
}
.set__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.set:hover .set__cover img { transform: scale(1.045); }
.set__thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0.8rem; }
.set__thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
  transition: transform 0.6s ease, border-color 0.4s;
}
.set__thumbs img:hover { transform: translateY(-4px); border-color: var(--gold); }
.set__thumb-measure { position: relative; display: block; }
.set__thumb-measure span {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ivory);
  background: linear-gradient(transparent, rgba(10, 9, 8, 0.85));
  padding: 1rem 0.2rem 0.4rem;
  pointer-events: none;
}

.set__no {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 0.7rem;
}
.set__badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 0.9rem;
}
.set__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.08;
}
.set__desc { margin-top: 1rem; color: var(--muted); max-width: 30rem; }
.set__desc em { color: var(--gold-hi); font-style: normal; }
.set__meta {
  display: flex; align-items: center; gap: 1.6rem;
  margin-top: 1.6rem; flex-wrap: wrap;
}
.set__dims {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}
.set__book {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
  transition: color 0.25s, border-color 0.25s;
}
.set__book:hover { color: var(--gold-hi); border-color: var(--gold); }
.set--signature .set__cover { box-shadow: 0 0 0 1px var(--gold), 0 30px 80px rgba(201, 160, 92, 0.08); }

@media (max-width: 780px) {
  .set { grid-template-columns: 1fr; }
  .set:nth-child(even) .set__media { order: 0; }
}

/* ═══════════ USES ═══════════ */
.uses {
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
  background: var(--char);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.uses__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  max-width: 54rem;
}
.uses__text em { color: var(--gold); }
.uses__text strong { font-weight: 500; color: var(--ivory); }
.uses__text .w { display: inline-block; }
/* six tiles: only ever 6 / 3 / 2 / 1 per row so no row is left part-empty */
.uses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 1600px) { .uses__grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 900px) { .uses__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .uses__grid { grid-template-columns: 1fr; } }
.use { background: var(--char); padding: 1.6rem 1.5rem; transition: background 0.3s; }
.use:hover { background: var(--card); }
.js .use { opacity: 0; transform: translateY(24px); }
.use h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; }
.use p { margin-top: 0.4rem; font-size: 0.82rem; color: var(--gold-hi); letter-spacing: 0.06em; }

/* ═══════════ BTS ═══════════ */
.bts { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.bts__grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.bts__video { position: relative; border: 1px solid var(--line); aspect-ratio: 9 / 16; max-height: 640px; }
.bts__video video { width: 100%; height: 100%; object-fit: cover; }
.bts__video figcaption, .bts__shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(11, 10, 8, 0.85), transparent);
}
.bts__shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.bts__shot { position: relative; border: 1px solid var(--line); overflow: hidden; }
.bts__shot img { width: 100%; height: 100%; object-fit: cover; }
.bts__note { margin-top: 2rem; color: var(--muted); max-width: 44rem; }
@media (max-width: 780px) {
  .bts__grid { grid-template-columns: 1fr; }
  .bts__video { max-width: 340px; }
  .bts__shots { grid-template-columns: 1fr; }
}

/* ═══════════ PROPS ═══════════ */
.props {
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
  background: var(--char);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.props__row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.props__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.45;
}
.props__text em { color: var(--gold); }
.props__imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.props__imgs img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
}
.props__imgs img:nth-child(2) { transform: translateY(1.4rem); }
.props__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: clamp(2rem, 4vw, 3.2rem);
}
.props__gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
  transition: transform 0.6s ease, border-color 0.4s;
}
.props__gallery img:hover { transform: translateY(-4px); border-color: var(--gold); }
@media (max-width: 780px) {
  .props__row { grid-template-columns: 1fr; }
  .props__gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 180;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(0.8rem, 2vh, 1.6rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 9, 8, 0.94);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox:focus { outline: none; }

.lightbox__inner {
  display: flex; flex-direction: column; align-items: center;
  min-height: 0;
  text-align: center;
}
.lightbox__inner img {
  max-width: min(92vw, 68rem);
  max-height: 62vh;
  width: auto; height: auto;
  border: 1px solid var(--line);
  transform: scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
}
.lightbox.is-open .lightbox__inner img { transform: scale(1); }
.lightbox__inner img.is-loaded { opacity: 1; }
.lightbox__inner figcaption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}

.lightbox__count {
  position: absolute; top: 1.6rem; left: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ivory);
  background: none; border: none;
  padding: 0.4rem;
  transition: color 0.25s, transform 0.25s;
}
.lightbox__close:hover { color: var(--gold-hi); transform: rotate(90deg); }
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible,
.lightbox__thumb:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.lightbox__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
  color: var(--ivory);
  background: rgba(20, 17, 14, 0.6);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.lightbox__nav:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.lightbox__nav--prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 3vw, 2.5rem); }

.lightbox__thumbs {
  display: flex; gap: 0.6rem;
  max-width: min(92vw, 68rem);
  overflow-x: auto;
  padding: 0.25rem;
  scrollbar-width: none;
}
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumb {
  flex: 0 0 auto;
  width: 74px; height: 74px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  opacity: 0.5;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb:hover { opacity: 1; transform: translateY(-2px); }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--gold); }

@media (max-width: 700px) {
  .lightbox__inner img { max-height: 52vh; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox__thumb { width: 54px; height: 54px; }
  .lightbox__count { top: 1.3rem; left: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__inner img, .lightbox__close,
  .lightbox__nav, .lightbox__thumb { transition: none; }
}

/* ═══════════ ABOUT ═══════════ */
.about {
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
  background: var(--char);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  max-width: 54rem;
}
.about__text em { color: var(--gold); }
.about__text .w { display: inline-block; }
.about__founders {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  margin-top: 2.2rem;
  font-size: 0.9rem;
}
.about__founders span { color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.about__founders a {
  color: var(--gold-hi);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s;
}
.about__founders a:hover { border-color: var(--gold); }

/* ═══════════ BOOKING ═══════════ */
.book { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.book__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.book__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
}
.book__title em { color: var(--gold); }
.book__blurb { margin-top: 1.2rem; color: var(--muted); max-width: 26rem; }
.book__contact { list-style: none; margin-top: 2.4rem; overflow-wrap: anywhere; }
.book__contact li {
  display: flex; gap: 1.2rem; align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 160, 92, 0.1);
  font-size: 0.95rem;
}
.book__contact span {
  flex: 0 0 5.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.book__contact a { color: var(--gold-hi); }
.book__contact a:hover { color: var(--gold); }

.book__wa {
  background: var(--char);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3.4vw, 3rem);
  display: flex; flex-direction: column;
  align-items: flex-start;
  align-self: start;
}
.book__wa-mark { width: 46px; height: 46px; color: var(--wa); }
.book__wa-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-top: 1.2rem;
}
.book__wa-text { margin-top: 0.9rem; color: var(--muted); max-width: 30rem; }
.book__wa-btn { margin-top: 1.9rem; }
.book__wa-alt { margin-top: 1.3rem; font-size: 0.88rem; color: var(--muted); }
.book__wa-alt a { color: var(--gold-hi); }
.book__wa-alt a:hover { color: var(--gold); }
@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; }
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 130; /* over content + grain, under lightbox (180) */
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.15rem;
  background: var(--wa);
  color: #fff;
  border-radius: 3rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.25s;
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px); }
.wa-float__icon { width: 26px; height: 26px; flex: 0 0 auto; }
.wa-float__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.wa-float:focus-visible { outline: 2px solid var(--ivory); outline-offset: 3px; }
@media (max-width: 620px) {
  .wa-float { padding: 0.9rem; }
  .wa-float__label { display: none; } /* icon-only so it never covers content */
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: none; }
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad) 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.footer__brand { display: flex; align-items: center; gap: 1.1rem; }
.footer__mark { height: 3.2rem; width: auto; }
.footer__name { height: 2.9rem; width: auto; opacity: 0.95; }
.footer__socials { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__socials a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.footer__socials a:hover { color: var(--gold-hi); }
.footer__legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid rgba(201, 160, 92, 0.08);
  padding-top: 1.4rem;
}
.footer__credit { opacity: 0.7; }

/* ═══════════ REVEAL STATES (js-scoped so no-JS stays visible) ═══════════ */
.js [data-fade] { opacity: 0; transform: translateY(28px); }
.js .hero [data-fade] { transform: translateY(18px); }

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .hero__scroll { animation: none; }
  .js [data-fade], .js .set, .js .stat, .js .use {
    opacity: 1 !important;
    transform: none !important;
  }
  /* the custom cursor never initialises here, so give the native one back */
  body, a, button, select, input, textarea, [data-hover] { cursor: auto; }
  .cursor, .cursor-dot { display: none !important; }
}
