/* Dream Photography — an editorial wedding album, brought to life */

:root {
  --wine: #641D2F;
  --wine-deep: #4f1524;
  --ivory: #F2E7D7;          /* page, header and canvas share this exactly — no seams */
  --paper: #FAF4EB;          /* slightly lighter cream, for photograph borders only */
  --espresso: #251E1B;
  --blush: #E7D5CC;
  --brass: #AD906B;
  --muted: #5d524c;            /* espresso softened; 6.9:1 on ivory */
  --line: rgba(37, 30, 27, .16);

  --serif: "Bodoni Moda", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --hh: 92px;
  --gutter: clamp(20px, 4.4vw, 72px);
  --ease: cubic-bezier(.22, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hh); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font: 400 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
em { font-style: italic; }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
.contact :focus-visible, .lightbox :focus-visible { outline-color: var(--ivory); }

.wrap { width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--wine); color: var(--ivory); padding: 10px 16px;
  font-size: 14px; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }
.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; }

/* ── Type ── */
.label {
  font: 600 11.5px/1.4 var(--sans);
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}
.label--ivory { color: rgba(250, 244, 235, .78); }

.display {
  font: 400 clamp(42px, 6.6vw, 108px)/1.02 var(--serif);
  font-optical-sizing: auto;
  letter-spacing: -.022em;
  text-wrap: balance;
}
.display em, .intro__title em, .hero__title em, .contact__title em { font-weight: 400; letter-spacing: -.01em; padding-right: .04em; }

.rule { display: block; width: 56px; height: 1px; background: var(--brass); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  font: 600 12.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; }
.btn--sm { min-height: 42px; padding: 0 22px; font-size: 11.5px; }
.btn--wine { background: var(--wine); color: var(--ivory); }
.btn--wine:hover { background: var(--wine-deep); }
.btn--outline { border-color: var(--wine); color: var(--wine); border-width: 1.5px; }
.btn--outline:hover { background: var(--wine); color: var(--ivory); }
.btn--ghost { border-color: rgba(250, 244, 235, .7); color: var(--ivory); }
.btn--ghost:hover { background: var(--ivory); color: var(--espresso); border-color: var(--ivory); }
.btn--ivory { background: var(--ivory); color: var(--wine); min-height: 60px; padding: 0 34px; }
.btn--ivory:hover { background: var(--paper); }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color .4s;
}
.header.is-scrolled { border-bottom-color: transparent; }
.header__inner {
  height: var(--hh);
  display: flex; align-items: center; justify-content: space-between;
  margin-inline: var(--gutter);
  border-bottom: 1px solid rgba(37, 30, 27, .28);
}

.wordmark { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--espresso); line-height: 1; }
.wordmark__dream { font: 500 34px/1 var(--serif); letter-spacing: -.01em; color: var(--wine); padding-bottom: 5px; }
.wordmark__sub { font: 600 7.5px/1 var(--sans); letter-spacing: .46em; text-transform: uppercase; margin-right: -.46em; }
.wordmark--ivory, .wordmark--ivory .wordmark__dream { color: var(--ivory); }

.nav { display: flex; align-items: center; gap: clamp(24px, 2.8vw, 46px); }
.nav .btn { margin-left: clamp(4px, 1vw, 16px); }
.nav a:not(.btn) {
  position: relative; text-decoration: none; padding: 8px 0;
  font: 500 15px/1 var(--sans); letter-spacing: .01em;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--wine);
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a:not(.btn):focus-visible::after { transform: scaleX(1); }

.menu-btn { display: none; align-items: center; gap: 12px; min-height: 44px; padding-inline: 4px; }
.menu-btn__label { font: 600 11.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; }
.menu-btn__bars { position: relative; width: 26px; height: 10px; }
.menu-btn__bars i { position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), top .4s var(--ease); }
.menu-btn__bars i:first-child { top: 0; }
.menu-btn__bars i:last-child { top: 8.5px; }
.menu-btn[aria-expanded="true"] .menu-btn__bars i:first-child { top: 4px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars i:last-child { top: 4px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--hh) 0 0 0; z-index: 99;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px var(--gutter) 36px;
  overflow-y: auto;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  font: 400 44px/1.1 var(--serif); letter-spacing: -.02em; text-decoration: none;
}
.mobile-menu nav a span { font: 600 11px/1 var(--sans); letter-spacing: .2em; color: var(--wine); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.mobile-menu__tel { font: 400 22px/1 var(--serif); text-decoration: none; text-align: center; padding: 10px; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  height: calc(100vh - var(--hh)); height: calc(100svh - var(--hh)); min-height: 620px;
  background: var(--ivory); color: var(--espresso);
}
.hero__grid {
  height: 100%;
  display: grid; grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); column-gap: clamp(20px, 2.2vw, 40px);
  padding: clamp(18px, 3.4vh, 32px) var(--gutter) clamp(64px, 9vh, 88px);
}
.hero__content { position: relative; z-index: 2; align-self: center; container-type: inline-size; padding-bottom: 2vh; }
.hero__label { color: var(--espresso); margin-bottom: clamp(14px, 2.4vh, 26px); }
.hero__title {
  font: 600 clamp(44px, 6vw, 112px)/.98 var(--serif);
  font-optical-sizing: none; font-variation-settings: "opsz" 44;
  letter-spacing: -.035em; color: var(--wine);
}
@supports (font-size: 1cqw) {
  .hero__title { font-size: clamp(40px, min(14.6cqw, 14.2vh), 128px); }   /* tied to its own column, so it can never reach the photograph */
}
.hero__title .line { display: block; white-space: nowrap; }
.hero__title .m, .hero__label .m, .hero__sub .m { display: none; }
.hero__title em { font-weight: 500; letter-spacing: -.02em; padding-right: .06em; }
.hero__sub { margin-top: clamp(18px, 3.4vh, 34px); font-size: clamp(17px, 1.45vw, 23px); line-height: 1.4; color: var(--espresso); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px clamp(24px, 3vw, 44px); margin-top: clamp(24px, 4.6vh, 44px); }
.hero__actions .btn { min-height: 60px; padding-inline: 36px; }
.hero__actions .btn span { font-size: 15px; letter-spacing: 0; }
.hero__talk { font-size: 18px; text-decoration: none; padding: 8px 2px; border-bottom: 1px solid currentColor; transition: color .3s; }
.hero__talk:hover { color: var(--wine); }

.hero__figure { position: relative; display: flex; flex-direction: column; min-height: 0; }
.hero__media { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; background: #d9c8b8; }
.hero__carousel { position: relative; display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
.hero__peek, .hero__slider { display: none; }
.hero__slide { opacity: 0; transition: opacity .5s var(--ease); }
.hero__slide.is-active { opacity: 1; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 28% 50%; }
.hero__slide.is-active { animation: hero-image 1.5s var(--ease) both; }
.hero__figcap { margin-top: 14px; display: block; font: 600 10.5px/1.4 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--espresso); }
.hero__inset {
  position: absolute; z-index: 3; left: -11.5%; bottom: calc(29px + 5.5%); width: 29.5%; aspect-ratio: 1 / 1;
  border: 7px solid var(--paper); background: var(--paper); overflow: hidden;
  animation: rise .9s var(--ease) 1s both;
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }

.hero__label, .hero__title .m, .hero__title .line, .hero__sub, .hero__actions, .hero__figcap { animation: rise .8s var(--ease) both; }
.hero__label { animation-delay: .15s; }
.hero__title .line:nth-child(1) { animation-delay: .25s; }
.hero__title .line:nth-child(2) { animation-delay: .37s; }
.hero__title .line:nth-child(3) { animation-delay: .49s; }
.hero__sub { animation-delay: .66s; }
.hero__actions { animation-delay: .78s; }
.hero__figcap { animation-delay: .9s; }

.hero__scroll {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: clamp(18px, 3vh, 30px);
  display: flex; align-items: center; gap: 30px; text-decoration: none;
  font: 600 10.5px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase;
}
.hero__scroll::before, .hero__scroll::after { content: ""; flex: 1; height: 1px; background: rgba(37, 30, 27, .3); }
.hero__scroll i { font-style: normal; display: inline-block; margin-left: 6px; }
@media (max-height: 640px) { .hero__scroll { display: none; } .hero__grid { padding-bottom: 24px; } }

/* Hero album scene (js/album.js). Without .is-live the hero is exactly the static hero above. */
.hero__stage { position: relative; height: 100%; }
.hero__canvas { display: none; position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__caption, .hero__finale { display: none; }
.hero__finale-title em { font-style: italic; }
.hero.is-live { height: 780vh; overflow: visible; background: var(--ivory); }
/* Anchor for “Explore the stories”: lands exactly on the finished album. */
.hero__end { position: absolute; left: 0; bottom: calc(100vh - var(--hh)); bottom: calc(100svh - var(--hh)); width: 1px; height: 1px; pointer-events: none; }
.hero.is-live .hero__stage { position: sticky; top: var(--hh); height: calc(100vh - var(--hh)); height: calc(100svh - var(--hh)); min-height: 620px; overflow: hidden; }
.hero.is-live .hero__canvas { display: block; }
.hero.is-live .hero__media { background: transparent; }
.hero.is-live .hero__media img { opacity: 0; animation: none; }   /* the WebGL print takes over, pixel for pixel */
.hero.is-live .hero__caption {
  display: block; position: absolute; z-index: 2;
  left: 54%; right: var(--gutter); top: 50%; transform: translateY(-50%);
  opacity: 0; visibility: hidden; pointer-events: none;
}
.hero__caption .label { margin-bottom: clamp(16px, 2vw, 28px); }
.hero__caption-line { font: 700 clamp(40px, 5.2vw, 96px)/1.06 var(--serif); font-optical-sizing: none; font-variation-settings: "opsz" 30; letter-spacing: -.02em; color: var(--espresso); }
.hero__caption-line em { font-weight: 700; }
.hero__caption-line .w { display: inline-block; }
.hero__caption-line em { color: var(--wine); padding-right: .06em; }

@keyframes hero-image { from { opacity: 0; transform: scale(1.05); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes drip { from { transform: translateY(-100%); } to { transform: translateY(260%); } }

/* ── Reveals (content stays visible without JS, or if JS stalls) ── */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in, .js.reveal-all [data-reveal] { opacity: 1; transform: none; }

/* ── Intro ── */
.intro { padding: clamp(96px, 15vw, 220px) 0 clamp(80px, 11vw, 170px); }
.intro__grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2vw, 32px); align-items: start; }
.intro__text { grid-column: 1 / span 8; }
.intro__title {
  margin-top: clamp(20px, 2.4vw, 36px);
  font: 400 clamp(56px, 10vw, 168px)/.96 var(--serif);
  letter-spacing: -.035em; color: var(--wine);
}
.intro__copy { margin: clamp(36px, 5vw, 76px) 0 0 clamp(0px, 8.6vw, 140px); max-width: 30em; display: grid; gap: 26px; }
.intro__copy p { font-size: clamp(17px, 1.35vw, 21px); line-height: 1.75; color: var(--muted); }
.intro__inset { grid-column: 10 / span 3; margin-top: clamp(60px, 11vw, 190px); }

.frame { overflow: hidden; background: var(--blush); }
.intro__inset .frame { aspect-ratio: 4 / 5; }
.intro__inset img { width: 100%; height: 100%; object-fit: cover; }

figcaption {
  margin-top: 14px; display: flex; gap: 14px; align-items: baseline;
  font: 500 12.5px/1.5 var(--sans); letter-spacing: .04em; color: var(--muted);
}
figcaption span { font: 600 11px/1 var(--sans); letter-spacing: .2em; color: var(--wine); text-transform: uppercase; flex: none; }

/* ── Work ── */
.work { padding: clamp(40px, 6vw, 90px) 0 clamp(90px, 12vw, 190px); }
.work__head { display: grid; gap: clamp(18px, 2vw, 30px); padding-top: clamp(36px, 4vw, 60px); border-top: 1px solid var(--line); margin-bottom: clamp(48px, 7vw, 110px); }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2vw, 32px); row-gap: clamp(64px, 9vw, 150px); align-items: start; }
.shot--1 { grid-column: 1 / span 8; }
.shot--2 { grid-column: 10 / span 3; align-self: end; }
.shot--3 { grid-column: 2 / span 3; margin-top: clamp(40px, 8vw, 130px); }
.shot--4 { grid-column: 6 / span 4; }
.gallery__aside {
  grid-column: 10 / span 3; align-self: center;
  font: 400 clamp(22px, 2.1vw, 34px)/1.25 var(--serif); letter-spacing: -.01em; color: var(--wine);
  padding-top: 22px; border-top: 1px solid var(--brass);
}
.shot--5 { grid-column: 1 / span 7; align-self: end; }
.shot--6 { grid-column: 9 / span 3; }
.shot--7 { grid-column: 4 / span 4; }

.shot__btn { display: block; width: 100%; overflow: hidden; background: var(--blush); cursor: zoom-in; }
.shot__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot__btn:hover img, .shot__btn:focus-visible img { transform: scale(1.035); }
.shot--1 .shot__btn { aspect-ratio: 8 / 7; }
.shot--2 .shot__btn { aspect-ratio: 1080 / 1585; }
.shot--3 .shot__btn { aspect-ratio: 4 / 5; }
.shot--4 .shot__btn { aspect-ratio: 3 / 4.6; }
.shot--4 .shot__btn img { object-position: 50% 70%; }
.shot--5 .shot__btn { aspect-ratio: 16 / 9; }
.shot--6 .shot__btn { aspect-ratio: 3 / 4.6; }
.shot--6 .shot__btn img { object-position: 50% 80%; }
.shot--7 .shot__btn { aspect-ratio: 5 / 6; }

/* ── Signature ── */
.signature { background: var(--blush); padding: clamp(72px, 9vw, 150px) 0 clamp(80px, 10vw, 160px); overflow: hidden; }
.signature__wide { aspect-ratio: 21 / 9; overflow: hidden; background: #d9c4bd; }
.signature__wide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.signature__row {
  display: flex; align-items: end; justify-content: space-between; gap: 32px;
  margin: clamp(40px, 5.5vw, 90px) 0 clamp(36px, 4.5vw, 70px);
}
.signature__title em { color: var(--wine); }
.strip-controls { display: flex; gap: 12px; flex: none; padding-bottom: 8px; }
.round-btn {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid rgba(37, 30, 27, .4); border-radius: 50%;
  transition: background-color .3s, color .3s, border-color .3s, opacity .3s;
}
.round-btn svg, .lightbox svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.round-btn:hover:not(:disabled) { background: var(--wine); border-color: var(--wine); color: var(--ivory); }
.round-btn:disabled { opacity: .3; cursor: default; }

.strip {
  display: flex; gap: clamp(14px, 1.8vw, 28px);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-left: max(var(--gutter), calc((100vw - 1560px) / 2 + var(--gutter)));
  padding-inline: max(var(--gutter), calc((100vw - 1560px) / 2 + var(--gutter)));
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { display: none; }
.strip__item { flex: none; width: clamp(250px, 29vw, 460px); scroll-snap-align: start; }
.strip__item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #d9c4bd; }

/* ── Approach ── */
.approach { padding: clamp(96px, 13vw, 210px) 0; }
.approach__head { display: grid; gap: clamp(18px, 2vw, 30px); margin-bottom: clamp(48px, 6vw, 96px); }
.approach__head .display { font-size: clamp(38px, 5.4vw, 88px); }
.approach__head em { color: var(--wine); }
.steps { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2vw, 32px); align-items: baseline;
  padding: clamp(30px, 3.6vw, 58px) 0; border-top: 1px solid var(--line);
}
.step__num { grid-column: 1 / span 2; font: 400 italic clamp(22px, 1.9vw, 30px)/1 var(--serif); color: var(--wine); }
.step__title { grid-column: 3 / span 5; font: 400 clamp(30px, 3.5vw, 58px)/1.08 var(--serif); letter-spacing: -.02em; }
.step__text { grid-column: 9 / span 4; color: var(--muted); max-width: 30em; }

/* ── Contact ── */
.contact { background: var(--wine); color: var(--ivory); padding-top: clamp(96px, 12vw, 190px); }
.contact__title {
  margin-top: clamp(22px, 2.6vw, 40px);
  font: 400 clamp(50px, 11.4vw, 200px)/.95 var(--serif);
  letter-spacing: -.04em;
}
.contact__title .line { display: block; }
.contact__title .line:last-child { padding-left: clamp(0px, 7vw, 120px); }
.contact__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(56px, 7vw, 120px); padding-top: clamp(36px, 4vw, 60px);
  border-top: 1px solid rgba(250, 244, 235, .22);
}
.contact__cta { grid-column: 1 / span 7; }
.contact__lead { font: 400 italic clamp(28px, 3vw, 46px)/1.15 var(--serif); letter-spacing: -.01em; }
.contact__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 34px; margin-top: clamp(28px, 3vw, 44px); }
.link-arrow {
  font: 600 12.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(250, 244, 235, .5); transition: border-color .3s;
}
.link-arrow:hover { border-bottom-color: var(--ivory); }
.contact__details { grid-column: 9 / span 4; font-style: normal; display: grid; gap: 30px; align-content: start; }
.contact__details .label { margin-bottom: 10px; }
.contact__details p:not(.label) { font-size: 17px; line-height: 1.7; }
.contact__details a { text-decoration: none; border-bottom: 1px solid rgba(250, 244, 235, .4); }

.footer { margin-top: clamp(80px, 10vw, 160px); border-top: 1px solid rgba(250, 244, 235, .22); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 30px; }
.footer__note { font-size: 13px; color: rgba(250, 244, 235, .75); }
.footer__top { font: 600 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; padding: 14px 0; }
.footer__top:hover { text-decoration: underline; text-underline-offset: 6px; }

/* ── Lightbox ── */
.lightbox {
  width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(29, 22, 20, .97); color: var(--ivory);
}
.lightbox[open] { display: grid; grid-template: "bar bar bar" auto "prev stage next" 1fr / auto 1fr auto; animation: fade .35s var(--ease); }
.lightbox::backdrop { background: rgba(29, 22, 20, .97); }
.lightbox__bar { grid-area: bar; display: flex; justify-content: space-between; align-items: center; padding: 14px clamp(16px, 3vw, 40px); }
.lightbox__count { font: 600 12px/1 var(--sans); letter-spacing: .24em; }
.lightbox__close { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font: 600 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.lightbox__nav { width: 56px; height: 56px; align-self: center; margin-inline: clamp(8px, 2vw, 32px); display: grid; place-items: center; border: 1px solid rgba(250, 244, 235, .35); border-radius: 50%; transition: background-color .3s, color .3s; }
.lightbox__nav:hover { background: var(--ivory); color: var(--espresso); }
.lightbox__nav--prev { grid-area: prev; }
.lightbox__nav--next { grid-area: next; }
.lightbox__stage { grid-area: stage; min-height: 0; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 22px; }
.lightbox__stage img { max-width: 100%; max-height: calc(100dvh - 150px); width: auto; height: auto; object-fit: contain; }
.lightbox__stage img.is-swapping { opacity: 0; }
.lightbox__stage img { transition: opacity .3s var(--ease); }
.lightbox__stage figcaption { color: rgba(250, 244, 235, .8); justify-content: center; text-align: center; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ── Tablet ── */
@media (max-width: 1100px) {
  .step__title { grid-column: 3 / span 10; }
  .step__text { grid-column: 3 / span 9; margin-top: 14px; }
}

/* ── Mobile ── */
@media (max-width: 860px) {
  :root { --hh: 64px; }
  body { font-size: 16px; }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .wordmark__dream { font-size: 26px; }

  /* Single column: the album line, then a swipeable frame with its neighbours peeking in. */
  .header__inner { border-bottom-color: rgba(37, 30, 27, .2); }
  .wordmark__dream { font-size: 26px; }
  .hero { min-height: 680px; overflow: visible; }
  .hero.is-live { height: 620vh; }
  .hero.is-live .hero__caption { left: var(--gutter); right: var(--gutter); top: auto; bottom: clamp(28px, 7svh, 72px); transform: none; text-align: center; }
  .hero__caption-line { font-size: clamp(34px, 10.4vw, 52px); }

  .hero__grid { display: flex; flex-direction: column; padding: clamp(14px, 2.6svh, 26px) var(--gutter) clamp(16px, 2.6svh, 26px); }
  .hero__title .d, .hero__label .d, .hero__sub .d { display: none; }
  .hero__title .m, .hero__label .m, .hero__sub .m { display: block; }
  .hero__content { display: contents; }
  .hero__label, .hero__title, .hero__sub { text-align: center; }
  .hero__label { margin-bottom: clamp(8px, 1.4svh, 16px); }
  .hero__title { font-size: clamp(34px, 10.4vw, 52px); color: var(--espresso); }
  .hero__title em { color: var(--wine); font-weight: 700; }
  .hero__sub { margin-top: clamp(10px, 1.6svh, 18px); font-size: 16px; color: var(--muted); }

  /* Actions move below the frame; on mobile the header's Enquire covers the call. */
  .hero__actions { order: 3; margin-top: clamp(14px, 2.4svh, 24px); }
  .hero__actions .btn { flex: 1 1 100%; min-height: 58px; padding-inline: 20px; }
  .hero__talk { display: none; }

  .hero__figure { order: 2; flex: 1 1 auto; margin-top: clamp(16px, 2.8svh, 30px); min-height: 300px; }
  .hero__carousel { touch-action: pan-y; }
  .hero__media {
    width: 74%; margin-inline: auto; position: relative; z-index: 2;
    border: 8px solid var(--paper); background: var(--paper);
    box-shadow: 0 10px 30px rgba(37, 30, 27, .09);
  }
  .hero__media img { object-position: 19% 50%; }
  .hero__slide[src*="river"], .hero__slide[src*="blush-portrait"], .hero__slide[src*="red-bride"], .hero__slide[src*="bangles"] { object-position: 50% 45%; }
  .hero__peek {
    display: block; position: absolute; top: 6%; bottom: 6%; width: 30%; overflow: hidden;
    border: 6px solid var(--paper); background: var(--paper);
  }
  .hero__peek img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
  .hero__peek--prev { left: -17%; transform: rotate(-1.2deg); }
  .hero__peek--next { right: -17%; transform: rotate(1.2deg); }
  .hero__inset, .hero__scroll, .hero__figcap { display: none; }

  .hero__slider { display: block; text-align: center; margin-top: clamp(12px, 2svh, 22px); }
  .hero__count { font: 400 clamp(17px, 4.6vw, 21px)/1 var(--serif); letter-spacing: .14em; margin-top: 8px; }
  .hero__slider-row { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 5vw, 30px); margin-top: clamp(10px, 1.8svh, 18px); }
  .hero__slider-row .round-btn { width: 46px; height: 46px; border-color: rgba(37, 30, 27, .45); }
  .hero__dots { display: flex; align-items: center; gap: 7px; }
  .hero__dot { width: 22px; height: 2px; background: rgba(37, 30, 27, .22); transition: background-color .35s; }
  .hero__dot.is-on { background: var(--wine); }
  .hero__swipe { margin-top: 10px; font-size: 14px; color: var(--muted); }

  /* The closing line is already the headline up top, so the orb ends on a burgundy card instead. */
  .hero.is-live .hero__caption { display: none; }
  .hero.is-live .hero__finale {
    display: block; position: absolute; z-index: 4; left: 0; right: 0; bottom: 0;
    background: var(--wine); color: var(--paper);
    padding: clamp(22px, 3.6svh, 34px) var(--gutter) clamp(26px, 4.4svh, 40px);
    box-shadow: 0 -18px 40px rgba(37, 30, 27, .12);
    visibility: hidden;
  }
  .hero__finale-rule { display: block; width: 54px; height: 1px; background: var(--brass); transform-origin: left; margin-bottom: clamp(14px, 2.4svh, 22px); }
  .hero__finale .label { margin-bottom: clamp(10px, 1.6svh, 16px); }
  .hero__finale-title {
    font: 700 clamp(34px, 10.2vw, 50px)/1.04 var(--serif);
    font-optical-sizing: none; font-variation-settings: "opsz" 30;
    letter-spacing: -.025em;
  }
  .hero__finale-title .line { display: block; }
  .hero__finale-title .w { display: inline-block; }
  .hero__finale-title em { color: #E8B9A8; }
  .hero__finale-sub { margin-top: clamp(12px, 2svh, 20px); font-size: 16px; color: rgba(250, 244, 235, .82); }
  .hero__finale-cta { display: flex; width: 100%; margin-top: clamp(16px, 2.6svh, 24px); min-height: 56px; }
  .hero__finale-addr { margin-top: clamp(12px, 2svh, 18px); font-size: 12.5px; line-height: 1.6; color: rgba(250, 244, 235, .62); }

  /* Once the album animation starts, the printed frame hands over to the scene. */
  .hero.is-live .hero__media img { opacity: 0; }
  .hero.is-live .hero__slide.is-active { opacity: 1; }
  .hero.is-live.is-running .hero__slide.is-active { opacity: 0; }
  .hero__peek { transition: opacity .45s var(--ease); }
  .hero.is-live.is-running .hero__peek { opacity: 0; }
  .hero.is-live.is-running .hero__media { border-color: transparent; background: transparent; box-shadow: none; }
  .btn--ghost { border-color: rgba(37, 30, 27, .55); color: var(--espresso); }
  .btn--ghost:hover { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }

  .intro { padding-top: 96px; }
  .intro__grid, .gallery { display: block; }
  .intro__title { font-size: clamp(58px, 17.5vw, 96px); }
  .intro__copy { margin-left: 0; }
  .intro__inset { width: 62%; margin: 64px 0 0 auto; }

  .gallery > * + * { margin-top: 56px; }
  .shot--2 { width: 70%; margin-left: auto; }
  .shot--3 { width: 56%; }
  .shot--4 { width: 78%; margin-left: auto; }
  .gallery__aside { width: 78%; font-size: 26px; }
  .shot--6 { width: 70%; }
  .shot--7 { width: 84%; margin-left: auto; }

  .signature__wide { aspect-ratio: 4 / 3; margin-inline: calc(var(--gutter) * -1); }
  .signature__wide img { object-position: 50% 0; }
  .signature__row { flex-direction: column; align-items: flex-start; gap: 26px; }
  .strip__item { width: 72vw; }
  .round-btn { width: 48px; height: 48px; }

  .step { display: block; }
  .step__num { display: block; margin-bottom: 14px; }
  .step__text { margin-top: 12px; }

  .contact__title { font-size: clamp(50px, 14.6vw, 100px); }
  .contact__title .line:last-child { padding-left: 0; }
  .contact__grid { display: block; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { width: 100%; padding-inline: 16px; letter-spacing: .16em; }
  .link-arrow { align-self: flex-start; }
  .contact__details { margin-top: 56px; }
  .footer__inner { flex-wrap: wrap; }
  .footer__note { order: 3; width: 100%; }

  .lightbox[open] { grid-template: "bar bar" auto "stage stage" 1fr "prev next" auto / 1fr 1fr; }
  .lightbox__stage { padding: 0 12px; }
  .lightbox__stage img { max-height: calc(100dvh - 210px); }
  .lightbox__nav { margin: 12px 8px 22px; width: 52px; height: 52px; }
  .lightbox__nav--prev { justify-self: end; }
  .lightbox__nav--next { justify-self: start; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
