@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/ai-production/00 Brand DNA/fonts/montserrat-300.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/ai-production/00 Brand DNA/fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/ai-production/00 Brand DNA/fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/ai-production/00 Brand DNA/fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/ai-production/00 Brand DNA/fonts/montserrat-700.ttf") format("truetype");
}

:root {
  --white: #ffffff;
  --paper: #f8f4ea;
  --paper-warm: #f1e6d5;
  --ink: #172321;
  --muted: #5f6d68;
  --aqua: #8fcdd0;
  --aqua-deep: #477f82;
  --water: #bfdfe0;
  --sand: #e8dcc8;
  --mineral: #d9e5dd;
  --film-progress: 0;
  --nav-opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  text-rendering: geometricPrecision;
}

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

picture {
  display: contents;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--aqua-deep);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 40;
  transform: translate3d(0, -160%, 0);
  border-radius: 999px;
  background: rgba(23, 35, 33, 0.88);
  color: var(--white);
  padding: 0.78rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(16px);
}

.skip-link:focus {
  transform: translate3d(0, 0, 0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 35;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(143, 205, 208, 0.55), rgba(255, 255, 255, 0.9));
}

.quiet-nav {
  position: fixed;
  z-index: 30;
  top: max(1rem, env(safe-area-inset-top));
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: var(--nav-opacity);
  pointer-events: none;
  transition: opacity 220ms linear;
}

.quiet-logo-link,
.quiet-buy-link {
  pointer-events: auto;
}

.wordmark {
  display: inline-grid;
  gap: 0.06rem;
  width: fit-content;
  color: var(--aqua-deep);
  font-family: "Montserrat", sans-serif;
  line-height: 0.86;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-weight: 400;
}

.wordmark small {
  justify-self: center;
  color: rgba(71, 127, 130, 0.78);
  font-size: clamp(0.46rem, 0.62vw, 0.56rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.quiet-buy-link {
  border: 1px solid rgba(23, 35, 33, 0.18);
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.72);
  color: var(--ink);
  padding: 0.72rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.experience {
  min-width: 0;
}

.film {
  position: relative;
  min-height: 1040vh;
  background: #081211;
  color: var(--white);
  isolation: isolate;
}

.film-stage,
.chapter-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.film-stage {
  background: #081211;
  contain: layout paint style;
}

.media-stack,
.shot-layer,
.shot-layer img,
.film-grade,
.light-bloom,
.copy-layer,
.chapter-media,
.chapter-media img,
.chapter-veil,
.story-panel,
.story-panel img {
  position: absolute;
  inset: 0;
}

.media-stack {
  z-index: 0;
  background: #081211;
}

.shot-layer {
  --shot-opacity: 0;
  --shot-scale: 1;
  --shot-blur: 0px;
  --shot-reveal: 0%;
  margin: 0;
  opacity: var(--shot-opacity);
  clip-path: inset(var(--shot-reveal) 0 0 0);
  transform: translateZ(0);
  will-change: opacity, clip-path;
}

.shot-layer img,
.chapter-media img,
.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.shot-layer img {
  filter: blur(var(--shot-blur)) saturate(0.98);
  transform: scale(var(--shot-scale)) translateZ(0);
  transform-origin: center;
  will-change: transform, filter;
}

.shot-close img {
  object-position: 50% 42%;
}

.film-grade {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(4, 13, 12, 0.52), rgba(4, 13, 12, 0.12) 48%, rgba(4, 13, 12, 0.28)),
    linear-gradient(180deg, rgba(4, 13, 12, 0.2), transparent 34%, rgba(4, 13, 12, 0.56));
}

.light-bloom {
  --bloom-opacity: 0;
  z-index: 2;
  opacity: var(--bloom-opacity);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.38), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(143, 205, 208, 0.22), transparent 36%);
  mix-blend-mode: screen;
}

.copy-layer {
  z-index: 4;
  display: grid;
  align-items: center;
  pointer-events: none;
}

.cue,
.final-logo,
.final-line,
.final-cta,
[data-commerce-step],
.chapter-kicker,
.chapter-copy h1,
.chapter-copy h2,
.chapter-copy > p,
.buy-copy,
.faq-panel,
.instagram-link {
  --cue-opacity: 0;
  --cue-y: 14px;
  opacity: var(--cue-opacity);
  transform: translate3d(0, var(--cue-y), 0);
  transition:
    opacity 90ms linear,
    transform 90ms linear;
  will-change: opacity, transform;
}

.chapter.is-visible .chapter-kicker,
.chapter.is-visible .chapter-copy h1:not([data-commerce-step]),
.chapter.is-visible .chapter-copy h2:not([data-commerce-step]),
.chapter.is-visible .chapter-copy > p:not([data-commerce-step]),
.chapter.is-visible .buy-copy,
.chapter.is-visible .faq-panel,
.chapter.is-visible .instagram-link {
  --cue-opacity: var(--chapter-base-opacity, 1);
  --cue-y: 0px;
}

.cue {
  position: absolute;
  max-width: min(12.5ch, 80vw);
  margin: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 6.3vw, 5.9rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 70px rgba(4, 13, 12, 0.34);
}

.cue-left {
  left: clamp(1rem, 7vw, 7rem);
  top: 50%;
  transform: translate3d(0, calc(-50% + var(--cue-y)), 0);
}

.cue-center {
  left: 50%;
  top: 50%;
  max-width: min(16ch, 82vw);
  text-align: center;
  transform: translate3d(-50%, calc(-50% + var(--cue-y)), 0);
}

.cue-small {
  font-size: clamp(2rem, 5.2vw, 4.7rem);
}

.cue-water {
  max-width: min(18ch, 84vw);
}

.cue-water-second {
  top: 58%;
}

.first-scroll-cue {
  position: absolute;
  right: 50%;
  bottom: max(2rem, env(safe-area-inset-bottom));
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
  pointer-events: none;
  transform: translate3d(50%, 0, 0);
  transition: opacity 900ms ease;
  animation: first-scroll-cue-breathe 3.6s ease-in-out infinite;
}

.first-scroll-cue span {
  display: block;
  width: clamp(5rem, 8vw, 6.25rem);
  height: 1px;
  background: currentColor;
}

.first-scroll-cue p {
  margin: 0;
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1;
}

.first-scroll-cue.is-hidden {
  opacity: 0 !important;
  animation: none;
}

@keyframes first-scroll-cue-breathe {
  0%,
  100% {
    opacity: 0.48;
  }

  50% {
    opacity: 0.82;
  }
}

.final-copy {
  position: absolute;
  left: clamp(1rem, 7vw, 7rem);
  bottom: clamp(3.5rem, 9vh, 6.5rem);
  display: grid;
  max-width: min(36rem, calc(100vw - 2rem));
  gap: 0.85rem;
  justify-items: start;
  pointer-events: none;
}

.final-logo {
  color: rgba(255, 255, 255, 0.94);
  filter: drop-shadow(0 18px 48px rgba(4, 13, 12, 0.3));
}

.final-logo span {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-logo small {
  color: rgba(255, 255, 255, 0.74);
}

.final-line {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.35;
  text-shadow: 0 16px 56px rgba(4, 13, 12, 0.38);
}

.final-memory {
  max-width: 23rem;
  color: rgba(255, 255, 255, 0.86);
}

.commerce {
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
}

.chapter {
  --chapter-progress: 0;
  position: relative;
  min-height: 210vh;
  background: var(--paper);
  isolation: isolate;
}

.chapter-mexico,
.chapter-ocean,
.chapter-stories {
  background: #071412;
  color: var(--white);
}

.chapter-why,
.chapter-science,
.chapter-ocean {
  min-height: 280vh;
}

.chapter-buy {
  min-height: auto;
}

.chapter-mexico {
  min-height: 560vh;
}

.chapter-stage {
  background: #071412;
  contain: layout paint style;
}

.chapter-stage-paper {
  background:
    radial-gradient(circle at 72% 18%, rgba(143, 205, 208, 0.12), transparent 26%),
    linear-gradient(180deg, var(--paper), #fffdf7 58%, var(--paper-warm));
}

.chapter-media,
.story-panel {
  margin: 0;
  z-index: 0;
  opacity: 1;
  transform: scale(var(--chapter-scale, 1.015)) translateZ(0);
  will-change: transform, opacity;
}

.chapter-media-full img,
.story-panel img {
  filter: saturate(0.96);
}

.chapter-veil {
  z-index: 1;
  pointer-events: none;
}

.chapter-veil-dark {
  background:
    linear-gradient(90deg, rgba(5, 15, 13, 0.76), rgba(5, 15, 13, 0.18) 56%, rgba(5, 15, 13, 0.24)),
    linear-gradient(180deg, rgba(5, 15, 13, 0.1), rgba(5, 15, 13, 0.48));
}

.chapter-veil-soft {
  background:
    linear-gradient(90deg, rgba(5, 15, 13, 0.68), rgba(5, 15, 13, 0.12) 58%),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.12), transparent 35%);
}

.chapter-veil-blue {
  background:
    linear-gradient(90deg, rgba(6, 25, 24, 0.7), rgba(6, 25, 24, 0.12) 56%, rgba(6, 25, 24, 0.3)),
    radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.chapter-copy {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: clamp(0.9rem, 2vh, 1.4rem);
  width: min(36rem, calc(100vw - 2rem));
  color: var(--ink);
}

.chapter-copy-light {
  color: var(--white);
}

.chapter-copy-left {
  left: clamp(1rem, 7vw, 7rem);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.chapter-copy-right {
  right: clamp(1rem, 7vw, 7rem);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.chapter-kicker,
.subtle-note,
.shipping-line,
.price-line {
  margin: 0;
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-inline {
  width: fit-content;
  color: var(--aqua-deep);
  text-decoration: none;
}

.chapter-kicker {
  color: rgba(23, 35, 33, 0.58);
}

.chapter-copy-light .chapter-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.chapter-copy h1,
.chapter-copy h2,
.story-copy h2,
.buy-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5.6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.chapter-copy p,
.story-copy p,
.buy-copy p,
.faq-panel p {
  margin: 0;
  max-width: 33rem;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 400;
  line-height: 1.6;
}

.chapter-copy-light p,
.story-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.routine-collage,
.routine-scenes {
  position: absolute;
  inset: clamp(4.5rem, 10vh, 7rem) auto clamp(3rem, 9vh, 6rem) clamp(1rem, 7vw, 7rem);
  z-index: 1;
  width: min(45vw, 38rem);
}

.routine-frame,
.routine-scene {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.routine-frame img,
.routine-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
}

.routine-scene figcaption,
.diary-entry figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.62rem, 0.78vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.routine-frame-sea {
  inset: 0 14% 18% 0;
}

.routine-frame-city {
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
}

.routine-frame-water {
  left: 7%;
  bottom: 4%;
  width: 30%;
  aspect-ratio: 3 / 4;
  opacity: 0.9;
}

.routine-scenes {
  height: min(64vh, 42rem);
}

.routine-scene-beach {
  inset: 0 24% 32% 0;
}

.routine-scene-walk {
  right: 0;
  top: 10%;
  width: 38%;
  aspect-ratio: 4 / 5;
}

.routine-scene-life {
  left: 8%;
  bottom: 0;
  width: 34%;
  aspect-ratio: 4 / 5;
}

.routine-scene-sky {
  right: 17%;
  bottom: 3%;
  width: 32%;
  aspect-ratio: 5 / 4;
}

.science-object,
.buy-scene {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--chapter-shift, 0px), 0) scale(var(--chapter-object-scale, 1));
  will-change: transform;
}

.science-object img {
  width: 100%;
  height: auto;
  filter: saturate(0.97) contrast(0.98);
}

.buy-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.science-object {
  overflow: hidden;
  border: 1px solid rgba(23, 35, 33, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 234, 0.86)),
    var(--paper);
  box-shadow:
    0 22px 70px rgba(23, 35, 33, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.84) inset;
}

.science-object img {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}

.science-lab {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: min(34vw, 30rem);
  height: min(56vh, 34rem);
}

.lab-pane,
.lab-sample,
.mineral-dust {
  position: absolute;
  display: block;
}

.lab-pane {
  border: 1px solid rgba(71, 127, 130, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(191, 223, 224, 0.18)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    0 32px 80px rgba(23, 35, 33, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(12px);
}

.lab-pane-large {
  inset: 4% 16% 18% 0;
}

.lab-pane-small {
  right: 0;
  bottom: 5%;
  width: 44%;
  height: 48%;
}

.lab-sample {
  left: 13%;
  bottom: 12%;
  width: 36%;
  height: 10%;
  background: linear-gradient(90deg, rgba(143, 205, 208, 0.18), rgba(232, 220, 200, 0.52), rgba(255, 255, 255, 0.3));
  filter: blur(0.2px);
}

.mineral-dust {
  right: 9%;
  top: 13%;
  width: 26%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 205, 208, 0.2), transparent 65%);
  filter: blur(10px);
}

.mexico-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: scale(var(--mexico-push, 1.015)) translate3d(var(--mexico-drift-x, 0), var(--mexico-drift-y, 0), 0);
  will-change: opacity, transform;
}

.mexico-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.97);
}

.mexico-scene-city {
  opacity: var(--mexico-city-opacity, 0);
  --mexico-drift-x: -0.5%;
}

.mexico-scene-car {
  opacity: var(--mexico-car-opacity, 0);
  --mexico-drift-y: 0.45%;
}

.mexico-scene-yacht {
  opacity: var(--mexico-yacht-opacity, 0);
  --mexico-drift-x: 0.55%;
}

.mexico-scene-sup {
  opacity: var(--mexico-sup-opacity, 0);
  --mexico-drift-y: -0.45%;
}

.mexico-scene-beach {
  opacity: var(--mexico-beach-opacity, 0);
  --mexico-drift-x: -0.25%;
}

.mexico-scene-city img {
  object-position: 52% 50%;
}

.mexico-scene-car img {
  object-position: 50% 48%;
}

.mexico-scene-yacht img,
.mexico-scene-sup img {
  object-position: 50% 50%;
}

.mexico-scene-beach img {
  object-position: 48% 52%;
}

.mexico-scene figcaption {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1.3rem, 6vh, 4.5rem);
  max-width: min(30rem, calc(100vw - 2rem));
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 18px rgba(5, 15, 13, 0.38);
}

.place-line,
.use-journey {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1.2rem, 5vh, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
  max-width: min(42rem, calc(100vw - 2rem));
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 600;
}

.use-journey {
  max-width: min(50rem, calc(100vw - 2rem));
  color: rgba(255, 255, 255, 0.78);
}

.use-journey span {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 0.5rem;
}

.science-stage {
  overflow: hidden;
}

.science-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0.78;
  transform: scale(var(--chapter-scale, 1.015)) translateZ(0);
  will-change: transform;
}

.science-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96);
}

.science-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 244, 234, 0.92), rgba(248, 244, 234, 0.46) 46%, rgba(248, 244, 234, 0.08)),
    radial-gradient(circle at 26% 50%, rgba(255, 255, 255, 0.5), transparent 42%);
}

.science-lines {
  position: absolute;
  inset: 11vh 7vw;
  z-index: 2;
  opacity: 0.45;
}

.science-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 35, 33, 0.16), transparent);
}

.science-lines span:nth-child(1) {
  top: 12%;
}

.science-lines span:nth-child(2) {
  top: 50%;
}

.science-lines span:nth-child(3) {
  top: 82%;
}

.science-object {
  right: clamp(2rem, 13vw, 14rem);
  bottom: clamp(4rem, 12vh, 8rem);
  width: clamp(9rem, 18vw, 16rem);
}

.science-mark {
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  top: 18%;
  z-index: 2;
  color: rgba(23, 35, 33, 0.08);
  font-size: clamp(3rem, 13vw, 14rem);
  font-weight: 300;
  letter-spacing: 0;
}

.science-stage .chapter-copy {
  z-index: 3;
}

.memory-map {
  position: absolute;
  z-index: 1;
  inset: 8vh clamp(1rem, 6vw, 6rem) 12vh;
  border-top: 1px solid rgba(23, 35, 33, 0.08);
  border-bottom: 1px solid rgba(23, 35, 33, 0.08);
  background:
    radial-gradient(circle at 64% 33%, rgba(143, 205, 208, 0.18), transparent 15%),
    radial-gradient(circle at 37% 62%, rgba(232, 220, 200, 0.55), transparent 16%);
}

.mexico-map-line {
  position: absolute;
  inset: 3% 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  fill: none;
  stroke: rgba(71, 127, 130, 0.28);
  stroke-width: 2;
  stroke-linecap: round;
}

.memory-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  color: rgba(23, 35, 33, 0.72);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 600;
  transform: translate(-50%, -50%);
}

.memory-map span::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 auto 0.35rem;
  border-radius: 50%;
  background: var(--aqua-deep);
}

.memory-image,
.memory-album {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 7vw, 7rem);
  bottom: clamp(2rem, 8vh, 6rem);
}

.destination-tags {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 7vw, 7rem);
  top: clamp(5rem, 12vh, 8rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 0.78rem;
  width: min(42vw, 38rem);
}

.destination-tags span {
  border-bottom: 1px solid rgba(23, 35, 33, 0.14);
  padding-bottom: 0.32rem;
  color: rgba(23, 35, 33, 0.64);
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  font-weight: 600;
}

.memory-image {
  width: min(34vw, 25rem);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}

.memory-album {
  display: grid;
  grid-template-columns: repeat(4, minmax(4.8rem, 1fr));
  gap: clamp(0.6rem, 1.2vw, 1rem);
  width: min(44vw, 39rem);
}

.memory-album figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  transform: translate3d(0, 0, 0);
}

.memory-album figure:nth-child(2),
.memory-album figure:nth-child(4) {
  transform: translate3d(0, 1.6rem, 0);
}

.memory-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--memory-scale, 1.02));
  filter: saturate(0.94) contrast(0.98);
}

.memory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--memory-scale, 1.02));
}

.stories-stage {
  background:
    radial-gradient(circle at 16% 12%, rgba(143, 205, 208, 0.1), transparent 26%),
    linear-gradient(180deg, var(--paper), var(--paper-warm));
}

.stories-stage-editorial {
  display: grid;
  place-items: center;
}

.story-panel {
  opacity: 0;
}

.story-panel-a {
  opacity: var(--story-a-opacity, 1);
}

.story-panel-b {
  opacity: var(--story-b-opacity, 0);
}

.story-panel-c {
  opacity: var(--story-c-opacity, 0);
}

.story-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(46rem, 0.95fr);
  gap: clamp(2.2rem, 4vw, 4.8rem);
  width: min(92vw, 84rem);
  color: var(--ink);
  align-items: center;
}

.story-copy > .chapter-kicker,
.story-copy > h2,
.story-subcopy {
  grid-column: 1;
}

.story-copy > h2 {
  max-width: 12ch;
  font-size: clamp(1.35rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.story-copy .chapter-kicker {
  color: rgba(23, 35, 33, 0.62);
}

.story-copy .story-subcopy {
  max-width: 18rem;
  color: rgba(23, 35, 33, 0.64);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.55;
}

.story-quotes {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(26.25rem, 1fr));
  gap: clamp(1.25rem, 1.7vw, 1.85rem);
  width: 100%;
}

.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(1.45rem, 2vw, 1.9rem);
  row-gap: clamp(1rem, 1.45vw, 1.35rem);
  min-height: clamp(18rem, 29vh, 22rem);
  margin: 0;
  border: 1px solid rgba(23, 35, 33, 0.09);
  padding: clamp(2.35rem, 3vw, 3.15rem);
  background: rgba(255, 253, 247, 0.88);
}

.story-card img {
  grid-row: 1 / 3;
  width: clamp(4.8rem, 5.8vw, 5.7rem);
  height: clamp(4.8rem, 5.8vw, 5.7rem);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.story-stars {
  display: flex;
  gap: 0.34rem;
  align-items: center;
  align-self: end;
}

.story-stars span {
  width: 0.58rem;
  height: 0.58rem;
  clip-path: polygon(50% 0%, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  background: #a98848;
}

.story-quotes blockquote {
  grid-column: 1 / 3;
  margin: 0;
  color: rgba(23, 35, 33, 0.86);
  font-size: clamp(1.04rem, 1.15vw, 1.18rem);
  line-height: 1.52;
}

.story-quotes figcaption {
  align-self: start;
  margin: 0;
  color: rgba(23, 35, 33, 0.76);
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ocean-stage {
  background: #071412;
}

.ocean-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: scale(var(--chapter-scale, 1.015)) translateZ(0);
  will-change: opacity, transform;
}

.ocean-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.96);
}

.ocean-coral {
  opacity: var(--ocean-coral-opacity, 1);
}

.ocean-cenote {
  opacity: var(--ocean-cenote-opacity, 0);
}

.ocean-wave {
  opacity: var(--ocean-wave-opacity, 0);
  mix-blend-mode: screen;
}

.buy-stage {
  position: relative;
  top: auto;
  display: flex;
  height: auto;
  min-height: auto;
  overflow: visible;
  contain: none;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.35rem, 2.7vh, 2.25rem);
  padding: clamp(2.6rem, 5vh, 4.2rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 50% 28%, rgba(143, 205, 208, 0.13), transparent 24%),
    linear-gradient(180deg, #fffef9, var(--paper) 62%, var(--paper-warm));
  flex-direction: column;
  text-align: center;
}

.buy-scene {
  position: relative;
  width: min(64vw, 24rem);
  aspect-ratio: 1.16 / 1;
  opacity: 1;
  overflow: visible;
  transform: none;
  will-change: auto;
}

.buy-scene::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 10%;
  height: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23, 35, 33, 0.12), transparent 70%);
  filter: blur(12px);
}

.buy-scene .buy-bottle {
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(23, 35, 33, 0.1));
  will-change: transform;
}

.buy-scene .buy-bottle-back {
  left: calc(50% + clamp(1.2rem, 3.2vw, 3.9rem));
  top: clamp(0.1rem, 1.2vw, 0.9rem);
  z-index: 1;
  width: clamp(7.7rem, 12.8vw, 11.7rem);
  opacity: 0.94;
  animation: bottle-breathe-back 11.5s ease-in-out infinite;
}

.buy-scene .buy-bottle-front {
  left: 50%;
  top: clamp(1.4rem, 2.7vw, 2.7rem);
  z-index: 2;
  width: clamp(8.3rem, 13.7vw, 12.5rem);
  animation: bottle-breathe-front 10s ease-in-out infinite;
}

@keyframes bottle-breathe-front {
  0%,
  100% {
    transform: translate3d(-50%, -5px, 0);
  }

  50% {
    transform: translate3d(-50%, 5px, 0);
  }
}

@keyframes bottle-breathe-back {
  0%,
  100% {
    transform: translate3d(-50%, -3px, 0);
  }

  50% {
    transform: translate3d(-50%, 3px, 0);
  }
}

.buy-copy,
.faq-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.9rem, 1.35vw, 1.25rem);
}

.buy-message {
  display: grid;
  justify-items: center;
}

.buy-copy {
  justify-items: center;
  max-width: min(92vw, 46rem);
}

.buy-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
}

.price-line {
  color: var(--aqua-deep);
}

.shipping-line {
  color: rgba(23, 35, 33, 0.58);
}

.buy-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem clamp(1rem, 2vw, 1.6rem);
  max-width: 44rem;
}

.buy-benefits span {
  border-bottom: 1px solid rgba(23, 35, 33, 0.1);
  padding-bottom: 0.44rem;
  color: rgba(23, 35, 33, 0.72);
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 500;
}

.buy-button {
  display: inline-flex;
  width: fit-content;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 35, 33, 0.18);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.94rem 1.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.buy-link-secondary {
  width: fit-content;
  color: rgba(23, 35, 33, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.faq-panel {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.2vw, 1.1rem);
  width: min(92vw, 74rem);
  max-width: none;
  margin-top: clamp(0.8rem, 2vh, 1.5rem);
  text-align: left;
}

.faq-panel div {
  border-top: 1px solid rgba(23, 35, 33, 0.14);
  padding-top: 0.82rem;
}

.faq-panel h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0;
}

.faq-panel p {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.55;
  color: rgba(23, 35, 33, 0.66);
}

.instagram-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  justify-content: center;
  min-height: 9rem;
  padding: 3.2rem 1rem 2.4rem;
  margin-top: clamp(2rem, 8vh, 6rem);
  background: var(--paper);
  color: rgba(23, 35, 33, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer .footer-logo span {
  font-size: 1.35rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 759px) {
  .film {
    min-height: 980vh;
  }

  .quiet-nav {
    top: max(0.75rem, env(safe-area-inset-top));
  }

  .wordmark span {
    font-size: 1.48rem;
  }

  .wordmark small {
    font-size: 0.44rem;
  }

  .quiet-buy-link {
    padding: 0.68rem 0.9rem;
  }

  .film-grade {
    background:
      radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 28%),
      linear-gradient(90deg, rgba(4, 13, 12, 0.5), rgba(4, 13, 12, 0.18)),
      linear-gradient(180deg, rgba(4, 13, 12, 0.16), transparent 40%, rgba(4, 13, 12, 0.62));
  }

  .shot-close img {
    object-position: 50% 36%;
  }

  .shot-discovery img {
    object-position: 50% 50%;
  }

  .cue {
    max-width: 10.6ch;
    font-size: clamp(2.05rem, 10.4vw, 3.9rem);
  }

  .cue-left {
    left: 1rem;
    top: 48%;
  }

  .cue-center {
    max-width: 11.5ch;
  }

  .cue-water-second {
    top: 61%;
  }

  .cue-small {
    font-size: clamp(1.9rem, 9.3vw, 3.5rem);
  }

  .final-copy {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
    gap: 0.65rem;
  }

  .final-logo {
    width: clamp(7rem, 34vw, 9rem);
  }

  .final-line {
    max-width: 18rem;
    font-size: clamp(1rem, 4.8vw, 1.28rem);
  }

  .chapter {
    min-height: 190vh;
  }

  .chapter-copy,
  .story-copy {
    right: 1rem;
    left: 1rem;
    width: auto;
  }

  .chapter-copy-left,
  .chapter-copy-right {
    top: auto;
    right: 1rem;
    bottom: max(2rem, env(safe-area-inset-bottom));
    left: 1rem;
    transform: none;
  }

  .chapter-copy h1,
  .chapter-copy h2,
  .story-copy h2,
  .buy-copy h2 {
    font-size: clamp(2rem, 9.4vw, 3.4rem);
  }

  .chapter-copy p,
  .story-copy p,
  .buy-copy p {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
  }

  .science-object {
    right: 1rem;
    top: 11vh;
    bottom: auto;
    width: clamp(7.4rem, 36vw, 10.4rem);
  }

  .science-hero img {
    object-position: 54% 50%;
  }

  .science-stage::after {
    background:
      linear-gradient(180deg, rgba(248, 244, 234, 0.18), rgba(248, 244, 234, 0.82) 58%, rgba(248, 244, 234, 0.94)),
      radial-gradient(circle at 24% 64%, rgba(255, 255, 255, 0.46), transparent 44%);
  }

  .science-mark {
    right: 1rem;
    top: 19%;
    font-size: clamp(3rem, 17vw, 5.5rem);
  }

  .routine-collage,
  .routine-scenes {
    inset: 5.2rem 1rem auto;
    width: auto;
    height: 38vh;
  }

  .routine-frame-sea {
    inset: 0 0 16% 0;
  }

  .routine-frame-city {
    width: 36%;
  }

  .routine-frame-water {
    width: 26%;
  }

  .routine-scene-beach {
    inset: 0 0 25% 0;
  }

  .routine-scene-walk {
    right: 0;
    top: 34%;
    width: 43%;
  }

  .routine-scene-life {
    left: 0;
    bottom: 0;
    width: 38%;
  }

  .routine-scene-sky {
    right: 26%;
    bottom: 0;
    width: 29%;
  }

  .memory-image {
    right: 1rem;
    bottom: 2rem;
    width: min(42vw, 11rem);
  }

  .memory-album {
    right: 1rem;
    bottom: 2rem;
    left: 1rem;
    width: auto;
  }

  .memory-album {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .memory-album figure:nth-child(2),
  .memory-album figure:nth-child(4) {
    transform: translate3d(0, 0.8rem, 0);
  }

  .place-line,
  .use-journey {
    right: 1rem;
    bottom: 1rem;
    justify-content: flex-start;
    font-size: 0.7rem;
  }

  .use-journey {
    left: 1rem;
    max-width: none;
    gap: 0.55rem 0.75rem;
    text-align: left;
    justify-items: start;
  }

  .story-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .story-copy > .chapter-kicker,
  .story-copy > h2,
  .story-subcopy,
  .story-quotes {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy h2 {
    max-width: 20rem;
    padding-inline: 1rem;
    font-size: clamp(1.35rem, 5.8vw, 1.9rem);
  }

  .story-copy .chapter-kicker,
  .story-subcopy {
    padding-inline: 1rem;
  }

  .story-subcopy {
    max-width: 22rem;
    font-size: 0.88rem;
  }

  .story-quotes {
    display: flex;
    gap: 0.85rem;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    padding: 0.25rem 1rem 0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .story-quotes::-webkit-scrollbar {
    display: none;
  }

  .story-card {
    flex: 0 0 min(82vw, 21.5rem);
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
    min-height: 20.5rem;
    padding: 1.65rem;
    scroll-snap-align: center;
  }

  .story-card img {
    grid-row: 1 / 3;
    width: 4.75rem;
    height: 4.75rem;
    aspect-ratio: 1;
  }

  .story-stars {
    align-self: end;
  }

  .story-stars span {
    width: 0.48rem;
    height: 0.48rem;
  }

  .story-quotes blockquote {
    grid-column: 1 / 3;
    font-size: clamp(0.96rem, 3.9vw, 1.04rem);
    line-height: 1.5;
  }

  .story-quotes figcaption {
    font-size: 0.78rem;
  }

  .buy-stage {
    align-items: center;
    justify-content: flex-start;
    gap: 1.65rem;
    padding: max(4.8rem, env(safe-area-inset-top)) 1rem 3.4rem;
    overflow-y: auto;
    text-align: center;
  }

  .buy-scene {
    width: min(86vw, 21.5rem);
    align-self: center;
    aspect-ratio: 1 / 1;
    overflow: visible;
  }

  .buy-scene .buy-bottle-front {
    width: clamp(7.6rem, 34vw, 9.3rem);
    left: 50%;
    top: 14%;
  }

  .buy-scene .buy-bottle-back {
    width: clamp(7.1rem, 31.5vw, 8.7rem);
    left: calc(50% + 3rem);
    top: calc(14% - 1.15rem);
  }

  .buy-copy,
  .faq-panel {
    width: 100%;
  }

  .buy-copy {
    justify-items: center;
  }

  .buy-benefits {
    justify-content: center;
  }

  .faq-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .buy-button,
  .buy-link-secondary {
    width: 100%;
  }

}

@media (min-width: 760px) and (max-width: 1100px) {
  .cue {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5.1rem);
  }

  .final-copy {
    max-width: 32rem;
  }

  .faq-panel {
    max-width: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    width: min(86vw, 48rem);
  }

  .story-copy > .chapter-kicker,
  .story-copy > h2,
  .story-subcopy,
  .story-quotes {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy > h2 {
    max-width: 18ch;
  }

  .story-subcopy {
    max-width: 30rem;
  }

  .story-quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card {
    min-height: 15.5rem;
    padding: 1.75rem;
  }
}

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

  .film,
  .chapter {
    min-height: auto;
  }

  .film-stage,
  .chapter-stage {
    position: relative;
    min-height: 100svh;
  }

  .shot-layer img,
  .chapter-media,
  .story-panel {
    filter: saturate(0.98);
    transform: scale(1) translateZ(0);
  }

  .cue,
  .final-logo,
  .final-line,
  [data-commerce-step],
  .chapter-kicker,
  .chapter-copy h1,
  .chapter-copy h2,
  .chapter-copy > p,
  .buy-copy,
  .faq-panel,
.instagram-link {
    --cue-opacity: 1;
    --cue-y: 0px;
  }

  .shot-layer,
  .story-panel {
    clip-path: none;
  }
}
