@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&display=swap");

:root {
  --ink: #171411;
  --paper: #f2ede4;
  --paper-deep: #ded6ca;
  --red: #a52e24;
  --red-dark: #7d211b;
  --olive: #5c6048;
  --line: rgba(23, 20, 17, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { width: 100%; height: 100%; display: block; object-fit: cover; }
button, input, textarea { color: inherit; font: inherit; }
figure { margin: 0; }

.eyebrow {
  margin: 0;
  font: 600 10px/1.5 "Manrope", sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.text-link {
  width: fit-content;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid;
  font: 600 10px "Manrope", sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.text-link span, .button span { transition: transform .25s ease; }
.text-link:hover span, .button:hover span { transform: translate(4px, -4px); }
.button {
  width: fit-content;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font: 600 10px "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.button:hover { background: var(--red); border-color: var(--red); }
.button--light { border-color: rgba(255,255,255,.75); background: white; color: var(--ink); }
.button--light:hover { border-color: white; background: var(--paper); color: var(--ink); }
:focus-visible { outline: 3px solid #efc5be; outline-offset: 3px; }

/* Navigation: a photographer's narrow studio index, not a generic top bar. */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 auto 0 0;
  width: 152px;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: rgba(242, 237, 228, .97);
  border-right: 1px solid var(--ink);
  backdrop-filter: blur(12px);
}
.brand {
  min-height: 158px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}
.brand strong {
  font: 400 31px/.82 "Newsreader", serif;
  letter-spacing: -.055em;
}
.brand span {
  max-width: 108px;
  font: 600 7px/1.5 "Manrope", sans-serif;
  letter-spacing: .14em;
}
.desktop-nav {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.desktop-nav a {
  min-height: 55px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}
.desktop-nav a span, .desktop-nav a i {
  font: 600 7px "Manrope", sans-serif;
  font-style: normal;
}
.desktop-nav a b {
  min-width: 0;
  font: 400 12px "Newsreader", serif;
}
.desktop-nav a:hover, .desktop-nav a.is-active { background: var(--ink); color: var(--paper); }
.header-cta {
  min-height: 116px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--red);
  color: white;
}
.header-cta span { font: 600 7px "Manrope", sans-serif; letter-spacing: .12em; }
.header-cta strong { font: 400 18px/1.03 "Newsreader", serif; }
.header-cta:hover { background: var(--red-dark); }
.menu-toggle, .mobile-menu { display: none; }
body > main, body > [data-footer] { margin-left: 152px; }

/* Home: the photographs sell the work before any explanation. */
.wedding-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.wedding-hero__slides, .wedding-hero__slides figure { position: absolute; inset: 0; }
.wedding-hero__slides figure {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .8s ease, transform 1.3s ease;
}
.wedding-hero__slides figure.is-active { opacity: 1; transform: scale(1); }
.wedding-hero__slides img { object-position: 50% 48%; filter: saturate(.88) contrast(1.04); }
.wedding-hero__slides figure:nth-child(2) img { object-position: 50% 44%; }
.wedding-hero__slides figure:nth-child(3) img { object-position: 50% 45%; }
.wedding-hero__slides figure:nth-child(4) img { object-position: 50% 48%; }
.wedding-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,13,10,.8) 0, rgba(16,13,10,.46) 40%, rgba(16,13,10,.06) 72%),
    linear-gradient(180deg, rgba(16,13,10,.15), transparent 42%, rgba(16,13,10,.65));
}
.wedding-hero__copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: clamp(48px, 6vw, 92px) 5vw 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wedding-hero h1 {
  max-width: 920px;
  margin: auto 0 38px;
  font: 300 clamp(90px, 10vw, 170px)/.78 "Newsreader", serif;
  letter-spacing: -.065em;
}
.wedding-hero h1 em { font-weight: 300; color: #f3c0b6; }
.wedding-hero__intro {
  width: min(760px, 68%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.wedding-hero__intro p {
  max-width: 410px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  text-shadow: 0 1px 15px rgba(0,0,0,.45);
}
.wedding-hero__picker {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 150px));
  border-top: 1px solid rgba(255,255,255,.65);
}
.wedding-hero__picker button {
  min-height: 66px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.38);
  background: rgba(15,13,11,.34);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(7px);
}
.wedding-hero__picker button:first-child { border-left: 1px solid rgba(255,255,255,.38); }
.wedding-hero__picker button:hover, .wedding-hero__picker button.is-active { background: rgba(242,237,228,.94); color: var(--ink); }
.wedding-hero__picker span { font: 600 7px "Manrope", sans-serif; }
.wedding-hero__picker b { font: 500 10px "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.wedding-hero__next { display: none; }

.opening { padding: clamp(90px, 10vw, 180px) 5vw; }
.opening__statement {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 7vw;
  align-items: end;
}
.opening__statement h2 {
  max-width: 1120px;
  margin: 0;
  font: 300 clamp(66px, 7.7vw, 132px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}
.opening__statement h2 em { color: var(--red); font-weight: 300; }
.opening__statement > p { max-width: 430px; margin: 0 0 10px; line-height: 1.65; }
.opening__mosaic {
  margin-top: 9vw;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: minmax(300px, 39vw) auto;
  gap: 18px;
  align-items: start;
}
.opening figure { position: relative; overflow: hidden; }
.opening__lead { grid-row: 1 / 3; }
.opening__lead img { object-position: 50% 43%; }
.opening__portrait { height: 28vw; max-height: 520px; }
.opening__portrait img { object-position: 50% 48%; }
.opening figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: white;
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.opening__note {
  max-width: 420px;
  margin: 18px 0 0;
  padding-left: 36px;
  border-left: 1px solid var(--red);
  font: 300 clamp(23px, 2.2vw, 38px)/1.22 "Newsreader", serif;
}

.story-preview { padding: 9vw 0; background: var(--ink); color: var(--paper); }
.story-preview__head {
  padding: 0 5vw 7vw;
  display: grid;
  grid-template-columns: .35fr 1fr auto;
  gap: 4vw;
  align-items: end;
}
.story-preview__head h2 {
  margin: 0;
  font: 300 clamp(64px, 7.4vw, 126px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}
.story-preview__head h2 em { color: #e3a99e; font-weight: 300; }
.story-preview__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.story-row {
  min-height: 380px;
  padding: 18px 4vw;
  display: grid;
  grid-template-columns: 1.3fr 150px .7fr 30px;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(242,237,228,.33);
  transition: background .3s ease, color .3s ease;
}
.story-row:last-child { border-bottom: 1px solid rgba(242,237,228,.33); }
.story-row:hover { background: var(--paper); color: var(--ink); }
.story-row--reverse { grid-template-columns: .7fr 150px 1.3fr 30px; }
.story-row--reverse figure { grid-column: 3; }
.story-row--reverse > span { grid-column: 2; grid-row: 1; }
.story-row--reverse > strong { grid-column: 1; grid-row: 1; }
.story-row figure { height: 345px; overflow: hidden; }
.story-row img { transition: transform .6s ease; }
.story-row:hover img { transform: scale(1.018); }
.story-row > span { font: 600 8px "Manrope", sans-serif; letter-spacing: .12em; }
.story-row > strong { font: 300 clamp(33px, 3.2vw, 55px)/1.05 "Newsreader", serif; }
.story-row > i { font-style: normal; }

.trust { display: grid; grid-template-columns: .78fr 1.22fr; }
.trust__score {
  min-height: 620px;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--red);
  color: white;
}
.trust__score > span { font: 300 clamp(150px, 18vw, 300px)/.75 "Newsreader", serif; letter-spacing: -.08em; }
.trust__score div { color: #ffd0a4; font-size: 23px; letter-spacing: .16em; }
.trust__score p { margin: 0; font: 600 9px "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.trust__copy {
  padding: 8vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust__copy h2 {
  margin: 32px 0;
  font: 300 clamp(54px, 6.3vw, 104px)/.95 "Newsreader", serif;
  letter-spacing: -.05em;
}
.trust__copy > p:not(.eyebrow) { max-width: 620px; margin: 0 0 44px; font-size: 17px; line-height: 1.65; }

.home-services {
  min-height: 840px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  background: var(--olive);
  color: white;
}
.home-services figure { min-height: 840px; }
.home-services figure img { object-position: 50% 47%; }
.home-services > div {
  padding: 7vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-services h2 {
  margin: 38px 0;
  font: 300 clamp(66px, 7vw, 116px)/.88 "Newsreader", serif;
  letter-spacing: -.055em;
}
.home-services h2 em { color: #e8d4c7; font-weight: 300; }
.home-services p:not(.eyebrow) { max-width: 450px; margin: 0 0 48px; line-height: 1.65; }

.final-call {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: white;
}
.final-call > img { position: absolute; inset: 0; object-position: 50% 46%; }
.final-call::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,12,10,.78), rgba(14,12,10,.05) 75%), linear-gradient(0deg, rgba(14,12,10,.45), transparent 60%); }
.final-call > div {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-call h2 {
  margin: 38px 0 52px;
  font: 300 clamp(72px, 8.8vw, 150px)/.87 "Newsreader", serif;
  letter-spacing: -.06em;
}
.final-call h2 em { color: #f1b7ac; font-weight: 300; }
.final-call--compact, .final-call--compact > div { min-height: 76vh; }

/* Shared inner-page image hero */
.photo-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.photo-hero > img { position: absolute; inset: 0; object-position: 50% 45%; }
.photo-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,12,10,.82), rgba(15,12,10,.22) 62%, rgba(15,12,10,.05)), linear-gradient(0deg, rgba(15,12,10,.58), transparent 55%); }
.photo-hero__copy {
  position: relative;
  z-index: 2;
  min-height: 92svh;
  max-width: 1300px;
  padding: 9vw 5vw 7vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.photo-hero h1 {
  margin: 30px 0;
  font: 300 clamp(76px, 8.3vw, 142px)/.88 "Newsreader", serif;
  letter-spacing: -.06em;
}
.photo-hero h1 em { color: #f0b5aa; font-weight: 300; }
.photo-hero__copy > p:last-child { max-width: 600px; margin: 0; font-size: 17px; line-height: 1.6; }
.photo-hero--stories > img { object-position: 50% 40%; }
.photo-hero--motion > img { object-position: 50% 47%; }
.photo-hero--experience > img { object-position: 50% 43%; }

/* Stories */
.chapter { padding: 9vw 5vw; }
.chapter header {
  display: grid;
  grid-template-columns: 70px .35fr 1fr;
  gap: 3vw;
  align-items: start;
}
.chapter header > span { color: var(--red); font: 500 34px "Newsreader", serif; }
.chapter h2 {
  max-width: 980px;
  margin: 0;
  font: 300 clamp(62px, 7vw, 120px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}
.chapter h2 em { color: #e9aa9e; font-weight: 300; }
.chapter__panorama { height: min(66vw, 930px); margin-top: 7vw; overflow: hidden; }
.chapter__panorama img { object-position: 50% 45%; }
.chapter__pair {
  margin: 20px 0 0 16%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4vw;
  align-items: end;
}
.chapter__pair figure { height: min(52vw, 720px); overflow: hidden; }
.chapter__pair figure img { object-position: 50% 43%; }
.chapter__pair > p, .chapter__aside {
  max-width: 510px;
  margin: 0 0 6vw;
  font: 300 clamp(26px, 2.7vw, 46px)/1.18 "Newsreader", serif;
}
.chapter--dark { background: var(--ink); color: var(--paper); }
.chapter--dark header > span { color: #e5a69b; }
.chapter__duo {
  margin-top: 7vw;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 20px;
  align-items: end;
}
.chapter__duo figure:first-child { height: min(49vw, 700px); }
.chapter__duo figure:last-child { height: min(61vw, 880px); }
.chapter__duo img { object-position: 50% 44%; }
.chapter__aside { margin: 5vw 0 0 auto; }
.chapter--red { background: var(--red); color: white; }
.chapter--red header > span { color: #f1c9c0; }
.chapter__panorama--night img { object-position: 50% 48%; }
.chapter__pair--flip { margin-left: 0; margin-right: 16%; grid-template-columns: .85fr 1.15fr; }
.chapter__pair--flip figure { grid-column: 2; }
.chapter__pair--flip > p { grid-column: 1; grid-row: 1; }
.story-ending {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.story-ending figure { min-height: 820px; }
.story-ending figure img { object-position: 50% 45%; }
.story-ending > div { padding: 7vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.story-ending h2 {
  margin: 35px 0 50px;
  font: 300 clamp(62px, 6.8vw, 112px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}

/* Photo + video */
.medium { min-height: 800px; display: grid; grid-template-columns: .75fr 1.25fr; }
.medium--video { grid-template-columns: 1.25fr .75fr; background: var(--red); color: white; }
.medium > figure { min-height: 800px; overflow: hidden; }
.medium--photo figure img { object-position: 50% 44%; }
.medium--video figure img { object-position: 50% 47%; }
.medium__copy { padding: 7vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.medium__copy > span { font: 600 9px "Manrope", sans-serif; letter-spacing: .13em; }
.medium h2 {
  margin: 40px 0;
  font: 300 clamp(64px, 7vw, 118px)/.9 "Newsreader", serif;
  letter-spacing: -.055em;
}
.medium__copy > p { max-width: 520px; margin: 0; line-height: 1.7; }
.motion-strip { padding: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: var(--ink); color: white; }
.motion-strip figure { position: relative; height: 38vw; max-height: 630px; overflow: hidden; }
.motion-strip img { object-position: 50% 44%; }
.motion-strip figure:last-child img { object-position: 50% 48%; }
.motion-strip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 30px 18px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.coverage { padding: 9vw 5vw; }
.coverage header { display: grid; grid-template-columns: .45fr 1fr; gap: 5vw; align-items: end; }
.coverage h2 {
  margin: 0;
  font: 300 clamp(64px, 7vw, 120px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}
.coverage ul { margin: 7vw 0 0; padding: 0; list-style: none; border-top: 1px solid; }
.coverage li {
  min-height: 98px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 70px 1fr .7fr;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid;
}
.coverage li span, .coverage li small { font: 600 9px/1.5 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.coverage li strong { font: 300 clamp(30px, 3vw, 50px) "Newsreader", serif; }
.coverage .source-note { max-width: 720px; margin: 30px 0 0 auto; font: 600 8px/1.6 "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; }

/* Experience */
.journey article {
  min-height: 680px;
  display: grid;
  grid-template-columns: 80px .75fr 1.25fr;
  border-bottom: 1px solid;
}
.journey article:nth-child(even) { background: var(--ink); color: var(--paper); }
.journey__number { padding: 44px 18px; border-right: 1px solid; color: var(--red); font: 500 26px "Newsreader", serif; }
.journey article:nth-child(even) .journey__number { color: #e5a69b; }
.journey__copy { padding: 6vw 4vw; display: flex; flex-direction: column; justify-content: center; }
.journey__copy { min-width: 0; }
.journey h2 {
  margin: 35px 0;
  font: 300 clamp(53px, 5.8vw, 98px)/.92 "Newsreader", serif;
  letter-spacing: -.05em;
}
.journey__copy > p:last-child { max-width: 520px; margin: 0; line-height: 1.65; }
.journey figure { min-height: 680px; overflow: hidden; }
.journey figure img { object-position: 50% 43%; }
.numbers { padding: 8vw 5vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--red); color: white; }
.numbers > p { grid-column: 1 / -1; margin-bottom: 5vw; }
.numbers > div { min-height: 260px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.48); }
.numbers strong { font: 300 clamp(84px, 9vw, 150px)/.8 "Newsreader", serif; }
.numbers span { max-width: 230px; font: 600 9px/1.5 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.experience-close { min-height: 820px; display: grid; grid-template-columns: 1.25fr .75fr; }
.experience-close figure { min-height: 820px; }
.experience-close figure img { object-position: 50% 46%; }
.experience-close > div { padding: 7vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.experience-close h2 {
  margin: 35px 0;
  font: 300 clamp(68px, 7vw, 118px)/.9 "Newsreader", serif;
  letter-spacing: -.055em;
}
.experience-close h2 em { color: var(--red); font-weight: 300; }
.experience-close > div > p:not(.eyebrow) { max-width: 460px; margin: 0 0 42px; line-height: 1.65; }

/* Team */
.team-intro {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 34%;
  background: var(--ink);
  color: var(--paper);
}
.team-intro__portrait { grid-row: 1 / 3; min-height: 100svh; overflow: hidden; }
.team-intro__portrait img { object-position: 52% 32%; }
.team-intro__copy { padding: 7vw 5vw 4vw; display: flex; flex-direction: column; justify-content: center; }
.team-intro h1 {
  margin: 38px 0;
  font: 300 clamp(62px, 6.5vw, 108px)/.91 "Newsreader", serif;
  letter-spacing: -.055em;
}
.team-intro h1 em { color: #e3a99e; font-weight: 300; }
.team-intro__copy > p:last-child { max-width: 520px; margin: 0; line-height: 1.65; }
.team-intro__work { position: relative; min-height: 270px; margin: 0 5vw 4vw; overflow: hidden; }
.team-intro__work img { object-position: 50% 45%; }
.team-intro__work figcaption { position: absolute; inset: auto 0 0; padding: 12px; background: rgba(0,0,0,.65); font: 600 8px "Manrope", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.people { display: grid; grid-template-columns: 1fr 1fr; }
.people article { min-height: 580px; padding: 6vw 5vw; display: flex; flex-direction: column; border-right: 1px solid; border-bottom: 1px solid; }
.people article:last-child { border-right: 0; }
.people span { font: 600 9px "Manrope", sans-serif; letter-spacing: .12em; }
.people h2 { margin: auto 0 42px; font: 300 clamp(54px, 6vw, 100px)/.9 "Newsreader", serif; letter-spacing: -.05em; }
.people p { max-width: 560px; margin: 0; line-height: 1.65; }
.manifesto { min-height: 820px; display: grid; grid-template-columns: 1.2fr .8fr; background: var(--red); color: white; }
.manifesto figure { min-height: 820px; }
.manifesto figure img { object-position: 50% 42%; }
.manifesto blockquote { margin: 0; padding: 7vw 5vw; display: flex; flex-direction: column; justify-content: center; font: 300 clamp(48px, 5.2vw, 86px)/1 "Newsreader", serif; letter-spacing: -.045em; }
.manifesto blockquote > span, .manifesto blockquote > small { font: 600 8px/1.5 "Manrope", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.manifesto blockquote > span { margin-bottom: 48px; }
.manifesto blockquote > small { margin-top: 48px; opacity: .82; }
.team-work { padding: 9vw 5vw; }
.team-work header { display: grid; grid-template-columns: .4fr 1fr; gap: 5vw; align-items: end; }
.team-work h2 { margin: 0; font: 300 clamp(60px, 7vw, 118px)/.92 "Newsreader", serif; letter-spacing: -.055em; }
.team-work h2 em { color: var(--red); font-weight: 300; }
.team-work > div { margin: 7vw 0 45px; display: grid; grid-template-columns: .85fr 1.3fr .85fr; gap: 18px; align-items: center; }
.team-work figure { height: 39vw; max-height: 620px; overflow: hidden; }
.team-work figure:nth-child(2) { height: 50vw; max-height: 780px; }
.team-work img { object-position: 50% 44%; }

/* Contact: hero and form are separate, so neither can clip the other. */
.contact-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: white;
}
.contact-hero > img { position: absolute; inset: 0; object-position: 50% 45%; }
.contact-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,13,11,.8), rgba(16,13,11,.16) 72%), linear-gradient(0deg, rgba(16,13,11,.53), transparent 55%); }
.contact-hero__copy {
  position: relative;
  z-index: 2;
  min-height: 76svh;
  max-width: 1120px;
  padding: 8vw 5vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.contact-hero h1 {
  width: 100%;
  margin: 30px 0 26px;
  font: 300 clamp(94px, 10vw, 170px)/.82 "Newsreader", serif;
  letter-spacing: -.065em;
}
.contact-hero__copy > p:last-child { max-width: 590px; margin: 0; font-size: 17px; line-height: 1.6; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; }
.contact-details { padding: 8vw 5vw; background: var(--red); color: white; }
.contact-details h2 {
  margin: 38px 0;
  font: 300 clamp(56px, 6vw, 100px)/.92 "Newsreader", serif;
  letter-spacing: -.055em;
}
.contact-details > p:not(.eyebrow) { max-width: 480px; margin: 0; line-height: 1.65; }
.contact-details dl { margin: 7vw 0 0; }
.contact-details dl div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.55);
}
.contact-details dt { font: 600 8px "Manrope", sans-serif; letter-spacing: .1em; }
.contact-details dd { min-width: 0; margin: 0; font-size: 13px; line-height: 1.55; overflow-wrap: anywhere; }
.contact-form { padding: 8vw 6vw; }
.contact-form > .eyebrow { margin-bottom: 50px; }
.contact-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-form form, .contact-form label, .contact-form input, .contact-form textarea { min-width: 0; }
.contact-form label { display: grid; gap: 10px; font: 600 9px "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.contact-form label.wide { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  outline: 0;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 2px 0 var(--red); }
.contact-form button {
  grid-column: 1 / -1;
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: 600 10px "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form button:hover { background: var(--red); border-color: var(--red); }
.contact-form [data-form-status] { grid-column: 1 / -1; min-height: 22px; margin: 0; font-size: 12px; line-height: 1.5; }
.contact-memory { position: relative; min-height: 72vh; overflow: hidden; color: white; }
.contact-memory figure, .contact-memory figure::after { position: absolute; inset: 0; }
.contact-memory figure::after { content: ""; background: rgba(16,13,11,.38); }
.contact-memory figure img { object-position: 50% 44%; }
.contact-memory > p {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0;
  padding: 9vw 5vw;
  font: 300 clamp(70px, 8.5vw, 145px)/.88 "Newsreader", serif;
  letter-spacing: -.055em;
}
.contact-memory em { color: #f1b8ae; font-weight: 300; }

/* Full portfolio gallery */
.gallery-intro { padding: 11vw 5vw 7vw; background: var(--paper); }
.gallery-intro h1 {
  margin: 45px 0 6vw;
  font: 300 clamp(82px, 9vw, 154px)/.84 "Newsreader", serif;
  letter-spacing: -.065em;
}
.gallery-intro h1 em { color: var(--red); font-weight: 300; }
.gallery-intro > div { margin-left: 38%; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.gallery-intro > div p { max-width: 540px; margin: 0; font-size: 17px; line-height: 1.65; }
.gallery-intro > div span { font: 600 8px "Manrope", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.gallery-browser { padding: 0 18px 9vw; background: var(--ink); color: var(--paper); }
.gallery-filters {
  position: sticky;
  z-index: 8;
  top: 0;
  padding: 17px 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: var(--ink);
  border-bottom: 1px solid rgba(242,237,228,.4);
}
.gallery-filters button {
  flex: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(242,237,228,.45);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: 600 8px "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gallery-filters button:hover, .gallery-filters button.is-active { background: var(--paper); color: var(--ink); }
.gallery-filters span { margin-left: 15px; opacity: .6; }
.gallery-grid { padding-top: 18px; columns: 3; column-gap: 18px; }
.gallery-grid [data-gallery-item] {
  position: relative;
  width: 100%;
  height: 28vw;
  max-height: 520px;
  margin: 0 0 18px;
  padding: 0;
  display: block;
  break-inside: avoid;
  overflow: hidden;
  border: 0;
  background: #28231f;
  color: white;
  cursor: zoom-in;
}
.gallery-grid [data-gallery-item]:nth-child(5n + 2),
.gallery-grid [data-gallery-item]:nth-child(7n + 4) { height: 38vw; max-height: 680px; }
.gallery-grid [data-gallery-item]:nth-child(6n + 1) { height: 22vw; max-height: 420px; }
.gallery-grid [data-gallery-item][hidden] { display: none; }
.gallery-grid img { object-position: 50% 45%; transition: transform .55s ease, filter .35s ease; }
.gallery-grid button:hover img { transform: scale(1.018); filter: brightness(.88); }
.gallery-grid button span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 7px;
  background: rgba(16,13,11,.76);
  font: 600 7px "Manrope", sans-serif;
  letter-spacing: .1em;
}
.gallery-closer { padding: 9vw 5vw; }
.gallery-closer h2 {
  margin: 38px 0 52px;
  font: 300 clamp(72px, 8vw, 138px)/.88 "Newsreader", serif;
  letter-spacing: -.06em;
}
.gallery-closer h2 em { color: var(--red); font-weight: 300; }
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 58px 85px 45px;
  overflow: hidden;
  border: 0;
  background: rgba(15,13,11,.97);
  color: white;
}
.lightbox[open] { display: grid; grid-template-columns: 54px 1fr 54px; gap: 22px; align-items: center; }
.lightbox::backdrop { background: rgba(15,13,11,.94); }
.lightbox figure { min-width: 0; height: calc(100dvh - 103px); display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 14px; }
.lightbox figure img { object-fit: contain; }
.lightbox figcaption { text-align: center; font: 600 8px "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.lightbox button { border: 0; background: transparent; color: white; cursor: pointer; }
.lightbox__previous, .lightbox__next { min-height: 70px; font-size: 28px; }
.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 24px;
  padding: 10px;
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Footer */
.prototype-notice {
  padding: 24px 5vw;
  display: grid;
  grid-template-columns: .3fr 1fr;
  gap: 5vw;
  background: var(--paper-deep);
  border-top: 1px solid;
}
.prototype-notice strong, .prototype-notice p { font: 600 8px/1.6 "Manrope", sans-serif; letter-spacing: .08em; }
.prototype-notice p { max-width: 960px; margin: 0; }
.site-footer {
  min-height: 560px;
  padding: 6vw 5vw 30px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 7vw;
  background: var(--ink);
  color: var(--paper);
}
.site-footer__cta { display: flex; flex-direction: column; justify-content: space-between; }
.site-footer__cta h2 { margin: 50px 0; font: 300 clamp(68px, 7vw, 120px)/.88 "Newsreader", serif; letter-spacing: -.055em; }
.site-footer__cta h2 em { color: #e3a99e; font-weight: 300; }
.site-footer__cta .text-link { color: var(--paper); }
.site-footer__details { display: flex; flex-direction: column; justify-content: space-between; }
.site-footer__details > span { font: 600 8px "Manrope", sans-serif; letter-spacing: .12em; }
.site-footer__details address { margin: auto 0 40px; font-style: normal; font-size: 13px; line-height: 1.7; }
.site-footer__links { display: grid; border-top: 1px solid rgba(242,237,228,.4); }
.site-footer__links a { padding: 13px 0; border-bottom: 1px solid rgba(242,237,228,.4); font-size: 12px; }
.site-footer__bottom { grid-column: 1 / -1; padding-top: 28px; display: flex; justify-content: space-between; border-top: 1px solid rgba(242,237,228,.4); color: #aaa39a; font: 600 7px "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1180px) {
  body > main, body > [data-footer] { margin-left: 0; }
  .site-header {
    inset: 0 0 auto;
    width: 100%;
    height: 76px;
    display: grid;
    grid-template-columns: 1fr 86px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .brand { min-height: 0; padding: 10px 20px; justify-content: center; border-bottom: 0; }
  .brand strong { font-size: 23px; line-height: .92; }
  .brand strong br { display: none; }
  .brand span { margin-top: 3px; max-width: none; font-size: 6px; }
  .brand span br { display: none; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 4;
    display: block;
    border: 0;
    border-left: 1px solid;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle i { position: absolute; left: 50%; top: 29px; width: 24px; height: 1px; background: currentColor; transform: translateX(-50%); transition: .25s; }
  .menu-toggle i:last-child { top: 45px; }
  .menu-toggle[aria-expanded="true"] i { top: 37px; transform: translateX(-50%) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-child { transform: translateX(-50%) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    height: 100dvh;
    padding: 116px 24px max(26px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--red);
    color: white;
    transform: translateX(102%);
    transition: transform .42s cubic-bezier(.75,0,.2,1);
  }
  .mobile-menu[aria-hidden="false"] { transform: none; }
  .mobile-menu > span { margin-bottom: 28px; font: 600 8px "Manrope", sans-serif; letter-spacing: .12em; }
  .mobile-menu nav { border-top: 1px solid rgba(255,255,255,.58); }
  .mobile-menu nav a { min-height: 68px; padding: 12px 0; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; border-bottom: 1px solid rgba(255,255,255,.58); font: 300 39px/1 "Newsreader", serif; }
  .mobile-menu nav a span, .mobile-menu nav a i { font: 600 8px "Manrope", sans-serif; font-style: normal; }
  .mobile-menu__foot { margin-top: auto; padding-top: 35px; display: flex; justify-content: space-between; gap: 20px; font: 600 8px/1.5 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
  .wedding-hero, .photo-hero, .contact-hero, .team-intro { margin-top: 76px; }
  .wedding-hero, .wedding-hero__copy { min-height: calc(100svh - 76px); }
  .team-intro { min-height: calc(100svh - 76px); }
  .team-intro__portrait { min-height: calc(100svh - 76px); }
}

@media (max-width: 900px) {
  .wedding-hero__shade { background: linear-gradient(180deg, rgba(15,12,10,.24), rgba(15,12,10,.08) 35%, rgba(15,12,10,.79)); }
  .wedding-hero__copy { padding: 38px 20px 138px; justify-content: end; }
  .wedding-hero h1 { margin: auto 0 28px; font-size: clamp(76px, 20vw, 118px); }
  .wedding-hero__intro { width: 100%; align-items: flex-start; }
  .wedding-hero__intro p { max-width: 380px; }
  .wedding-hero__picker { right: 20px; left: 20px; bottom: 18px; grid-template-columns: repeat(4, 1fr); }
  .wedding-hero__picker button { min-width: 0; min-height: 58px; }

  .opening { padding: 90px 20px; }
  .opening__statement { grid-template-columns: 1fr; gap: 35px; }
  .opening__statement h2 { font-size: clamp(62px, 12vw, 92px); }
  .opening__mosaic { margin-top: 80px; grid-template-columns: 1fr; grid-template-rows: auto; }
  .opening__lead { grid-row: auto; height: 76vw; min-height: 480px; }
  .opening__portrait { width: 72%; height: 72vw; min-height: 430px; margin-left: auto; }
  .opening__note { margin: 25px 0 0; font-size: 30px; }

  .story-preview { padding: 90px 0; }
  .story-preview__head { padding: 0 20px 65px; grid-template-columns: 1fr; gap: 30px; }
  .story-preview__head h2 { font-size: 71px; }
  .story-preview__actions { align-items: flex-start; }
  .story-row, .story-row--reverse {
    min-height: auto;
    padding: 20px;
    grid-template-columns: 70px 1fr 24px;
    gap: 18px;
  }
  .story-row figure, .story-row--reverse figure { grid-column: 1 / -1; grid-row: 1; height: 66vw; min-height: 420px; }
  .story-row > span, .story-row--reverse > span { grid-column: 1; grid-row: 2; }
  .story-row > strong, .story-row--reverse > strong { grid-column: 2; grid-row: 2; font-size: 40px; }
  .story-row > i { grid-column: 3; grid-row: 2; }

  .trust { grid-template-columns: 1fr; }
  .trust__score { min-height: 400px; padding: 55px 20px; }
  .trust__score > span { font-size: 170px; }
  .trust__copy { padding: 80px 20px; }
  .trust__copy h2 { font-size: 65px; }
  .home-services { min-height: auto; grid-template-columns: 1fr; }
  .home-services figure { min-height: 72vw; }
  .home-services > div { padding: 75px 20px; }
  .home-services h2 { font-size: 76px; }
  .final-call, .final-call > div { min-height: 72vh; }
  .final-call > div { padding: 75px 20px; }
  .final-call h2 { font-size: 78px; }

  .photo-hero, .photo-hero__copy { min-height: 78svh; }
  .photo-hero__copy { padding: 100px 20px 50px; }
  .photo-hero h1 { font-size: clamp(66px, 14vw, 96px); }
  .photo-hero__copy > p:last-child { font-size: 15px; }

  .chapter { padding: 85px 20px; }
  .chapter header { grid-template-columns: 45px 1fr; gap: 22px; }
  .chapter header .eyebrow { grid-column: 2; }
  .chapter h2 { grid-column: 1 / -1; margin-top: 18px; font-size: 70px; }
  .chapter__panorama { height: 72vw; min-height: 500px; margin-top: 60px; }
  .chapter__pair, .chapter__pair--flip { margin: 18px 0 0 14%; grid-template-columns: 1fr; }
  .chapter__pair figure, .chapter__pair--flip figure { grid-column: auto; grid-row: auto; height: 74vw; min-height: 500px; }
  .chapter__pair > p, .chapter__pair--flip > p { grid-column: auto; grid-row: auto; margin: 30px 0; font-size: 34px; }
  .chapter__duo { grid-template-columns: 1fr; }
  .chapter__duo figure:first-child { width: 76%; height: 82vw; min-height: 500px; }
  .chapter__duo figure:last-child { height: 86vw; min-height: 540px; }
  .chapter__aside { margin: 50px 0 0; font-size: 34px; }
  .story-ending { min-height: auto; grid-template-columns: 1fr; }
  .story-ending figure { min-height: 75vw; }
  .story-ending > div { padding: 75px 20px; }
  .story-ending h2 { font-size: 72px; }

  .medium, .medium--video { min-height: auto; grid-template-columns: 1fr; }
  .medium > figure { min-height: 74vw; }
  .medium--video figure { grid-row: 1; }
  .medium__copy { padding: 75px 20px; }
  .medium h2 { font-size: 74px; }
  .motion-strip { grid-template-columns: 80vw 80vw 80vw; overflow-x: auto; scroll-snap-type: x mandatory; }
  .motion-strip figure { height: 95vw; max-height: none; scroll-snap-align: start; }
  .coverage { padding: 85px 20px; }
  .coverage header { grid-template-columns: 1fr; gap: 28px; }
  .coverage h2 { font-size: 72px; }
  .coverage li { grid-template-columns: 40px 1fr; }
  .coverage li small { grid-column: 2; }

  .journey article { min-height: auto; grid-template-columns: 54px 1fr; }
  .journey__number { padding: 34px 13px; }
  .journey__copy { padding: 65px 20px; }
  .journey h2 { font-size: 66px; }
  .journey figure { grid-column: 1 / -1; min-height: 74vw; }
  .numbers { padding: 75px 20px; grid-template-columns: 1fr; }
  .numbers > p { grid-column: auto; margin-bottom: 35px; }
  .numbers > div { min-height: 220px; }
  .numbers strong { font-size: 110px; }
  .experience-close { min-height: auto; grid-template-columns: 1fr; }
  .experience-close figure { min-height: 78vw; }
  .experience-close > div { padding: 75px 20px; }
  .experience-close h2 { font-size: 76px; }

  .team-intro { grid-template-columns: 1fr; grid-template-rows: auto; }
  .team-intro__portrait { grid-row: auto; min-height: 72vw; }
  .team-intro__copy { padding: 75px 20px; }
  .team-intro h1 { font-size: 70px; }
  .team-intro__work { min-height: 56vw; margin: 0 20px 50px; }
  .people { grid-template-columns: 1fr; }
  .people article { min-height: 480px; padding: 60px 20px; border-right: 0; }
  .people h2 { font-size: 66px; }
  .manifesto { min-height: auto; grid-template-columns: 1fr; }
  .manifesto figure { min-height: 78vw; }
  .manifesto blockquote { padding: 75px 20px; font-size: 55px; }
  .team-work { padding: 85px 20px; }
  .team-work header { grid-template-columns: 1fr; gap: 28px; }
  .team-work h2 { font-size: 70px; }
  .team-work > div { grid-template-columns: 72vw 72vw 72vw; overflow-x: auto; scroll-snap-type: x mandatory; }
  .team-work figure, .team-work figure:nth-child(2) { height: 95vw; max-height: none; scroll-snap-align: start; }

  .contact-hero, .contact-hero__copy { min-height: 66svh; }
  .contact-hero__copy { padding: 90px 20px 50px; }
  .contact-hero h1 { font-size: clamp(82px, 18vw, 110px); }
  .contact-hero__copy > p:last-child { font-size: 15px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details, .contact-form { padding: 75px 20px; }
  .contact-details h2 { font-size: 68px; }
  .contact-form form { grid-template-columns: 1fr; }
  .contact-form label.wide, .contact-form button, .contact-form [data-form-status] { grid-column: auto; }
  .contact-memory { min-height: 70vh; }
  .contact-memory > p { padding: 85px 20px; font-size: 76px; }

  .gallery-intro { padding: 130px 20px 75px; }
  .gallery-intro h1 { font-size: 82px; }
  .gallery-intro > div { margin-left: 0; align-items: flex-start; flex-direction: column; gap: 28px; }
  .gallery-browser { padding: 0 12px 80px; }
  .gallery-filters { top: 76px; }
  .gallery-grid { columns: 2; column-gap: 12px; }
  .gallery-grid [data-gallery-item],
  .gallery-grid [data-gallery-item]:nth-child(5n + 2),
  .gallery-grid [data-gallery-item]:nth-child(7n + 4) { height: 58vw; margin-bottom: 12px; }
  .gallery-grid [data-gallery-item]:nth-child(6n + 1) { height: 42vw; }
  .gallery-closer { padding: 85px 20px; }
  .gallery-closer h2 { font-size: 76px; }
  .lightbox { padding: 58px 18px 28px; }
  .lightbox[open] { grid-template-columns: 38px 1fr 38px; gap: 4px; }
  .lightbox figure { height: calc(100dvh - 86px); }

  .prototype-notice { padding: 24px 20px; grid-template-columns: 1fr; gap: 12px; }
  .site-footer { padding: 70px 20px 25px; grid-template-columns: 1fr; gap: 70px; }
  .site-footer__cta h2 { font-size: 75px; }
  .site-footer__details address { margin: 50px 0 35px; }
  .site-footer__bottom { grid-column: auto; gap: 20px; flex-direction: column; }
}

@media (max-width: 540px) {
  .wedding-hero__copy { padding-bottom: 124px; }
  .wedding-hero h1 { font-size: clamp(72px, 22vw, 94px); line-height: .82; }
  .wedding-hero__intro { display: block; }
  .wedding-hero__intro p { max-width: 315px; font-size: 13px; }
  .wedding-hero__intro .button { margin-top: 20px; }
  .wedding-hero__picker { display: none; }
  .wedding-hero__next {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 24px;
    min-width: 160px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid white;
    background: transparent;
    color: white;
    font: 600 9px "Manrope", sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .opening__statement h2, .story-preview__head h2, .trust__copy h2 { font-size: 57px; }
  .opening__lead { min-height: 420px; }
  .opening__portrait { width: 84%; min-height: 410px; }
  .story-row figure, .story-row--reverse figure { min-height: 365px; }
  .story-row > strong, .story-row--reverse > strong { font-size: 31px; }
  .trust__score > span { font-size: 145px; }
  .home-services h2, .final-call h2 { font-size: 62px; }

  .photo-hero h1 { font-size: 59px; }
  .chapter h2, .story-ending h2, .medium h2, .coverage h2, .journey h2, .experience-close h2, .team-intro h1, .people h2, .team-work h2, .contact-details h2 { font-size: 57px; }
  .journey h2 { font-size: 52px; }
  .chapter__panorama, .chapter__pair figure, .chapter__pair--flip figure { min-height: 400px; }
  .chapter__duo figure:first-child { min-height: 410px; }
  .chapter__duo figure:last-child { min-height: 470px; }
  .chapter__pair > p, .chapter__pair--flip > p, .chapter__aside { font-size: 29px; }
  .motion-strip { grid-template-columns: 84vw 84vw 84vw; }
  .contact-details dl div { grid-template-columns: 88px minmax(0, 1fr); }
  .contact-hero h1 { font-size: 82px; }
  .contact-memory > p { font-size: 59px; }
  .manifesto blockquote { font-size: 48px; }
  .gallery-intro h1, .gallery-closer h2 { font-size: 62px; }
  .gallery-grid { columns: 1; }
  .gallery-grid [data-gallery-item],
  .gallery-grid [data-gallery-item]:nth-child(5n + 2),
  .gallery-grid [data-gallery-item]:nth-child(7n + 4),
  .gallery-grid [data-gallery-item]:nth-child(6n + 1) { height: 72vw; min-height: 320px; }
  .lightbox { padding-inline: 4px; }
  .lightbox[open] { grid-template-columns: 34px minmax(0, 1fr) 34px; }
  .site-footer__cta h2 { font-size: 62px; }
}

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