/* ==========================================================================
   CEWÁMICA — design system v2
   typewriter monospace · opacity-led hierarchy · breathing space
   ========================================================================== */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Typewriter';
  src: url('fonts/Typewriter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typewriter';
  src: url('fonts/Typewriter-Medium.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Courier Prime — self-hosted woff2 (11KB each), no external round-trips.
   Latin subset only; italics intentionally absent (site is italic-free). */
@font-face {
  font-family: 'Courier Prime';
  src: url('fonts/CourierPrime-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Courier Prime';
  src: url('fonts/CourierPrime-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  /* Warm cream palette — feminine, calm */
  --bg:        #F5E8D9;          /* page background — like aged paper */
  --bg-soft:   #EFDFCD;          /* secondary surfaces */
  --bg-deep:   #E7D2BB;          /* contact area */
  --ink:       #1F1611;          /* near-black, warm-brown */
  --clay:      #3D2418;          /* deep clay accents */
  --orange:    #C24A2A;          /* whisper accent — used very sparingly */
  --cream:     #F7ECDF;          /* light type on clay fills (hover/active) */

  /* Opacity-led hierarchy */
  --o-100: 1.0;
  --o-85:  0.82;
  --o-65:  0.62;
  --o-45:  0.42;
  --o-30:  0.28;

  --font: 'Typewriter', ui-monospace, 'Courier New', monospace;

  --max: 1280px;
  --col-narrow: 540px;    /* letter-width column */
  --col-mid: 720px;
  --gutter: clamp(24px, 5vw, 64px);

  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quiet: cubic-bezier(0.65, 0, 0.35, 1);

  --line: 1px solid rgba(31, 22, 17, 0.14);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
}
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.4s var(--ease-soft); }
a:hover { opacity: 0.6; }
strong { font-weight: 600; }
button { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
::selection { background: rgba(194, 74, 42, 0.22); color: var(--ink); }

/* Opacity dimming */
.dim { opacity: var(--o-65); }
.medium { font-weight: 600; }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; left: 0; right: 0; top: 0;
  height: 1px;
  background: rgba(31, 22, 17, 0.06);
  z-index: 100;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: var(--ink);
  opacity: 0.5;
  transition: width 0.15s linear;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; left: 0; right: 0; top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--ink);
  pointer-events: none;
  transition: background 0.5s var(--ease-soft), backdrop-filter 0.5s var(--ease-soft);
}
.nav > * { pointer-events: auto; }
.nav.is-scrolled {
  background: rgba(245, 232, 217, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--line);
}
/* Over hero — light text on dark photos */
.nav:not(.is-scrolled) { color: #F5E8D9; }
.nav:not(.is-scrolled) .nav__center img { filter: brightness(0) invert(1); opacity: 0.75; }

.nav__brand {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav__brand-text { font-weight: 600; }

.nav__center { display: inline-flex; justify-content: center; }
.nav__center img {
  height: 24px; width: auto;
  transition: opacity 0.4s var(--ease-soft);
}
.nav:not(.is-scrolled) .nav__brand,
.nav:not(.is-scrolled) .nav__link {
  text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

.nav__links {
  display: flex; gap: clamp(18px, 2.6vw, 36px);
  justify-content: flex-end;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.nav__link {
  position: relative;
  opacity: var(--o-85);
  transition: opacity 0.4s var(--ease-soft);
}
.nav__link::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-soft);
  opacity: 0.6;
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link.is-current::after {
  transform: scaleX(1); transform-origin: left;
}

.nav__menu-toggle {
  display: none;
  width: 24px; height: 24px;
  position: relative;
  margin-left: auto;
}
.nav__menu-toggle span {
  position: absolute; left: 2px; right: 2px; height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease-soft);
}
.nav__menu-toggle span:nth-child(1) { top: 9px; }
.nav__menu-toggle span:nth-child(2) { top: 15px; }
.nav__menu-toggle.is-open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav__menu-toggle.is-open span:nth-child(2) { top: 12px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(245, 232, 217, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 55;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-soft);
}
.mobile-drawer.is-open {
  display: flex; opacity: 1; pointer-events: auto;
}
.mobile-drawer__inner {
  display: flex; flex-direction: column; gap: 28px;
  text-align: center;
  font-family: var(--font);
}
.mobile-drawer a {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.mobile-drawer a:hover { opacity: 0.55; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #1a1008;
  color: #F5E8D9;
  isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; }

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s var(--ease-soft), visibility 0s linear 1.8s;
  z-index: 1;
}
.slide.is-active {
  opacity: 1; visibility: visible; z-index: 2;
  transition: opacity 1.8s var(--ease-soft), visibility 0s linear 0s;
}

.slide__image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.04);
  transform-origin: center;
  transition: transform 0.6s var(--ease-soft);
}
.slide.is-active .slide__image {
  animation: heroDrift 12s ease-out forwards;
}
@keyframes heroDrift {
  0%   { transform: scale(1.04) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%, -1%); }
}

/* Video variant — atmospheric option.
   HOME/HERO serves TWO cuts of each clip (picked by JS at boot):
   native vertical 1080x1920 on portrait viewports, widescreen
   1920x1080 on landscape. cover therefore fills the screen on every
   device with the cut that matches its orientation — the phone shows
   the vertical video the way it was shot, edge to edge. */
.slide__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
  /* No double ken-burns — the videos already carry motion */
}
/* Slightly faster cross-fade in video mode so transitions feel breath-like */
.hero[data-mode="video"] .slide {
  transition: opacity 1.2s var(--ease-soft), visibility 0s linear 1.2s;
}
.hero[data-mode="video"] .slide.is-active {
  transition: opacity 1.2s var(--ease-soft), visibility 0s linear 0s;
}

.slide__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(20,10,4,0.12) 0%, rgba(20,10,4,0.42) 100%),
    linear-gradient(180deg, rgba(20,10,4,0.30) 0%, rgba(20,10,4,0) 22%, rgba(20,10,4,0) 78%, rgba(20,10,4,0.32) 100%);
  pointer-events: none;
}

/* Centered typewriter fragment */
.hero__fragment {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex; justify-content: center;
  z-index: 5;
  pointer-events: none;
  padding: 0 24px;
}
.frag-stack {
  position: relative;
  min-height: 200px;
  width: 100%;
  max-width: 720px;
  display: grid; place-items: center;
}
.frag {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font);
  color: #F5E8D9;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.4s var(--ease-soft), transform 1.4s var(--ease-soft);
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.45);
}
.frag.is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.frag__line {
  display: block;
  letter-spacing: 0.01em;
}
.frag__line--lead {
  font-weight: 600;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.25;
  margin-bottom: 0.18em;
}
.frag__line--sub {
  font-weight: 400;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.35;
  opacity: 0.86;
}

/* Hero meta — corners */
.hero__meta {
  position: absolute;
  bottom: clamp(74px, 12vh, 110px);
  z-index: 4;
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #F5E8D9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.hero__meta--bl { left: clamp(20px, 4vw, 56px); }
.hero__meta--br { right: clamp(20px, 4vw, 56px); text-align: right; }
.hero__meta .dim { opacity: 0.6; }

/* Dots */
.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: clamp(36px, 5vh, 56px);
  z-index: 5;
  display: flex; justify-content: center; gap: 10px;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(245, 232, 217, 0.4);
  transition:
    background 0.5s var(--ease-soft),
    width 0.5s var(--ease-soft),
    transform 0.5s var(--ease-soft);
}
.dot:hover { background: rgba(245, 232, 217, 0.75); transform: scale(1.2); }
.dot.is-active {
  background: rgba(245, 232, 217, 0.95);
  width: 18px;
  border-radius: 2px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: clamp(8px, 1.5vh, 18px);
  transform: translateX(-50%);
  display: none; /* dots already serve as cue; keep this for accessibility */
  flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 232, 217, 0.55);
  z-index: 5;
}

/* ==========================================================================
   STRIP — transition between hero and content
   ========================================================================== */
.strip {
  padding: clamp(60px, 10vh, 110px) 0 clamp(40px, 7vh, 80px);
  background: var(--bg);
  border-bottom: var(--line);
}
.strip__inner {
  max-width: var(--col-mid);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.strip__copy {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  letter-spacing: 0.005em;
  margin: 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  position: relative;
  padding: clamp(80px, 14vh, 180px) 0;
  background: var(--bg);
}
.section--collections { background: var(--bg-soft); }
.section--contact     { background: var(--bg-deep); }

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__inner--center {
  max-width: var(--col-mid);
  text-align: center;
}

.section__head {
  max-width: var(--col-mid);
  margin: 0 auto clamp(40px, 7vh, 90px);
  text-align: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: var(--o-65);
  margin-bottom: 28px;
}

/* Display heading — typewriter, centered, generous line breaks */
.display {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}
.display .line {
  display: block;
}
.display .line.dim { font-weight: 400; opacity: var(--o-65); }

/* Body copy default within sections */
.section p {
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 1.1em;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

/* ==========================================================================
   EXPERIENCES
   ========================================================================== */
.experiences__intro {
  max-width: var(--col-mid);
  margin: 0 auto clamp(60px, 10vh, 110px);
  text-align: center;
}
.experiences__intro p { font-size: 16px; }

.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vh, 64px);
  max-width: var(--col-mid);
  margin: 0 auto;
}

.offer {
  position: relative;
  padding: clamp(32px, 5vw, 56px) 0;
  border-top: var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.offer:last-child { border-bottom: var(--line); }
.offer__head {
  display: flex; flex-direction: column; gap: 8px;
}
.offer__index {
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: var(--o-45);
}
.offer__title {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.005em;
}
.offer__title .medium { font-weight: 600; }
.offer__meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: var(--o-45);
  margin-top: 2px;
}
.offer__body p {
  margin: 0 0 0.9em;
  font-size: 15px;
  line-height: 1.85;
}
.offer__body p:last-child { margin-bottom: 0; }
.offer__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-top: 18px;
  border-top: var(--line);
  flex-wrap: wrap;
}
.offer__price {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.offer__lang {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.offer__cta {
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Tagline — italic subtitle right below offer title */
.offer__tagline {
  margin: 6px 0 6px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.4;
  color: var(--clay);
  font-style: italic;
  opacity: var(--o-85);
}
.offer__tagline em { font-style: italic; }

/* WhatsApp threshold CTA at the bottom of each offer — a quiet, full-width
   gesture that closes the card. */
.offer__whatsapp {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.005em;
  font-weight: 600;
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: opacity 0.4s var(--ease-soft);
}
.offer__whatsapp:hover { opacity: 0.65; }
.offer__whatsapp:hover 
/* Aside footnote — "* No previous experience..." */
.footnote {
  margin-top: 2.2em !important;
  font-size: 13px;
  line-height: 1.7;
  opacity: var(--o-45);
  font-style: italic;
}

/* ABOUT inside Experiences */
.about {
  margin-top: clamp(80px, 12vh, 140px);
}
.about__divider {
  text-align: center;
  font-size: 14px;
  opacity: var(--o-30);
  margin-bottom: clamp(40px, 7vh, 80px);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.about__media {
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}
.about__media figcaption {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
}
.about__copy { padding-top: 8px; }
.about__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  margin: 16px 0 24px;
}
.about__title .line { display: block; }
.about__body p {
  font-size: 15px;
  line-height: 1.85;
}
.about__body .signature {
  margin-top: 1.6em;
  font-weight: 600;
  opacity: var(--o-85);
}

/* ==========================================================================
   COLLECTIONS
   ========================================================================== */
.collection {
  margin: clamp(80px, 12vh, 140px) auto 0;
  max-width: var(--max);
}
.collection__head {
  max-width: var(--col-mid);
  margin: 0 auto clamp(40px, 6vh, 70px);
  text-align: center;
}
.collection__title-row {
  display: inline-flex; align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.collection__index {
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: var(--o-45);
}
.collection__title {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.005em;
}
.collection__title .medium { font-weight: 600; }
.collection__lede {
  max-width: 560px;
  margin: 0 auto 1em;
  font-size: 15px;
  line-height: 1.85;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.collection__grid--large {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.piece {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  aspect-ratio: 4 / 5;
  cursor: pointer;
}
.piece img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-soft), filter 0.6s ease;
  filter: saturate(0.95);
}
.piece:hover img { transform: scale(1.04); filter: saturate(1.05); }
.piece figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 16px 14px;
  display: flex; gap: 12px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #F5E8D9;
  background: linear-gradient(180deg, rgba(20,10,4,0) 0%, rgba(20,10,4,0.72) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
}
.piece:hover figcaption { opacity: 1; transform: none; }
.piece figcaption span {
  opacity: 0.7;
  font-style: normal;
}

.collection__note {
  margin: clamp(60px, 10vh, 100px) auto 0;
  max-width: var(--col-mid);
  text-align: center;
  font-size: 14px;
  line-height: 1.85;
}
.collection__note a.collection__enquire {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  font-size: 13px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__lede {
  max-width: 520px;
  margin: 28px auto 0;
  font-size: 15px;
  line-height: 1.85;
}
.contact__cta-wrap { margin: 36px 0 8px; }
.contact__cta {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.4s var(--ease-soft);
}
.contact__cta:hover { opacity: 0.6; }

.contact__sep {
  margin: clamp(50px, 8vh, 80px) auto;
  font-size: 14px;
  opacity: var(--o-30);
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
  padding-top: 36px;
  border-top: var(--line);
  max-width: 900px;
  margin: 0 auto;
}
.contact__col p { margin: 0; font-size: 13px; line-height: 1.9; }
.contact__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.contact__col a { font-size: 13px; }

/* ==========================================================================
   FOOTER — small details + giant wordmark sign-off
   ========================================================================== */
.foot {
  position: relative;
  background: var(--bg-deep);
  padding: 28px 0 0;
  border-top: var(--line);
  /* No overflow:hidden here — letter clipping for the slide-up animation
     lives on .gw__letter instead, so side bearings never get truncated. */
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 24px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Giant wordmark — centered, generous side padding so glyph side bearings
   never touch the viewport edge. Sized so 8 letters always fit on one line. */
.foot__giant {
  position: relative;
  padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 80px) clamp(20px, 3vw, 40px);
  text-align: center;
  line-height: 0.92;
}
.giant-wordmark {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 100%;
  font-family: var(--font);
  font-weight: 600;
  /* Sized so even on the widest desktop the 8 monospaced letters fit
     comfortably between the side paddings (about 16vw on a 1440 viewport). */
  font-size: clamp(56px, 16vw, 210px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--clay);
  user-select: none;
}
.gw__letter {
  display: inline-block;
  overflow: hidden;               /* clip the inner letter while it slides */
  padding: 0 0 0.06em 0;          /* room for descenders + slide travel */
  vertical-align: bottom;
}
.gw__letter > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease-out;
  transition-delay: calc(var(--idx, 0) * 65ms);
}
.foot__giant.is-in .gw__letter > span {
  transform: translateY(0);
  opacity: 1;
}

/* hover replay — each letter dips and re-rises */
.foot__giant:hover .gw__letter > span {
  animation: gwBounce 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--idx, 0) * 50ms);
}
@keyframes gwBounce {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(60%); }
  70%  { transform: translateY(-4%); }
  100% { transform: translateY(0); }
}

@media (max-width: 640px) {
  .foot__giant { padding-left: clamp(20px, 4vw, 32px); padding-right: clamp(20px, 4vw, 32px); }
  .giant-wordmark {
    font-size: clamp(44px, 17vw, 110px);
    letter-spacing: -0.025em;
  }
}

.foot__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.foot__wordmark { font-weight: 600; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu-toggle { display: block; }
  .nav { grid-template-columns: 1fr auto auto; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 380px; margin: 0 auto; }

  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .collection__grid--large { grid-template-columns: 1fr; max-width: 520px; }

  .contact__details { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .foot__row { flex-direction: column; gap: 4px; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .frag-stack { min-height: 160px; }
  .frag__line--lead { font-size: 28px; }
  .frag__line--sub  { font-size: 18px; }
  .hero__meta { font-size: 10px; bottom: 92px; }
  .hero__meta--bl, .hero__meta--br { left: 20px; right: 20px; }
  .hero__meta--bl span { display: block; }
  .hero__meta--br { text-align: right; }
  .offer__foot { flex-direction: column; align-items: flex-start; }
  .contact__details { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .contact__details .contact__col p { margin: 0 auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .slide.is-active .slide__image { animation: none; transform: scale(1.04); }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   OPTION 2 ONLY — Courier Prime typography (data-option="2" on body)
   Courier Prime has weights 400 + 700 (no 600 like Typewriter), and real
   italic. Map emphasis classes to 700, give italics breathing room, and
   open letter-spacing slightly since Courier Prime reads denser.
   ========================================================================== */
[data-option="2"] {
  --font: 'Courier Prime', 'Courier New', ui-monospace, monospace;
}
[data-option="2"] body { letter-spacing: 0.012em; }

/* All emphasis classes — Typewriter used 600, Courier Prime needs 700 */
[data-option="2"] .medium,
[data-option="2"] .nav__brand-text,
[data-option="2"] .mobile-drawer a,
[data-option="2"] .display,
[data-option="2"] .frag__line--lead,
[data-option="2"] .offer__title .medium,
[data-option="2"] .offer__price,
[data-option="2"] .collection__title .medium,
[data-option="2"] .about__title,
[data-option="2"] .foot__wordmark,
[data-option="2"] .giant-wordmark,
[data-option="2"] .about__body .signature,
[data-option="2"] .contact__cta { font-weight: 700; }

/* Display lines that were dimmed (regular) stay 400 — preserves the
   typewriter "afterthought" pacing. */
[data-option="2"] .display .line.dim,
[data-option="2"] .frag__line--sub { font-weight: 400; }

/* Courier Prime has true italic — use it for the running em that I had
   to leave alone with the Typewriter set. */
[data-option="2"] em { font-style: italic; font-weight: inherit; }

/* Slightly tighten the giant footer wordmark — Courier Prime's bold is
   chunkier than Typewriter's medium, so a touch less letter-spacing
   keeps it from feeling heavy. */
[data-option="2"] .giant-wordmark { letter-spacing: -0.045em; }

/* ==========================================================================
   GLOBAL — 4 px soft corners on EVERY photo across the site.
   Hero video/photo backgrounds stay full-bleed; everything that reads as a
   discrete "image" gets the soft rounding.
   ========================================================================== */
.piece,
.piece img,
.about__media,
.about__media img,
.experiences__atmosphere,
.experiences__atmosphere img,
.offer__media,
.offer__media-video {
  border-radius: 4px;
  overflow: hidden;
}
.piece figcaption {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* ==========================================================================
   ATMOSPHERIC STRIP between intro + offers
   ========================================================================== */
.experiences__atmosphere {
  margin: clamp(40px, 8vh, 90px) auto clamp(40px, 6vh, 70px);
  max-width: 720px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
}
.experiences__atmosphere img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s var(--ease-soft);
}
.experiences__atmosphere:hover img { transform: scale(1.04); }

/* ==========================================================================
   OFFER — clickable title + in-place disclosure
   ========================================================================== */
.offer { position: relative; }

/* Button-wrapped title (entire title row is the affordance) */
.offer__title-btn {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  transition: opacity 0.4s var(--ease-soft);
}
.offer__title-btn:hover { opacity: 0.85; }
.offer__title-btn .offer__title { margin: 0; }

/* "Explore →" pill button — real interactive surface with four states.
   default → hover (fill) → active (pressed) → open (inverted + label swap) */
.offer__explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  background: transparent;
  border: 1px solid rgba(110, 58, 34, 0.42);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-soft),
    color 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft),
    transform 0.25s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft);
  user-select: none;
}
/* hover */
.offer__title-btn:hover .offer__explore {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
  box-shadow: 0 6px 18px -10px rgba(110, 58, 34, 0.55);
}
/* active / pressed */
.offer__title-btn:active .offer__explore {
  transform: translateY(1px);
  box-shadow: 0 2px 8px -6px rgba(110, 58, 34, 0.5);
}
/* keyboard focus — same look as hover but with a clear outline ring */
.offer__title-btn:focus-visible .offer__explore {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
  outline: 2px solid rgba(110, 58, 34, 0.35);
  outline-offset: 3px;
}
.offer__title-btn { outline: none; }   /* the pill carries the focus ring */
/* open state: stays filled (persistent "on" indicator), label reads "close".
   The label IS the state signal — it must be visible at every breakpoint. */
.offer.is-open .offer__explore {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
}
.offer__explore-label--open { display: none; }
.offer.is-open .offer__explore-label--closed { display: none; }
.offer.is-open .offer__explore-label--open { display: inline; }

/* Hide the bottom WhatsApp link when expanded — the same CTA repeats inside */
.offer.is-open > .offer__whatsapp { opacity: 0.35; }

/* The disclosure panel — always in DOM, grid-row 0→1 animates height */
.offer__expand {
  scroll-margin-top: 90px;   /* clear the fixed nav when scrolled into view */
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.85s var(--ease-soft),
              opacity 0.55s ease,
              margin 0.4s var(--ease-soft);
  pointer-events: none;
  margin-top: 0;
}
.offer.is-open .offer__expand {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
  margin-top: 32px;
}
.offer__expand-inner {
  min-height: 0;       /* required so grid-row 0fr collapses correctly */
  overflow: hidden;    /* clip child content during collapse */
  position: relative;
  padding-top: 28px;
  border-top: var(--line);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 40px);
}

/* Big italic re-statement of the tagline at the top of the expand */
.offer__expand-headline {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--clay);
  opacity: 0.92;
  letter-spacing: 0.005em;
}
.offer__expand-headline em { font-style: italic; font-weight: 400; }

/* Horizontal gallery — swipe to browse, snap to align.
   Items sized so 1.5–2 are visible at once: the trailing edge of the next
   video peeks in, signalling "there's more to see". */
.offer__gallery {
  display: flex;
  gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 22, 17, 0.2) transparent;
  padding: 4px 0 14px;
  /* Tip the right edge so users see there's more to the right */
  scroll-snap-stop: always;
}
.offer__gallery > .offer__media {
  /* Portrait 9:16 source (Salomé's vertical clips) — narrower cards,
     2-3 visible at once on desktop, full frame with zero crop */
  flex: 0 0 clamp(220px, 24vw, 300px);
}
.offer__gallery::-webkit-scrollbar { height: 4px; }
.offer__gallery::-webkit-scrollbar-thumb {
  background: rgba(31, 22, 17, 0.2);
  border-radius: 2px;
}
.offer__media {
  margin: 0;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  background: var(--bg-deep);
  border-radius: 4px;
  overflow: hidden;
}
.offer__media-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* Quotes — two side by side on desktop, stacked on mobile */
.offer__quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.offer__quote {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.85;
  border-left: 1px solid rgba(110, 58, 34, 0.25);
  padding-left: 16px;
}
.offer__quote p { margin: 0; }

/* Big italic CTA at the bottom — restates the WhatsApp invitation */
.offer__expand-cta {
  display: inline-flex;
  align-self: center;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 28px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clay);
  transition: background 0.4s var(--ease-soft), color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.offer__expand-cta:hover {
  background: var(--clay);
  color: var(--cream);
  transform: translateY(-1px);
}
.offer__expand-cta .offer__expand-cta:hover 
/* Subtle close button — top right of the expand */
.offer__expand-close {
  position: absolute;
  top: 16px;
  right: 0;
  background: transparent;
  border: 0;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.5;
  cursor: pointer;
  padding: 6px 10px;
  transition: opacity 0.3s ease;
}
.offer__expand-close:hover { opacity: 1; }

@media (max-width: 640px) {
  .offer__quotes { grid-template-columns: 1fr; }
  /* The label is the pill's only content (no arrow) — never hide it.
     Compact the pill instead so it fits beside the title. */
  .offer__explore { padding: 8px 16px; font-size: 10px; letter-spacing: 0.18em; }
  /* Portrait 9:16 frame (native vertical clips) — size the card so the
     full clip reads comfortably on a phone with the next one peeking in. */
  .offer__gallery > .offer__media { flex: 0 0 min(62vw, 300px); }
}

@media (prefers-reduced-motion: reduce) {
  .offer__expand, .experiences__atmosphere img,
  .offer__expand-cta, .offer__expand-close {
    transition: none;
  }
}

/* ==========================================================================
   GLOBAL — italics off everywhere
   Hierarchy is carried by weight + opacity + size, never by font-style.
   ========================================================================== */
em, .offer__tagline em, .display em, .display .line em, .frag em,
.offer__expand-headline em, .offer__quote, .offer__quote p,
.collection__title em, .about__title em, .offer__title em,
.contact__lede em, .signature, .offer__price em, .pair__num,
.pair__items em, .format__name em, blockquote, blockquote p {
  font-style: normal !important;
}

/* ==========================================================================
   TESTIMONIAL ATTRIBUTION — small footer under each quote
   ========================================================================== */
.offer__quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer__quote-by {
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: var(--o-65);
  margin: 0;
  padding-top: 4px;
}

/* ==========================================================================
   WhatsApp expand CTA — coherent states (idle / hover / active / focus)
   Was unreadable on hover; fix contrast and add depth.
   ========================================================================== */
.offer__expand-cta {
  background: transparent;
  color: var(--clay);
  border: 1px solid var(--clay);
}
.offer__expand-cta:hover,
.offer__expand-cta:focus-visible {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
  box-shadow: 0 8px 22px -10px rgba(110, 58, 34, 0.55);
  opacity: 1;     /* override the global a:hover { opacity: 0.6 } */
}
.offer__expand-cta:focus-visible {
  outline: 2px solid rgba(110, 58, 34, 0.35);
  outline-offset: 3px;
}
.offer__expand-cta:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px -8px rgba(110, 58, 34, 0.5);
}

/* ==========================================================================
   COLLECTIONS NOTE — center both the paragraph and the enquire link
   ========================================================================== */
.collection__note {
  margin: clamp(60px, 10vh, 100px) auto 0;
  max-width: var(--col-mid);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.collection__note-text {
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.85;
  max-width: 56ch;
}
.collection__note .collection__enquire {
  display: inline-block;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
.collection__note .collection__enquire:hover { opacity: 0.6; }


/* ==========================================================================
   FILLED-STATE LEGIBILITY — light type on clay, including descendants.
   (--cream was undefined before this pass; defined in tokens now.)
   ========================================================================== */
.offer__title-btn:hover .offer__explore,
.offer__title-btn:focus-visible .offer__explore,
.offer.is-open .offer__explore,
.offer__expand-cta:hover, .offer__expand-cta:hover *,
.offer__expand-cta:active, .offer__expand-cta:active *,
.offer__expand-cta:focus-visible, .offer__expand-cta:focus-visible *,
.contact__cta:hover, .contact__cta:hover *,
.contact__cta:active, .contact__cta:active * {
  color: var(--cream);
}
/* contact CTA becomes a filled pill on hover too — same family as the rest */
.contact__cta {
  border: 1px solid var(--clay);
  border-radius: 999px;
  padding: 14px 28px;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft),
              transform 0.25s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}
.contact__cta:hover, .contact__cta:focus-visible {
  background: var(--clay);
  opacity: 1;
  box-shadow: 0 8px 22px -10px rgba(110, 58, 34, 0.55);
}
.contact__cta:active { transform: translateY(1px); }

/* ==========================================================================
   HERO WORD — Salomé's one-word arc under "when you slow down"
   feel → listen → explore → wait → transform
   ========================================================================== */
.frag__word {
  display: block;
  margin-top: 1.7em;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55em;
  padding-left: 0.55em;   /* optical centring against tracking */
  color: #F5E8D9;
  opacity: 0.95;
}

/* ==========================================================================
   EMAIL SIGNUP — the quiet path in #contact
   Same family as the pill CTAs: underline input, outline pill that fills
   clay with cream type on hover/focus/active.
   ========================================================================== */
.signup {
  max-width: 480px;
  margin: clamp(36px, 6vh, 56px) auto 0;
  text-align: center;
}
.signup__lede {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 22px;
}
.signup__honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}
.signup__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.signup__row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.signup__input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 22, 17, 0.30);
  border-radius: 0;
  padding: 12px 2px;
  outline: none;
  transition: border-color 0.3s var(--ease-soft);
}
.signup__input::placeholder { color: var(--ink); opacity: 0.32; }
.signup__input:focus { border-bottom-color: var(--clay); }
.signup__input:user-invalid { border-bottom-color: var(--orange); }
.signup__btn {
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  background: transparent;
  border: 1px solid var(--clay);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft),
              transform 0.25s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
              opacity 0.3s ease;
}
.signup__btn:hover,
.signup__btn:focus-visible {
  background: var(--clay);
  color: var(--cream);
  box-shadow: 0 8px 22px -10px rgba(110, 58, 34, 0.55);
}
.signup__btn:focus-visible {
  outline: 2px solid rgba(110, 58, 34, 0.35);
  outline-offset: 3px;
}
.signup__btn:active { transform: translateY(1px); }
.signup__btn[disabled] { opacity: 0.55; cursor: default; }
.signup__msg {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: var(--o-65);
}
.signup__msg.is-success { color: var(--clay); opacity: 1; }
.signup__msg.is-error { color: var(--orange); opacity: 1; }
/* After success, the form quiets down */
.signup__form.is-done .signup__row { opacity: 0.35; pointer-events: none; }

@media (max-width: 640px) {
  .signup__row { flex-direction: column; gap: 16px; }
  .signup__btn { padding: 14px 22px; }
}

/* ==========================================================================
   ABOUT — Substack link under the signature
   ========================================================================== */
.about__substack {
  margin: 18px 0 0;
  font-size: 13px;
}
.about__substack a {
  border-bottom: 1px solid rgba(61, 36, 24, 0.35);
  padding-bottom: 2px;
  color: var(--clay);
  transition: border-color 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft);
}
.about__substack a:hover { opacity: 1; border-bottom-color: var(--clay); }
