/* ════════════════════════════════════════════════════════
   LA PETITE — maison florale
   Quiet-luxury editorial: warm paper, Didone display type,
   hairline rules, gallery plates, slow motion.
   ════════════════════════════════════════════════════════ */

:root {
  --paper: #fbfaf8;
  --paper-deep: #f3f1ed;
  --mat: #ffffff;
  --ink: #1a1712;
  --muted: #75705f;
  --line: rgba(26, 23, 18, 0.12);
  --line-strong: rgba(26, 23, 18, 0.4);
  --accent: #6e2f28;
  --display: "Playfair Display", "Georgia", serif;
  --sans: "Archivo", system-ui, sans-serif;
  --edge: clamp(24px, 5vw, 96px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --veil: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* Paper grain — barely-there texture over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

/* ── Micro-label (the one recurring sans voice) ───────── */
.label,
.nav__links,
.nav__cta,
.hero__meta,
.submit,
.plate__caption,
.footer__nav,
.footer__bottom {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ── Brand ────────────────────────────────────────────── */
.brand {
  display: block;
  width: fit-content;
  line-height: 0;
}

.brand img {
  height: auto;
  object-fit: contain;
}

.brand--nav img {
  width: clamp(88px, 8.5vw, 132px);
}

.brand--footer img {
  width: clamp(100px, 10vw, 148px);
}

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px var(--edge);
  background: transparent;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease),
    border-color 0.5s var(--ease);
}

.nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  color: rgba(23, 20, 15, 0.82);
}

.nav__links a,
.nav__cta,
.mail {
  position: relative;
  width: fit-content;
}

.nav__links a::after,
.nav__cta::after,
.mail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav__links a:hover::after,
.nav__cta:hover::after,
.mail:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  justify-self: end;
  color: var(--accent);
}

.nav__menu {
  display: none;
  justify-self: end;
  width: 34px;
  height: 24px;
  padding: 0;
}

.nav__menu span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}

.nav__menu span + span {
  margin-top: 8px;
}

.nav__menu.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__menu.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* ── Drawer ───────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: center;
  gap: 44px;
  padding: 96px var(--edge) 42px;
  background: var(--paper-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drawer__links {
  display: grid;
  gap: 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 80px);
  line-height: 1.02;
}

.drawer__links a em,
.drawer p {
  font-style: italic;
}

.drawer p {
  margin: 0;
  font-family: var(--display);
  color: var(--muted);
}

/* ── Hero — cinematic opener ──────────────────────────── */
.hero {
  padding: clamp(88px, 10vw, 136px) 0 0;
}

.hero__plate {
  margin: 0;
  overflow: hidden;
  animation: heroFade 1.4s var(--ease) 0.15s both;
}

.hero__plate img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__head {
  max-width: 1440px;
  margin: clamp(40px, 5.5vw, 88px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 72px);
  padding: 0 var(--edge) clamp(48px, 6vw, 96px);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 340;
  font-size: clamp(30px, 3.6vw, 60px);
  line-height: 1.16;
  letter-spacing: -0.008em;
  max-width: 26ch;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__aside {
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
}

.hero__aside p {
  margin: 0;
  max-width: 30ch;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  text-align: right;
}

.hero__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: rgba(23, 20, 15, 0.66);
}

.hero__meta a {
  color: var(--accent);
}

/* ── Intro band ───────────────────────────────────────── */
.intro {
  padding: clamp(80px, 10vw, 152px) var(--edge);
  background: var(--ink);
  color: var(--paper);
}

.intro p {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 1.14;
  letter-spacing: -0.008em;
  text-align: center;
  text-wrap: balance;
}

/* ── Chapters ─────────────────────────────────────────── */
.chapter {
  padding: clamp(72px, 9vw, 140px) var(--edge);
}

.chapter__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: clamp(40px, 5.5vw, 88px);
}

.chapter__no {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--accent);
}

.chapter__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
}

.chapter__name {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.chapter h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-wrap: balance;
}

.chapter h2 em {
  font-style: italic;
}

.chapter .lede {
  max-width: 54ch;
  margin: clamp(26px, 3vw, 44px) 0 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.8;
  color: var(--muted);
}

/* Text CTA — hairline that draws itself outward */
.cta {
  position: relative;
  display: inline-block;
  margin-top: clamp(32px, 3.6vw, 52px);
  padding: 0 0 9px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: width 0.6s var(--ease), background 0.4s var(--ease);
}

.cta:hover {
  color: var(--accent);
}

.cta:hover::after {
  width: calc(100% + clamp(32px, 4vw, 64px));
  background: var(--accent);
}

/* ── Plates — every image is a captioned gallery plate ── */
.plate {
  margin: 0;
}

.plate__frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.plate__caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  color: var(--muted);
  letter-spacing: 0.22em;
  font-size: 9.5px;
}

.plate__caption i {
  font-family: var(--display);
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ── Weddings ─────────────────────────────────────────── */
.weddings__feature {
  max-width: 560px;
  margin: clamp(48px, 6vw, 96px) auto 0;
}

.weddings__feature .plate__frame {
  aspect-ratio: 3 / 4;
}

.weddings__diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 88px);
  max-width: 1240px;
  margin: clamp(64px, 8vw, 128px) auto 0;
  align-items: start;
}

.weddings__diptych .plate:nth-child(2) {
  margin-top: clamp(56px, 8vw, 132px);
}

.weddings__diptych .plate__frame {
  aspect-ratio: 3 / 4;
}

.weddings__close {
  max-width: 640px;
  margin: clamp(64px, 8vw, 120px) auto 0;
  text-align: center;
}

.weddings__close p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.4;
  text-wrap: balance;
}

/* ── Events ───────────────────────────────────────────── */
.events__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  column-gap: clamp(32px, 5vw, 88px);
  row-gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.events__copy {
  padding-top: clamp(8px, 2vw, 40px);
}

/* On desktop the media wrapper is transparent to the grid */
.events__media {
  display: contents;
}

.events__tall .plate__frame {
  aspect-ratio: 3 / 4;
}

.events__detail {
  max-width: 320px;
  margin-left: auto;
}

.events__detail .plate__frame {
  aspect-ratio: 3 / 4;
}

.events__wide {
  grid-column: 1 / -1;
}

.events__wide .plate__frame {
  height: clamp(300px, 42vw, 620px);
}

/* Small looping clips — quiet, no controls */
.clip {
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.clip video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clip--tall {
  width: clamp(220px, 23vw, 320px);
  aspect-ratio: 9 / 16;
}

.clip--square {
  width: clamp(240px, 26vw, 360px);
  aspect-ratio: 1 / 1;
}

.weddings__clip {
  margin: clamp(48px, 6vw, 96px) auto 0;
}

.cafe__clip {
  margin-top: clamp(36px, 4.4vw, 60px);
}

/* ── Statement ────────────────────────────────────────── */
.statement {
  padding: clamp(96px, 12vw, 180px) var(--edge);
  background: var(--ink);
  color: var(--paper);
}

.statement p {
  margin: 0;
  max-width: 20ch;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 100px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.statement p em {
  font-style: italic;
}

/* ── Café / Atelier — copy beside plate ──────────────── */
.duet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(40px, 6vw, 104px);
  align-items: start;
}

.duet--flip {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
}

.duet__media .plate__frame {
  aspect-ratio: 3 / 4;
}

.duet__media {
  max-width: 500px;
  justify-self: end;
}

.duet--flip .duet__media {
  justify-self: start;
}

/* Facts list (hours, address) */
.facts {
  margin: clamp(40px, 5vw, 72px) 0 0;
  max-width: 560px;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.facts dt {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.facts dd a:hover {
  color: var(--accent);
}

/* About — the old image sequence, back where it was */
.about__strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 2.4vw, 40px);
  margin-top: clamp(56px, 7vw, 112px);
  align-items: start;
}

.about__strip .plate__frame {
  position: relative;
  aspect-ratio: 3 / 4;
}

.about__strip .plate__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.4s var(--ease);
}

.about__strip .plate:nth-child(2) {
  margin-top: clamp(32px, 4.4vw, 72px);
}

/* ── Gallery strip ───────────────────────────────────── */
.gallery {
  padding: clamp(72px, 9vw, 140px) var(--edge);
  border-top: 1px solid var(--line);
}

/* Expanding row — five plates; the chosen one opens and lifts */
.expander {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  height: clamp(400px, 58vh, 660px);
  align-items: flex-end;
}

.exp__item {
  position: relative;
  flex: 1;
  height: calc(100% - 26px);
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-deep);
  transition: flex 1.1s var(--ease), height 1.1s var(--ease),
    transform 1.1s var(--ease);
  outline-offset: 4px;
}

.exp__item img {
  filter: saturate(0.92);
  transition: filter 1s var(--ease);
}

.exp__item:hover img {
  filter: saturate(1);
}

.exp__item.is-active {
  flex: 2.7;
  height: 100%;
  transform: translateY(-26px);
}

.exp__item.is-active img {
  filter: saturate(1);
}

.exp__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 44px 18px 14px;
  margin: 0;
  color: #fff;
  background: linear-gradient(to top, rgba(12, 10, 8, 0.55), transparent);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease) 0.25s, transform 0.7s var(--ease) 0.25s;
}

.exp__caption i {
  font-family: var(--display);
  font-style: italic;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.exp__item.is-active .exp__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Collaborations ──────────────────────────────────── */
.collabs {
  padding: clamp(72px, 9vw, 140px) var(--edge);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  --veil: var(--paper-deep);
}

.collabs__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 104px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.collabs__media {
  max-width: 420px;
}

.collabs__media .plate__frame {
  aspect-ratio: 3 / 4;
}

.collabs__eyebrow {
  display: block;
  margin-bottom: clamp(16px, 2vw, 26px);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.collabs__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.collabs__copy h2 em {
  font-style: italic;
}

.collabs__copy .lede {
  max-width: 46ch;
  margin: clamp(22px, 2.6vw, 36px) 0 0;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.8;
  color: var(--muted);
}

/* Logo wall — original wordmarks, free-floating */
.collabs__logos {
  list-style: none;
  margin: clamp(48px, 5.4vw, 80px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: clamp(40px, 4.6vw, 68px);
  column-gap: clamp(24px, 3vw, 56px);
  align-items: center;
}

.collabs__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.collabs__logos img {
  width: auto;
  max-width: 100%;
  height: clamp(16px, 1.6vw, 25px);
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

/* Chopard carries a small "Genève" line inside its mark —
   needs extra height to sit optically equal to the others */
.collabs__logos img[src*="chopard"] {
  height: clamp(28px, 2.7vw, 42px);
}

.collabs__logos li:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.collabs__wordmark {
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0.88;
  transition: opacity 0.6s var(--ease);
}

.collabs__logos li:hover .collabs__wordmark {
  opacity: 1;
}

/* ── Correspondance (inquire) ────────────────────────── */
.inquire {
  padding: clamp(72px, 9vw, 140px) var(--edge) clamp(96px, 11vw, 168px);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  --veil: var(--paper-deep);
}

.inquire__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
}

.inquire h2 {
  max-width: 12ch;
}

.mail {
  display: inline-block;
  margin-top: clamp(26px, 3vw, 44px);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 30px);
  letter-spacing: 0.01em;
  color: var(--accent);
}

.form {
  display: grid;
  gap: clamp(22px, 2.6vw, 32px);
  padding: clamp(28px, 3.4vw, 48px);
  background: var(--mat);
  border: 1px solid var(--line);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form__row--triple {
  grid-template-columns: 1.2fr 0.9fr 1fr;
}

.field {
  display: grid;
  gap: 9px;
}

.field span {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 0 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  font-size: 15px;
  transition: border-color 0.4s var(--ease);
}

.field textarea {
  min-height: 110px;
  padding-top: 10px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.submit {
  justify-self: start;
  padding: 14px 34px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    letter-spacing 0.5s var(--ease);
}

.submit:hover {
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.38em;
}

.form__ok {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  padding: clamp(56px, 6vw, 88px) var(--edge) clamp(24px, 2.4vw, 36px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.footer__grid {
  display: grid;
  gap: clamp(24px, 2.6vw, 40px);
  justify-items: center;
}

.footer .brand--footer {
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 44px);
  color: rgba(23, 20, 15, 0.72);
}

.footer__nav a {
  transition: color 0.3s var(--ease);
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__contact {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer__mail {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 1.5vw, 26px);
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.footer__mail:hover {
  color: var(--accent);
}

.footer__contact address {
  margin: 0;
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  gap: clamp(20px, 2.4vw, 36px);
}

.footer__legal a:hover {
  color: var(--ink);
}

/* ════════════════════════════════════════════════════════
   MOTION — curtain reveals, ken burns, parallax, awakening
   ════════════════════════════════════════════════════════ */

/* Ampersands always render in the classic upright book form */
.amp,
.intro p .amp,
.statement p .amp,
em .amp {
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: 0;
}

/* Word-by-word reveal — each word rises into place */
[data-words] .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}

[data-words].is-in .w {
  opacity: 1;
  transform: translateY(0);
}

/* Text reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Plates simply fade in — calm, no movement */
[data-veil] {
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

[data-veil].is-in {
  opacity: 1;
}

/* Colour awakening — plates rest a touch softer, wake on hover */
.awake .plate__frame img {
  filter: saturate(0.94);
  transition: filter 1s var(--ease), transform 1.9s var(--ease);
}

.awake:hover .plate__frame img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

@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;
  }

  .hero__plate,
  .hero__plate img {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .hero__head,
  .events__grid,
  .duet,
  .duet--flip,
  .inquire__grid,
  .collabs__grid {
    grid-template-columns: 1fr;
  }

  .hero__aside,
  .hero__aside p,
  .hero__meta {
    justify-items: start;
    text-align: left;
  }

  /* Diptych becomes a swipeable strip — next plate peeks in */
  .about__strip {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--edge));
    margin-right: calc(-1 * var(--edge));
    padding-left: var(--edge);
    padding-right: var(--edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about__strip::-webkit-scrollbar {
    display: none;
  }

  .about__strip .plate {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  .about__strip .plate:nth-child(2) {
    margin-top: 0;
  }

  .weddings__diptych {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--edge));
    margin-right: calc(-1 * var(--edge));
    padding-left: var(--edge);
    padding-right: var(--edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .weddings__diptych::-webkit-scrollbar {
    display: none;
  }

  .weddings__diptych .plate {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  .weddings__diptych .plate:nth-child(2) {
    margin-top: 0;
  }

  .duet__media,
  .duet--flip .duet__media {
    justify-self: center;
    max-width: 100%;
  }

  /* Café: image is desktop-only, the clip carries the section on mobile */
  .cafe .duet__media {
    display: none;
  }

  /* Events: one swipeable strip, same rhythm as Weddings */
  .events__media {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--edge));
    margin-right: calc(-1 * var(--edge));
    padding-left: var(--edge);
    padding-right: var(--edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .events__media::-webkit-scrollbar {
    display: none;
  }

  .events__media .plate {
    flex: 0 0 78%;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
  }

  .events__media .plate__frame {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .collabs__media {
    max-width: 78%;
  }

  /* Expander becomes a swipe gallery on touch screens */
  .expander {
    height: auto;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--edge));
    margin-right: calc(-1 * var(--edge));
    padding-left: var(--edge);
    padding-right: var(--edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .expander::-webkit-scrollbar {
    display: none;
  }

  .exp__item,
  .exp__item.is-active {
    flex: 0 0 74%;
    height: auto;
    aspect-ratio: 3 / 4;
    transform: none;
    scroll-snap-align: center;
  }

  .collabs__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 104px;
  }

  .form__row,
  .form__row--triple {
    grid-template-columns: 1fr;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
}
