/* ============================================================
   ALESHA — DESIGN SYSTEM
   Centralised tokens. Do not hardcode colours in components.
   ============================================================ */

:root {
  /* ---- COLOUR ---- */
  --ivory: #f5f0e8;
  --cream: #fcfaf6;
  --espresso: #2a211d;
  --taupe: #9a8778;
  --champagne: #a58a62;
  --rose: #b99a96;
  --deep-brown: #211a16;

  --bg: var(--cream);
  --bg-alt: var(--ivory);
  --bg-dark: var(--deep-brown);
  --ink: var(--espresso);
  --ink-soft: #6b5c53;
  --ink-invert: #f3ece3;
  --line: rgba(42, 33, 29, 0.14);
  --line-invert: rgba(243, 236, 227, 0.18);
  --accent: var(--champagne);

  /* ---- TYPE ---- */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: 'Petit Formal Script', 'Cormorant Garamond', cursive;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.85rem);
  --step-0: clamp(0.95rem, 0.92rem + 0.2vw, 1.05rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.1rem);
  --step-4: clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);

  /* ---- SPACE ---- */
  --sp-1: 0.5rem;
  --sp-2: 0.875rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;
  --section-y: clamp(3.5rem, 8vw, 7.5rem);
  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --maxw: 1280px;
  --maxw-text: 62ch;

  /* ---- MOTION ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-1: 260ms;
  --dur-2: 620ms;
  --dur-3: 1000ms;

  --radius: 2px;
  --radius-lg: 6px;
  --nav-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

/* Long unbroken strings (placeholders, handles, URLs) must never
   widen the layout — they wrap instead. */
p,
li,
h1,
h2,
h3,
h4,
span,
a {
  overflow-wrap: break-word;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--espresso);
  color: var(--ink-invert);
  padding: 0.75rem 1.25rem;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--ink-invert);
}
.section--dark .eyebrow {
  color: var(--champagne);
}
.section--dark .lede,
.section--dark .body-text {
  color: rgba(243, 236, 227, 0.74);
}

.section--paper {
  background: var(--bg-alt);
  background-image: radial-gradient(
      circle at 12% 18%,
      rgba(165, 138, 98, 0.07),
      transparent 45%
    ),
    radial-gradient(circle at 88% 82%, rgba(185, 154, 150, 0.09), transparent 48%);
}

/* ============================================================
   TYPE UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--sp-3);
  display: block;
}

.display {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.02;
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
}

.h3 {
  font-family: var(--font-serif);
  font-size: var(--step-1);
}

.script {
  font-family: var(--font-script);
  color: var(--champagne);
  font-size: 1.15em;
  line-height: 1.5;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34ch;
  font-family: var(--font-serif);
}

.body-text {
  color: var(--ink-soft);
  max-width: var(--maxw-text);
}

.caption {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--taupe);
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--champagne);
  margin: var(--sp-3) 0;
  border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: none;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--champagne);
  color: #fffdf9;
}
.btn--primary:hover {
  background: #8f7551;
}
.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--ink-invert);
  border-color: var(--espresso);
}
.btn--on-dark.btn--ghost {
  color: var(--ink-invert);
}
.btn--on-dark.btn--ghost:hover {
  background: var(--ink-invert);
  color: var(--espresso);
}
.btn--text {
  padding: 0.5rem 0;
  min-height: 40px;
  letter-spacing: 0.18em;
  color: var(--champagne);
}
.btn--text::after {
  content: '→';
  transition: transform var(--dur-1) var(--ease);
}
.btn--text:hover::after {
  transform: translateX(5px);
}

/* ============================================================
   PLACEHOLDER SLOT — honest, visible, never fake
   ============================================================ */
.ph {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #eae2d6 0%, #f2ece2 50%, #e6dccd 100%);
  border: 1px dashed rgba(42, 33, 29, 0.28);
  border-radius: var(--radius);
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--sp-3);
  overflow: hidden;
  color: var(--ink-soft);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(154, 135, 120, 0.09) 0 10px,
    transparent 10px 20px
  );
  pointer-events: none;
}
.ph__label {
  position: relative;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.ph__need {
  position: relative;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 26ch;
  color: rgba(42, 33, 29, 0.55);
}
.ph__icon {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}

/* unverified inline data */
.tbc {
  font-style: normal;
  border-bottom: 1px dashed var(--rose);
  color: var(--taupe);
  /* long placeholder strings must wrap, never widen the document */
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.tbc::after {
  content: ' (TBC)';
  font-size: 0.7em;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

/* ============================================================
   FIGURE / IMAGE
   ============================================================ */
.fig {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e0d4;
}
.fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease);
}
.fig--zoom:hover img {
  transform: scale(1.04);
}
.fig__cap {
  margin-top: 0.7rem;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--taupe);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.header--solid {
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header--solid .brandmark,
.header--solid .nav__link,
.header--solid .burger {
  color: var(--ink);
}

.brandmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink-invert);
  transition: color var(--dur-2) var(--ease);
}
.brandmark__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brandmark__sub {
  font-size: 0.7rem;
  white-space: nowrap;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 0.32rem;
}

.nav {
  display: none;
}
.nav__list {
  display: flex;
  gap: clamp(0.85rem, 1.5vw, 1.7rem);
}
.nav__link {
  color: var(--ink-invert);
  font-size: 0.72rem;
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--dur-1) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width var(--dur-1) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current='true']::after {
  width: 100%;
}

.header__cta {
  display: none;
}
/* Header CTA must stay on a single line and never crowd the viewport edge */
.header__cta .btn {
  white-space: nowrap;
  min-height: 42px;
  padding: 0.6rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-invert);
  align-items: flex-end;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease);
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-dark);
  color: var(--ink-invert);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-4)) var(--gutter) var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease),
    visibility var(--dur-2);
}
.drawer[data-open='true'] {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 2.3rem);
  padding: 0.45rem 0;
  display: block;
  border-bottom: 1px solid var(--line-invert);
}
.drawer__foot {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

/* Desktop nav only appears when brandmark + 6 links + CTA truly fit on one row */
@media (min-width: 1180px) {
  .nav,
  .header__cta {
    display: block;
  }
  .burger,
  .drawer {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  background: var(--bg-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media .ph {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(160deg, #3b2f28 0%, #574539 45%, #2a211d 100%);
}
/* The hero slot is full-bleed, so its "pending" note is parked in the top-right
   corner instead of floating in the middle of the headline. */
.hero__media .ph {
  place-content: start end;
  text-align: right;
  padding: calc(var(--nav-h) + var(--sp-3)) var(--gutter) var(--sp-3);
}
.hero__media .ph__label,
.hero__media .ph__need {
  color: rgba(243, 236, 227, 0.52);
}
.hero__media .ph__need {
  max-width: 22ch;
  margin-left: auto;
}
.hero__media .ph__icon {
  margin-left: auto;
  margin-right: 0;
}
.hero__media .ph::before {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(243, 236, 227, 0.05) 0 12px,
    transparent 12px 24px
  );
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(33, 26, 22, 0.72) 0%,
    rgba(33, 26, 22, 0.34) 38%,
    rgba(33, 26, 22, 0.8) 100%
  );
}
.hero__inner {
  padding-block: calc(var(--nav-h) + var(--sp-5)) var(--sp-6);
  color: var(--ink-invert);
  position: relative;
}
.hero__eyebrow {
  color: rgba(243, 236, 227, 0.72);
}
.hero__title {
  max-width: 18ch;
}
.hero__title em {
  font-style: normal;
  display: block;
  font-family: var(--font-script);
  color: var(--champagne);
  font-size: 0.72em;
  line-height: 1.35;
  margin-top: 0.25em;
}
.hero__copy {
  margin-top: var(--sp-3);
  max-width: 46ch;
  color: rgba(243, 236, 227, 0.78);
  font-family: var(--font-serif);
  font-size: var(--step-1);
  line-height: 1.6;
}
.hero__actions {
  margin-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.hero__chapters {
  display: none;
}
.hero__scroll {
  margin-top: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 236, 227, 0.6);
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0% {
    transform: scaleY(0.2);
    transform-origin: top;
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.2);
    transform-origin: bottom;
    opacity: 0.2;
  }
}

@media (min-width: 900px) {
  .hero__chapters {
    display: block;
    position: absolute;
    right: var(--gutter);
    bottom: var(--sp-6);
    text-align: right;
  }
  .hero__chapters li {
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    color: rgba(243, 236, 227, 0.45);
    padding: 0.28rem 0;
  }
  .hero__chapters li a:hover {
    color: var(--champagne);
  }
  .hero__chapters .is-first {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--ink-invert);
  }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.head {
  max-width: 60ch;
  margin-bottom: var(--sp-5);
}
.head--center {
  margin-inline: auto;
  text-align: center;
}
.head p {
  margin-top: var(--sp-2);
}

/* ============================================================
   STORYBOOK CHAPTER STRIP
   ============================================================ */
.chapters {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 68vw;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-3);
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.chapter {
  scroll-snap-align: start;
  display: block;
  position: relative;
}
.chapter .fig,
.chapter .ph {
  aspect-ratio: 3 / 4;
}
.chapter__meta {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.chapter__no {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--champagne);
}
.chapter__title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
}
@media (min-width: 700px) {
  .chapters {
    grid-auto-columns: 34vw;
  }
}
@media (min-width: 1000px) {
  .chapters {
    grid-auto-flow: row;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}

/* ============================================================
   THE WOMAN BEFORE
   ============================================================ */
.before {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}
.before__quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.3;
}
@media (min-width: 860px) {
  .before {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}

/* ============================================================
   PREPARATION COLLAGE
   ============================================================ */
.collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.collage > *:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 860px) {
  .collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: var(--sp-3);
  }
  .collage > *:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .collage > *:nth-child(4) {
    grid-column: span 2;
  }
}

/* ============================================================
   TRANSFORMATION — BEFORE/AFTER SLIDER
   ============================================================ */
.transform {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}
@media (min-width: 940px) {
  .transform {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--sp-6);
  }
}

.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ded5c7;
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
}
@media (min-width: 700px) {
  .ba {
    aspect-ratio: 16 / 11;
  }
}
.ba__pane {
  position: absolute;
  inset: 0;
}
.ba__pane > * {
  width: 100%;
  height: 100%;
  aspect-ratio: auto !important;
  border-radius: 0;
}
.ba__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__pane--after {
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba__tag {
  position: absolute;
  top: var(--sp-2);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(33, 26, 22, 0.6);
  color: #f3ece3;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.ba__tag--before {
  left: var(--sp-2);
}
.ba__tag--after {
  right: var(--sp-2);
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: rgba(252, 250, 246, 0.9);
  transform: translateX(-1px);
  z-index: 4;
  pointer-events: none;
}
.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.96);
  color: var(--espresso);
  display: grid;
  place-content: center;
  font-size: 0.8rem;
  letter-spacing: -0.05em;
  box-shadow: 0 2px 14px rgba(33, 26, 22, 0.28);
}
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 100%;
}
.ba:focus-within .ba__handle {
  background: var(--champagne);
}
.ba:focus-within .ba__grip {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.stats {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.stat__value {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--champagne);
}
.stat__label {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
@media (min-width: 560px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  display: grid;
  gap: var(--sp-4);
  counter-reset: step;
}
.step {
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.step__no {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.35rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
}
.step__body {
  color: var(--ink-soft);
  font-size: 0.94rem;
}
@media (min-width: 720px) {
  .journey {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-3);
  }
}

/* ============================================================
   THE BRIDE — cinematic
   ============================================================ */
.bride {
  position: relative;
}
.bride__media .ph,
.bride__media .fig {
  aspect-ratio: 4 / 5;
}
@media (min-width: 800px) {
  .bride__media .ph,
  .bride__media .fig {
    aspect-ratio: 16 / 9;
  }
}
.bride__caption {
  margin-top: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-3);
  justify-content: space-between;
}

/* ============================================================
   THE MOMENT — video + grid
   ============================================================ */
.moment {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 900px) {
  .moment {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--sp-5);
    align-items: start;
  }
}
.moment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.moment__grid > *:last-child {
  grid-column: span 2;
}
@media (min-width: 900px) {
  .moment__grid > *:last-child {
    grid-column: auto;
  }
  .moment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
}

.videocard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1d1713;
}
.videocard video {
  width: 100%;
  display: block;
  aspect-ratio: 480 / 850;
  object-fit: cover;
  background: #1d1713;
}
@media (min-width: 900px) {
  .videocard video {
    aspect-ratio: 4 / 5;
  }
}
.videocard__btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.7rem;
  border: 0;
  background: linear-gradient(180deg, rgba(33, 26, 22, 0.25), rgba(33, 26, 22, 0.55));
  color: #f3ece3;
  transition: opacity var(--dur-2) var(--ease);
}
.videocard[data-playing='true'] .videocard__btn {
  opacity: 0;
  pointer-events: none;
}
.videocard__ring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 227, 0.7);
  display: grid;
  place-content: center;
  margin-inline: auto;
  font-size: 0.85rem;
  transition: background var(--dur-1) var(--ease);
}
.videocard__btn:hover .videocard__ring {
  background: rgba(165, 138, 98, 0.85);
}
.videocard__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================================================
   THE MEMORY — polaroid archive
   ============================================================ */
.archive {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74vw;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--sp-1) 0 var(--sp-4);
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
@media (min-width: 640px) {
  .archive {
    grid-auto-columns: 40vw;
  }
}
@media (min-width: 1000px) {
  .archive {
    grid-auto-columns: 24%;
  }
}
.polaroid {
  scroll-snap-align: center;
  background: #fffdf9;
  padding: 0.7rem 0.7rem 1.1rem;
  border-radius: 2px;
  box-shadow: 0 8px 26px rgba(42, 33, 29, 0.1), 0 1px 0 rgba(42, 33, 29, 0.06);
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 38px rgba(42, 33, 29, 0.16);
}
.polaroid .ph,
.polaroid .fig {
  aspect-ratio: 1 / 1;
}
.polaroid__body {
  padding: 0.85rem 0.2rem 0;
}
.polaroid__story {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--espresso);
  line-height: 1.4;
}
.polaroid__date {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.4rem;
}
.polaroid__note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.55;
}
.archive__hint {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  color: var(--taupe);
  text-transform: uppercase;
}

/* ============================================================
   ALESHA
   ============================================================ */
.aboutgrid {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}
@media (min-width: 880px) {
  .aboutgrid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--sp-6);
  }
}
.values {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.value {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-2);
}
.value h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.value p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (min-width: 620px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}
.note {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
  margin-top: var(--sp-4);
}
.note__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  gap: var(--sp-3);
}
@media (min-width: 620px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(42, 33, 29, 0.1);
}
.service .fig,
.service .ph {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.service__body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.service__name {
  font-family: var(--font-serif);
  font-size: var(--step-1);
}
.service__text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex: 1;
}
.service__detail {
  font-size: 0.8rem;
  color: var(--taupe);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta__inner {
  position: relative;
  max-width: 42ch;
  margin-inline: auto;
}
.finalcta .display {
  line-height: 1.06;
}
.finalcta__actions {
  margin-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}
.finalcta__contact {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
  text-align: left;
  border-top: 1px solid var(--line-invert);
  padding-top: var(--sp-4);
}
@media (min-width: 720px) {
  .finalcta__contact {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contactitem__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.35rem;
}
.contactitem__value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(243, 236, 227, 0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #191410;
  color: rgba(243, 236, 227, 0.72);
  padding-block: var(--sp-5) var(--sp-4);
  font-size: 0.86rem;
}
.footer__top {
  display: grid;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line-invert);
}
@media (min-width: 820px) {
  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.footer .brandmark {
  color: var(--ink-invert);
}
.footer__title {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--sp-2);
}
.footer__list li {
  padding: 0.28rem 0;
}
.footer__list a:hover {
  color: var(--champagne);
}
.footer__bottom {
  padding-top: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 227, 0.5);
}
.footer .tbc {
  color: rgba(243, 236, 227, 0.6);
  border-color: rgba(185, 154, 150, 0.6);
}

/* editor banner — states plainly that placeholders exist */
.disclaimer {
  background: #efe6d7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-3) 0;
  font-size: 0.8rem;
  color: #5c4a3c;
}
.disclaimer strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
