/* ============================================================
   My Sheri Photography — design system
   "Photographs written like love letters."
   Ivory linen · olive ink · handwritten margin notes
   ============================================================ */

:root {
  --ivory: #F6F4EE;
  --shell: #FDFCF8;
  --olive: #55603F;
  --olive-soft: #7C8468;
  --moss: #23261B;
  --moss-2: #2E3224;
  --grey: #8F8F84;
  --char: #2B2C26;
  --hairline: rgba(43, 44, 38, 0.16);
  --hairline-light: rgba(246, 244, 238, 0.22);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Mrs Saint Delafield", cursive;
  --sans: "Jost", "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--char);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--olive); color: var(--ivory); }

/* photographs get one unified, slightly filmic treatment */
.ph { overflow: hidden; position: relative; }
.ph img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: filter 0.9s var(--ease), transform 1.2s var(--ease);
}
a.ph:hover img, a:hover > .ph img { filter: saturate(1) contrast(1.02); transform: scale(1.035); }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 2147483000; pointer-events: none;
  width: 200%; height: 200%; opacity: 0.05;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-2%,1%); }
  40% { transform: translate(1%,-2%); } 60% { transform: translate(-1%,2%); } 80% { transform: translate(2%,1%); }
}

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--grey);
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--olive-soft); }

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--olive);
  line-height: 1;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
.t-display { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 300; letter-spacing: -0.01em; }
.t-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 400; }
.t-lead {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.45; color: var(--char);
}
.t-body-max { max-width: 34em; }
.muted { color: var(--grey); }

/* margin note — the signature: a handwritten aside in the whitespace */
.note {
  font-family: var(--script); font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  color: var(--olive); line-height: 1.1; transform: rotate(-3.5deg);
  display: inline-block;
}
.note-stroke { display: block; margin-top: 0.2rem; width: 7rem; height: auto; color: var(--olive-soft); }

/* ---------- layout ---------- */
.container { max-width: 90rem; margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(5rem, 11vw, 10rem); position: relative; }
.section-tight { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.hr { border: 0; border-top: 1px solid var(--hairline); }

/* ---------- buttons & links ---------- */
.btn {
  position: relative; display: inline-block; overflow: hidden;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1.15em 2.6em; border: 1px solid var(--olive);
  color: var(--olive); background: transparent;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--olive); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.btn:hover { color: var(--ivory); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-solid { background: var(--olive); color: var(--ivory); }
.btn-solid::after { background: var(--moss); }
.btn-light { border-color: var(--ivory); color: var(--ivory); }
.btn-light::after { background: var(--ivory); }
.btn-light:hover { color: var(--moss); }

.link-line {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--char);
  padding-bottom: 0.35em;
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0.35); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-line:hover::after { transform: scaleX(1); }
.link-line .arrow { transition: transform 0.5s var(--ease); }
.link-line:hover .arrow { transform: translateX(0.4rem); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.4rem;
  transition: padding 0.5s var(--ease);
}
.site-header.scrolled { background: rgba(246, 244, 238, 0.88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--hairline); }
.site-header.scrolled .container { padding-block: 0.85rem; }

.wordmark { display: inline-block; line-height: 1; }
.wordmark .wm-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.04em; color: var(--char); }
.wordmark .wm-name em { font-style: italic; font-weight: 400; }
.wordmark .wm-sub { display: block; margin-top: 0.28rem; font-size: 0.5rem; letter-spacing: 0.52em; text-transform: uppercase; color: var(--grey); }

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.site-nav a:not(.btn) {
  position: relative; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--char); padding-bottom: 0.3em;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--olive); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.site-nav a:not(.btn):hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .btn { padding: 0.85em 1.8em; }

/* header on dark hero pages */
.header-light:not(.scrolled) .wm-name, .header-light:not(.scrolled) .wm-name em { color: var(--ivory); }
.header-light:not(.scrolled) .wm-sub { color: rgba(246,244,238,0.65); }
.header-light:not(.scrolled) .site-nav a:not(.btn) { color: var(--ivory); }
.header-light:not(.scrolled) .site-nav a:not(.btn)::after { background: var(--ivory); }
.header-light:not(.scrolled) .nav-toggle span { background: var(--ivory); }

/* mobile menu */
.nav-toggle { display: none; z-index: 130; width: 2.2rem; height: 1.4rem; position: relative; }
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 1px; background: var(--char);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), background 0.3s;
}
.nav-toggle span:nth-child(1) { top: 25%; }
.nav-toggle span:nth-child(2) { top: 75%; }
body.menu-open .nav-toggle span { background: var(--ivory); }
body.menu-open .nav-toggle span:nth-child(1) { top: 50%; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { top: 50%; transform: rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 120; background: var(--moss);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path 0.7s var(--ease), visibility 0s 0.7s;
}
body.menu-open .menu-overlay { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path 0.7s var(--ease); }
.menu-overlay a {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(2.2rem, 8vw, 3.6rem); color: var(--ivory); line-height: 1.35;
  opacity: 0; transform: translateY(1.2rem); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.menu-overlay a:hover { color: var(--olive-soft); }
body.menu-open .menu-overlay a { opacity: 1; transform: none; }
body.menu-open .menu-overlay a:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .menu-overlay a:nth-child(2) { transition-delay: 0.21s; }
body.menu-open .menu-overlay a:nth-child(3) { transition-delay: 0.27s; }
body.menu-open .menu-overlay a:nth-child(4) { transition-delay: 0.33s; }
body.menu-open .menu-overlay a:nth-child(5) { transition-delay: 0.39s; }
body.menu-open .menu-overlay a:nth-child(6) { transition-delay: 0.45s; }
.menu-overlay .menu-meta { margin-top: 2.5rem; color: rgba(246,244,238,0.55); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0; transition: opacity 0.5s 0.5s; }
body.menu-open .menu-overlay .menu-meta { opacity: 1; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(2.4rem); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ============================================================
   HOME
   ============================================================ */
.hero {
  min-height: 100svh; position: relative; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  padding-top: 6rem; padding-bottom: 3rem;
}
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(34vw, 30rem);
  z-index: 0;
}
.hero-media .ph { height: 100%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ivory) 0%, rgba(246,244,238,0.25) 30%, rgba(246,244,238,0) 60%); }
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow { margin-bottom: clamp(1.5rem, 3vh, 3rem); }
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.2rem, 8.4vw, 8rem);
  line-height: 1.02; letter-spacing: -0.015em; color: var(--char);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
body.loaded .hero-title .line > span { transform: none; }
body.loaded .hero-title .line:nth-child(2) > span { transition-delay: 0.12s; }
body.loaded .hero-title .line:nth-child(3) > span { transition-delay: 0.24s; }

.hero-inset {
  display: inline-block; vertical-align: baseline;
  width: clamp(7rem, 16vw, 15rem); height: 0.82em;
  margin-inline: 0.25em; transform: translateY(0.08em);
  overflow: hidden;
}
.hero-inset img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transform: scale(1.15);
  transition: transform 2.8s var(--ease);
}
body.loaded .hero-inset img { transform: scale(1); }

.hero-title .t-script {
  font-family: var(--script); font-size: 1.18em; color: var(--olive);
  font-style: normal; letter-spacing: 0; line-height: 0.9;
  margin-left: 0.12em;
}
.hero-sub {
  max-width: 30em; margin-top: clamp(1.6rem, 3.5vh, 2.8rem);
  color: var(--char); font-weight: 300; font-size: 1.02rem;
  opacity: 0; transform: translateY(1rem); transition: opacity 1s 0.55s var(--ease), transform 1s 0.55s var(--ease);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.4rem; opacity: 0; transition: opacity 1s 0.75s var(--ease); }
body.loaded .hero-sub { opacity: 1; transform: none; }
body.loaded .hero-cta { opacity: 1; }

.hero-note {
  position: absolute; z-index: 2;
  right: clamp(1rem, 5vw, 6rem); bottom: clamp(5rem, 14vh, 9rem);
  text-align: left; opacity: 0; transition: opacity 1.2s 1.1s var(--ease);
}
body.loaded .hero-note { opacity: 1; }

.hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad) 1.6rem;
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey);
}
.scroll-cue { display: inline-block; width: 1px; height: 3.4rem; background: var(--hairline); position: relative; overflow: hidden; }
.scroll-cue::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--olive); animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 110%; } }

/* --- manifesto --- */
.manifesto { position: relative; }
.manifesto .t-lead { max-width: 26em; }
.manifesto-note { position: absolute; right: clamp(0rem, 8vw, 10rem); top: 12%; }
.manifesto .container { display: grid; grid-template-columns: 1fr min(62rem, 100%) 1fr; }
.manifesto .container > * { grid-column: 2; }

/* --- work trio --- */
.work { padding-top: 0; }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 2.5rem); align-items: start; }
.work-item { position: relative; }
.work-item .ph { box-shadow: 0 30px 60px -30px rgba(35, 38, 27, 0.35); }
.work-item figcaption { margin-top: 1rem; display: flex; align-items: baseline; gap: 1rem; }
.work-item .wi-title { font-family: var(--serif); font-style: italic; font-size: 1.25rem; }
.work-item .wi-cat { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey); }
.work-1 { grid-column: 1 / span 5; }
.work-1 .ph { aspect-ratio: 3 / 4; }
.work-2 { grid-column: 7 / span 6; margin-top: clamp(3rem, 9vw, 8rem); }
.work-2 .ph { aspect-ratio: 4 / 3; }
.work-3 { grid-column: 3 / span 4; margin-top: clamp(-2rem, -1vw, -1rem); }
.work-3 .ph { aspect-ratio: 3 / 4; }

/* --- dark ceremonies section --- */
.dark-section { background: var(--moss); color: var(--ivory); overflow: hidden; }
.dark-section .eyebrow { color: rgba(246,244,238,0.55); }
.dark-section .eyebrow::before { background: var(--olive-soft); }
.dark-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.dark-media { grid-column: 1 / span 7; position: relative; }
.dark-media .ph { aspect-ratio: 4 / 3; }
.dark-media .ph img { filter: saturate(0.9) contrast(1.05) brightness(0.96); }
.dark-media-2 {
  position: absolute; right: -14%; bottom: -16%; width: 42%;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.dark-media-2 .ph { aspect-ratio: 1; }
.dark-copy { grid-column: 9 / span 4; }
.dark-copy h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 300; margin: 1.4rem 0 1.6rem; }
.dark-copy h2 em { color: var(--olive-soft); }
.dark-copy p { color: rgba(246,244,238,0.78); font-size: 0.95rem; }
.dark-list { margin-top: 2rem; border-top: 1px solid var(--hairline-light); }
.dark-list li {
  padding: 0.9rem 0; border-bottom: 1px solid var(--hairline-light);
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: rgba(246,244,238,0.9);
  display: flex; justify-content: space-between; align-items: baseline;
}
.dark-list li span { font-family: var(--sans); font-style: normal; font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(246,244,238,0.45); }

/* --- services teaser --- */
.svc-teaser .container { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.svc-head { grid-column: 1 / -1; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(1rem, 3vw, 2rem); }
.svc-panel { position: relative; display: block; }
.svc-panel .ph { box-shadow: 0 30px 60px -30px rgba(35,38,27,0.35); }
.svc-panel-a { grid-column: 1 / span 7; }
.svc-panel-a .ph { aspect-ratio: 16 / 11; }
.svc-panel-b { grid-column: 9 / span 4; margin-top: clamp(4rem, 10vw, 9rem); }
.svc-panel-b .ph { aspect-ratio: 3 / 4; }
.svc-panel .svc-info { margin-top: 1.4rem; }
.svc-panel h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 400; }
.svc-panel h3 em { font-weight: 300; }
.svc-panel p { color: var(--grey); max-width: 30em; margin-top: 0.5rem; font-size: 0.95rem; }
.svc-panel .svc-price { display: block; margin-top: 0.9rem; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--olive); }

/* --- quote --- */
.quote-section { text-align: center; position: relative; }
.quote-section .script { font-size: clamp(2.4rem, 4vw, 3.6rem); display: block; margin-bottom: 2rem; }
.quote-section blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.4; max-width: 26em; margin-inline: auto;
}
.quote-section cite { display: block; margin-top: 2rem; font-style: normal; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); }

/* --- collections strip --- */
.strip-section { padding-bottom: clamp(5rem, 11vw, 10rem); }
.strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.strip {
  display: flex; gap: clamp(1rem, 2vw, 2rem); overflow-x: auto; padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--olive-soft) transparent;
}
.strip::-webkit-scrollbar { height: 3px; }
.strip::-webkit-scrollbar-thumb { background: var(--olive-soft); }
.strip-card { flex: 0 0 clamp(16rem, 26vw, 24rem); scroll-snap-align: start; }
.strip-card .ph { aspect-ratio: 4 / 5; }
.strip-card .sc-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 0.9rem; }
.strip-card .sc-title { font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.strip-card .sc-count { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }

/* --- CTA band --- */
.cta-band { background: var(--olive); color: var(--ivory); text-align: center; overflow: hidden; position: relative; }
.cta-band .script { color: rgba(246,244,238,0.85); font-size: clamp(2.6rem, 5vw, 4.4rem); display: block; margin-bottom: 1.2rem; }
.cta-band h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 300; max-width: 18em; margin-inline: auto; }
.cta-band p { max-width: 34em; margin: 1.5rem auto 2.5rem; color: rgba(246,244,238,0.8); }
.cta-band .btn { border-color: var(--ivory); color: var(--ivory); }
.cta-band .btn::after { background: var(--ivory); }
.cta-band .btn:hover { color: var(--olive); }

/* ---------- footer ---------- */
.site-footer { background: var(--moss); color: rgba(246,244,238,0.75); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.footer-main .wm-name { color: var(--ivory); font-family: var(--serif); font-size: 1.6rem; }
.footer-main .wm-sub { display: block; margin-top: 0.3rem; font-size: 0.52rem; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(246,244,238,0.5); }
.footer-main p { font-size: 0.88rem; max-width: 24em; margin-top: 1.2rem; color: rgba(246,244,238,0.6); }
.footer-col h4 { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(246,244,238,0.45); font-weight: 400; margin-bottom: 1.2rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.9rem; color: rgba(246,244,238,0.78); transition: color 0.3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-sign { padding-bottom: 2rem; }
.footer-sign .script { font-size: clamp(2.2rem, 3.6vw, 3.2rem); color: var(--olive-soft); }
.footer-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline-light); padding-block: 1.6rem;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(246,244,238,0.4);
}

/* ============================================================
   INNER PAGE SHARED
   ============================================================ */
.page-hero { padding-top: clamp(9rem, 18vh, 13rem); padding-bottom: clamp(3rem, 6vw, 5rem); position: relative; }
.page-hero .script-over {
  position: absolute; font-size: clamp(4rem, 9vw, 8rem); opacity: 0.16;
  top: clamp(5rem, 12vh, 8rem); left: 50%; transform: translateX(-50%) rotate(-4deg);
  white-space: nowrap; pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.6rem); font-weight: 300; max-width: 12em; }
.page-hero h1 em { font-weight: 300; }
.page-hero .page-intro { max-width: 36em; margin-top: 1.8rem; color: var(--char); }
.page-hero .eyebrow { margin-bottom: 1.6rem; }

/* two-column editorial rows */
.ed-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3.5vw, 4rem); align-items: center; }
.ed-row + .ed-row { margin-top: clamp(4rem, 9vw, 8rem); }
.ed-media-l { grid-column: 1 / span 6; }
.ed-copy-r { grid-column: 8 / span 5; }
.ed-media-r { grid-column: 7 / span 6; }
.ed-copy-l { grid-column: 1 / span 5; grid-row: 1; }
.ed-row .ph { box-shadow: 0 30px 60px -30px rgba(35,38,27,0.35); }
.ed-row h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 400; margin-bottom: 1.2rem; }
.ed-row h2 em { font-weight: 300; }
.ed-row p + p { margin-top: 1em; }
.ed-row .eyebrow { margin-bottom: 1.2rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero .container { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: end; }
.about-hero-copy { grid-column: 1 / span 7; }
.about-hero-media { grid-column: 9 / span 4; position: relative; }
.about-hero-media .ph { aspect-ratio: 3 / 4; box-shadow: 0 30px 60px -30px rgba(35,38,27,0.4); }
.about-hero-media .note { position: absolute; bottom: -2.6rem; left: -3rem; }
.about-greeting { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(3rem, 7vw, 6.4rem); line-height: 1; }

.name-story { background: var(--shell); border-block: 1px solid var(--hairline); }
.name-story .container { display: grid; grid-template-columns: 1fr min(60rem, 100%) 1fr; }
.name-story .container > * { grid-column: 2; }
.name-story .script { font-size: clamp(3rem, 6vw, 5rem); display: block; margin-bottom: 2rem; }
.name-story .t-lead { margin-bottom: 1.5rem; }
.name-story p:not(.t-lead) { max-width: 38em; }
.name-story p + p { margin-top: 1em; }

.facts { counter-reset: fact; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); margin-top: 3rem; }
.fact { border-top: 1px solid var(--hairline); padding-top: 1.4rem; }
.fact h3 { font-size: 1.35rem; font-style: italic; font-weight: 400; margin-bottom: 0.6rem; }
.fact p { font-size: 0.9rem; color: var(--grey); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-block { border-top: 1px solid var(--hairline); padding-top: clamp(3rem, 6vw, 5rem); }
.svc-block + .svc-block { margin-top: clamp(4rem, 8vw, 7rem); }
.svc-block-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3.5vw, 4rem); }
.svc-block-head { grid-column: 1 / span 4; }
.svc-block-head .script { font-size: clamp(2.2rem, 3.4vw, 3rem); display: block; margin-bottom: 0.6rem; }
.svc-block-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.05; }
.svc-block-head .svc-from { display: block; margin-top: 1.4rem; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive); }
.svc-block-body { grid-column: 6 / span 7; }
.svc-block-body > p { max-width: 36em; }
.svc-block-body p + p { margin-top: 1em; }
.svc-media { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: 3fr 2fr; gap: clamp(1rem, 2vw, 2rem); align-items: start; }
.svc-media .ph:first-child { aspect-ratio: 4 / 3; }
.svc-media .ph:last-child { aspect-ratio: 3 / 4; margin-top: clamp(2rem, 4vw, 3.5rem); }

.inc-list { margin-top: 2rem; border-top: 1px solid var(--hairline); }
.inc-list li {
  display: flex; justify-content: space-between; gap: 2rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--hairline);
}
.inc-list .inc-name { font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.inc-list .inc-desc { font-size: 0.85rem; color: var(--grey); text-align: right; max-width: 24em; }

/* ============================================================
   GALLERY
   ============================================================ */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.5rem; }
.filter-btn {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0.7em 1.6em; border: 1px solid var(--hairline); color: var(--grey);
  transition: all 0.4s var(--ease);
}
.filter-btn:hover { border-color: var(--olive); color: var(--olive); }
.filter-btn.active { background: var(--olive); border-color: var(--olive); color: var(--ivory); }

.collections { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2.5vw, 2.5rem); }
.col-card { position: relative; display: block; }
.col-card .ph { box-shadow: 0 26px 50px -28px rgba(35,38,27,0.35); }
.col-card .cc-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.1rem; gap: 1rem; }
.col-card .cc-title { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
.col-card .cc-cat { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey); white-space: nowrap; }
.col-card .cc-desc { margin-top: 0.4rem; font-size: 0.88rem; color: var(--grey); max-width: 32em; }
/* editorial rhythm: repeating asymmetric pattern */
.col-card:nth-child(6n+1) { grid-column: 1 / span 7; }
.col-card:nth-child(6n+1) .ph { aspect-ratio: 16 / 10; }
.col-card:nth-child(6n+2) { grid-column: 9 / span 4; align-self: end; }
.col-card:nth-child(6n+2) .ph { aspect-ratio: 3 / 4; }
.col-card:nth-child(6n+3) { grid-column: 1 / span 4; }
.col-card:nth-child(6n+3) .ph { aspect-ratio: 3 / 4; }
.col-card:nth-child(6n+4) { grid-column: 6 / span 7; margin-top: clamp(2rem, 5vw, 4rem); }
.col-card:nth-child(6n+4) .ph { aspect-ratio: 16 / 10; }
.col-card:nth-child(6n+5) { grid-column: 2 / span 6; }
.col-card:nth-child(6n+5) .ph { aspect-ratio: 4 / 3; }
.col-card:nth-child(6n+6) { grid-column: 9 / span 4; margin-top: clamp(2rem, 5vw, 4rem); }
.col-card:nth-child(6n+6) .ph { aspect-ratio: 3 / 4; }

.gallery-empty { text-align: center; padding-block: 4rem; }
.gallery-empty .script { font-size: 2.6rem; display: block; margin-bottom: 1rem; }

/* collection detail */
.col-hero { padding-top: clamp(9rem, 16vh, 12rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.col-hero .eyebrow { margin-bottom: 1.4rem; }
.col-hero h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 300; font-style: italic; }
.col-hero p { max-width: 36em; margin-top: 1.4rem; color: var(--grey); }
.masonry { column-count: 3; column-gap: clamp(1rem, 2vw, 1.8rem); }
.masonry .ph { margin-bottom: clamp(1rem, 2vw, 1.8rem); break-inside: avoid; cursor: zoom-in; }
/* masonry keeps each photograph's own proportions — no fixed container height to fill */
.masonry .ph img { height: auto; object-fit: fill; transition: filter 0.7s var(--ease), transform 0.9s var(--ease); }
.back-row { margin-top: 3rem; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(35, 38, 27, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0s 0.45s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.45s var(--ease); }
.lightbox img {
  max-width: min(88vw, 100rem); max-height: 84vh; object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--ivory); font-family: var(--serif); font-size: 2rem; font-style: italic;
  padding: 1.5rem; opacity: 0.6; transition: opacity 0.3s;
}
.lb-btn:hover { opacity: 1; }
.lb-prev { left: clamp(0.2rem, 2vw, 2rem); }
.lb-next { right: clamp(0.2rem, 2vw, 2rem); }
.lb-close { position: absolute; top: 1.4rem; right: 2rem; font-size: 2.4rem; color: var(--ivory); opacity: 0.6; transition: opacity 0.3s; font-family: var(--serif); }
.lb-close:hover { opacity: 1; }
.lb-count { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(246,244,238,0.6); font-size: 0.7rem; letter-spacing: 0.3em; }

/* ============================================================
   PRE-WEDDING
   ============================================================ */
.pw-hero { position: relative; }
.pw-hero .container { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.pw-hero-copy { grid-column: 1 / span 6; }
.pw-hero-media { grid-column: 8 / span 5; position: relative; }
.pw-hero-media .ph { aspect-ratio: 3 / 4; box-shadow: 0 30px 60px -30px rgba(35,38,27,0.4); }
.pw-hero-media .note { position: absolute; bottom: -2.4rem; left: -3.4rem; }

.journey { counter-reset: step; }
.journey-list { margin-top: clamp(2.5rem, 5vw, 4rem); }
.journey-step {
  counter-increment: step;
  display: grid; grid-template-columns: minmax(4rem, 8rem) 1fr 2fr; gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-top: 1px solid var(--hairline); align-items: baseline;
}
.journey-step:last-child { border-bottom: 1px solid var(--hairline); }
.journey-step::before {
  content: "0" counter(step);
  font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--olive-soft); line-height: 1;
}
.journey-step h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); font-style: italic; font-weight: 400; }
.journey-step p { font-size: 0.92rem; color: var(--char); }
.journey-step .js-meta { display: block; margin-top: 0.5rem; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey); }

.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 3rem); margin-top: 3rem; }
.tip { background: var(--shell); border: 1px solid var(--hairline); padding: clamp(1.6rem, 3vw, 2.6rem); }
.tip .script { font-size: 1.9rem; display: block; margin-bottom: 0.8rem; }
.tip h3 { font-size: 1.3rem; font-style: italic; font-weight: 400; margin-bottom: 0.7rem; }
.tip p { font-size: 0.92rem; color: var(--char); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 4vw, 4rem); }
.contact-form-col { grid-column: 1 / span 7; }
.contact-aside { grid-column: 9 / span 4; }

.form-field { position: relative; margin-bottom: 2rem; }
.form-field label {
  display: block; font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.6rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--char);
  padding: 0.5rem 0; outline: none; transition: border-color 0.4s; border-radius: 0;
}
.form-field select { cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 7rem; font-size: 1.15rem; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--olive); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.form-note { font-size: 0.8rem; color: var(--grey); margin: -0.5rem 0 2rem; }
.form-status { margin-top: 1.4rem; font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.form-status.ok { color: var(--olive); }
.form-status.err { color: #8a4b3a; }

.aside-block { border-top: 1px solid var(--hairline); padding-top: 1.4rem; margin-bottom: 2.4rem; }
.aside-block h3 { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); font-weight: 400; margin-bottom: 0.9rem; font-family: var(--sans); }
.aside-block a, .aside-block p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.aside-block a:hover { color: var(--olive); }
.next-steps li { display: flex; gap: 1.2rem; padding: 0.9rem 0; border-bottom: 1px solid var(--hairline); align-items: baseline; }
.next-steps .n { font-family: var(--serif); font-weight: 300; font-size: 1.6rem; color: var(--olive-soft); }
.next-steps p { font-size: 0.9rem; }
.next-steps strong { font-weight: 500; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2147483100;
  display: flex; justify-content: center;
  padding: clamp(0.9rem, 2.2vw, 1.6rem);
  transform: translateY(130%); transition: transform 0.65s var(--ease);
}
.cookie-banner.show { transform: none; }
.cookie-inner {
  width: min(66rem, 100%); background: var(--shell);
  border: 1px solid var(--hairline);
  box-shadow: 0 26px 60px -26px rgba(35, 38, 27, 0.45);
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 2rem);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: clamp(1rem, 3vw, 2.5rem);
}
.cookie-text { margin: 0; font-size: 0.9rem; color: var(--char); max-width: 44em; }
.cookie-text .script { font-size: 1.7rem; margin-right: 0.5rem; vertical-align: -0.18em; }
.cookie-text a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.6rem); flex-shrink: 0; }
.cookie-decline {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.cookie-decline:hover { color: var(--char); border-color: var(--char); }
.cookie-banner .btn { padding: 0.9em 2.2em; }

/* ============================================================
   LEGAL / LONG-FORM
   ============================================================ */
.legal { max-width: 44rem; }
.legal .lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.45; color: var(--char); margin-bottom: 1.8rem; }
.legal h2 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); font-weight: 400; margin: 2.8rem 0 0.9rem; }
.legal h2 em { font-style: italic; }
.legal p { color: var(--char); font-size: 0.98rem; }
.legal p + p { margin-top: 0.9em; }
.legal a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.legal ul { margin: 1rem 0 0; }
.legal ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--char); font-size: 0.98rem; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 0.6rem; height: 1px; background: var(--olive-soft); }
.legal [data-cookie-settings] { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; font: inherit; }
.legal .meta { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--hairline); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 64rem) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-media { width: 44vw; opacity: 0.6; }
  .work-1 { grid-column: 1 / span 6; }
  .work-2 { grid-column: 7 / span 6; margin-top: 4rem; }
  .work-3 { grid-column: 4 / span 6; margin-top: 0; }
  .dark-media { grid-column: 1 / -1; }
  .dark-copy { grid-column: 1 / -1; margin-top: 3.5rem; }
  .svc-panel-a { grid-column: 1 / -1; }
  .svc-panel-b { grid-column: 3 / -1; margin-top: 2rem; }
  .about-hero-copy { grid-column: 1 / -1; }
  .about-hero-media { grid-column: 4 / -1; margin-top: 2.5rem; }
  .ed-media-l, .ed-copy-r, .ed-media-r, .ed-copy-l { grid-column: 1 / -1; }
  .ed-copy-l { grid-row: auto; }
  .svc-block-head, .svc-block-body { grid-column: 1 / -1; }
  .svc-block-body { margin-top: 1.5rem; }
  .pw-hero-copy { grid-column: 1 / -1; }
  .pw-hero-media { grid-column: 2 / -1; margin-top: 2.5rem; }
  .contact-form-col, .contact-aside { grid-column: 1 / -1; }
  .masonry { column-count: 2; }
  .col-card { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .col-card .ph { aspect-ratio: 4 / 3 !important; }
  .journey-step { grid-template-columns: minmax(3rem, 4rem) 1fr; }
  .journey-step p { grid-column: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .manifesto-note { position: static; display: block; margin-top: 2rem; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .cookie-actions { width: 100%; justify-content: space-between; }
}
@media (max-width: 40rem) {
  .hero-media { display: none; }
  .hero-title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-inset { width: 5.6rem; }
  .hero-note { display: none; }
  .hero-foot .hf-r { display: none; }
  .work-1, .work-2, .work-3 { grid-column: 1 / -1; margin-top: 0; }
  .work-grid { gap: 2.5rem; }
  .dark-media-2 { display: none; }
  .tips-grid, .facts-grid, .form-row { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .footer-main { grid-template-columns: 1fr; }
  .inc-list li { flex-direction: column; gap: 0.2rem; }
  .inc-list .inc-desc { text-align: left; }
  .svc-media { grid-template-columns: 1fr; }
  .svc-media .ph:last-child { margin-top: 0; }
  .page-hero .script-over { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .hero-sub, .hero-cta, .hero-note { opacity: 1 !important; transform: none !important; }
  .hero-title .line > span { transform: none !important; }
  .grain { display: none; }
}

/* ---------- focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--olive); outline-offset: 3px;
}
