/* JOHALCY.com — editorial photography, commercial clarity.
   Photography is the visual system. Interface stays quiet. */

:root {
  /* Caribbean Editorial palette — derived by sampling Johalcy's own photographs
     (k-means on real wedding-couple / couples / family / maternity / hero
     images) and refined toward warm ivory paper, deep green-black ink and a
     restrained copper accent. Not tropical decoration — no turquoise, no
     palm-tree color clichés. */
  --paper: #F4EFE4;         /* Warm Ivory — primary background */
  --paper-2: #E9E0CD;       /* Sand — secondary surfaces */
  --ink: #1A1D14;           /* Caribbean Ink — deep warm near-black, green undertone */
  --ink-2: #454A3C;         /* Palm — muted secondary text / signature green */
  --ink-3: #6E6B5A;         /* warm grey-olive tertiary text */
  --line: #D9CCA9;          /* Sand-tinted hairlines */
  --clay: #A97C58;          /* Sun-baked Copper — single warm accent, used sparingly */
  --palm: #454736;          /* Palm — botanical signature green, used selectively */
  --sand: #CBB596;          /* Sand — secondary neutral */
  --mist: #A8B8B4;          /* Sea Mist — optional supporting tone */
  --night: #14170D;         /* cinematic wedding sections — deep Caribbean Ink */
  --night-ink: #F4EFE4;
  --tbc: #A94E1F;

  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1400px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --space-1: clamp(12px, 1.2vw, 16px);
  --space-2: clamp(20px, 2.4vw, 32px);
  --space-3: clamp(32px, 4vw, 56px);
  --space-4: clamp(56px, 7vw, 112px);
  --space-5: clamp(72px, 10vw, 168px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.7;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--clay); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
::selection { background: var(--ink); color: var(--paper); }
button, input, select, textarea { font: inherit; color: inherit; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: 12px 18px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
h1, h2, h3, .display { font-family: var(--serif); font-weight: 400; letter-spacing: -.012em; line-height: 1.02; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.4vw, 6.2rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); line-height: 1.12; }
h1 em, h2 em, h3 em, .display em { font-style: italic; }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin: 0; letter-spacing: .01em; }
p { margin: 0 0 1em; max-width: 64ch; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--clay); margin: 0 0 18px;
}
.lede { font-size: clamp(1.14rem, 1.5vw, 1.34rem); line-height: 1.6; color: var(--ink-2); max-width: 44ch; }
.muted { color: var(--ink-3); }
.small { font-size: .92rem; }
.tbc { color: var(--tbc); font: 700 .72rem/1.3 var(--sans); letter-spacing: .06em; background: #FBEEE4; padding: 2px 6px; border-radius: 2px; display: inline-block; vertical-align: middle; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.section-lg { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.section + .section { padding-top: 0; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.stack > * + * { margin-top: var(--space-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 28px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-weight: 700; font-size: .96rem; letter-spacing: .02em; text-decoration: none;
  border-radius: 2px; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .98rem;
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; min-height: 44px;
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; margin-top: var(--space-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(250,248,244,.97);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-in { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; margin-right: auto; }
.brand-name { font-family: var(--serif); font-weight: 500; letter-spacing: .14em; font-size: 1.28rem; color: var(--ink); }
.brand-sub { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-top: 7px; }
.primary { display: none; }
.primary ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.primary li { position: relative; }
.primary a, .nav-drop {
  display: flex; align-items: center; gap: 6px; padding: 10px 12px; font-size: .93rem; font-weight: 600;
  text-decoration: none; background: none; border: 0; cursor: pointer; min-height: 44px;
}
.primary a[aria-current="page"] { text-decoration: underline; }
.nav-drop::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); }
.drop {
  position: absolute; top: 100%; left: -8px; min-width: 300px; background: var(--paper);
  border: 1px solid var(--line); padding: 14px; display: none; box-shadow: 0 20px 40px -24px rgba(26,25,23,.35);
}
.drop a { padding: 9px 12px; font-weight: 500; }
.drop a:hover { background: var(--paper-2); color: var(--ink); }
.drop .drop-all { font-weight: 700; border-bottom: 1px solid var(--line); margin-bottom: 6px; padding-bottom: 12px; }
.primary li.open > .drop { display: block; }
@media (hover: hover) { .primary li:hover > .drop { display: block; } }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; padding: 10px 6px; min-height: 44px; display: inline-flex; align-items: center; }
.header-actions .btn { display: none; }
.menu-toggle {
  width: 48px; height: 48px; border: 0; background: none; cursor: pointer; display: grid; place-items: center; margin-right: -10px;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 24px; height: 1.5px; background: var(--ink); position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; } .menu-toggle span::after { top: 7px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1120px) {
  .primary { display: block; }
  .menu-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 76px 0 0 0; background: var(--paper); z-index: 49; overflow-y: auto;
  padding: 12px var(--gutter) 120px; display: none;
}
.menu-open .mobile-menu { display: block; }
.menu-open { overflow: hidden; }
.mobile-menu h2 { font-size: 2.1rem; margin: 22px 0 6px; }
.mobile-menu h2 a { text-decoration: none; }
.mobile-menu ul { list-style: none; margin: 0 0 8px; padding: 0; columns: 2; column-gap: 16px; }
.mobile-menu li a { display: block; padding: 9px 0; font-size: 1rem; text-decoration: none; color: var(--ink-2); }
.mobile-menu .mm-links { columns: 1; border-top: 1px solid var(--line); margin-top: 18px; padding-top: 8px; }
.mobile-menu .mm-links a { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); padding: 6px 0; }

/* Sticky booking bar (mobile) — one-hand reachable */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(250,248,244,.98);
  border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .35s var(--ease);
}
.bookbar.show { transform: none; }
.bookbar .btn { flex: 1; min-height: 50px; padding: 0 10px; font-size: .9rem; white-space: nowrap; }
.bookbar .btn:first-child { flex: 1.5; }
@media (min-width: 1120px) { .bookbar { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 1120px) { body { padding-bottom: 0; } }

/* ---------- Photos ---------- */
.photo { position: relative; margin: 0; overflow: hidden; background: var(--paper-2); aspect-ratio: var(--r, 4/5); }
.photo img, .photo picture { width: 100%; height: 100%; }
.photo img { object-fit: cover; object-position: var(--pos, 50% 50%); }
/* slot waiting for a real photo: a quiet paper tone on the live site (no wireframe, no label) */
.photo.is-empty { background: var(--paper-2); }
.photo.is-empty .ph-label { display: none; }
.cap { font-size: .82rem; color: var(--ink-3); margin-top: 10px; letter-spacing: .02em; }
.night .photo.is-empty { background: #22201c; }

/* ---------- Full-bleed photo hero band (site-wide) ---------- */
.hero-band { position: relative; overflow: hidden; min-height: 58vh; background: var(--night); }
.hero-band .hb-media { position: absolute; inset: 0; }
.hero-band .hb-media .photo { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; aspect-ratio: auto; }
.hero-band .hb-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,23,13,.04) 0%, rgba(20,23,13,.05) 30%, rgba(20,23,13,.62) 84%, rgba(20,23,13,.8) 100%),
    linear-gradient(90deg, rgba(20,23,13,.48) 0%, rgba(20,23,13,0) 46%);
}
.hero-band .hb-in { position: relative; z-index: 2; min-height: 58vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 84px 0 52px; }
.hero-band h1 { max-width: 15ch; font-size: clamp(2.3rem, 5vw, 3.9rem); }
.hero-band .lede { margin-top: 16px; }
.hero-band .hb-actions { margin-top: 30px; }
.hero-band .hb-meta { margin-top: 26px; font-size: .82rem; letter-spacing: .04em; color: #b9b2a6; }
.hero-band-tall { min-height: 86vh; }
.hero-band-tall .hb-in { min-height: 86vh; padding: 100px 0 60px; }
.hero-band-tall h1 { max-width: 14ch; font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
@media (max-width: 700px) {
  .hero-band, .hero-band .hb-in { min-height: 68vh; }
  .hero-band-tall, .hero-band-tall .hb-in { min-height: 84vh; }
  .hero-band .hb-in { padding: 68px 0 40px; }
  .hero-band-tall .hb-in { padding: 78px 0 40px; }
}

/* ---------- Home hero (legacy, superseded by .hero-band — kept for reference) ---------- */
.hero { padding-top: clamp(8px, 2vw, 28px); padding-bottom: var(--space-4); }
.hero-grid { display: grid; gap: 28px; }
.hero-media { position: relative; margin: 0 calc(var(--gutter) * -1); }
.hero-media .photo { --r: 5/4; }
@media (min-width: 560px) and (max-width: 899px) { .hero-media .photo { --r: 16/9; } }
.hero-copy h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 4.7vw, 4.8rem); }
.hero-copy .lede { margin-bottom: 0; }
.hero-meta { margin-top: 26px; font-size: .88rem; color: var(--ink-3); letter-spacing: .02em; }
.hero-inset { display: none; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 5fr 7fr; align-items: end; gap: clamp(32px, 4vw, 72px); }
  .hero-copy { order: 1; align-self: center; padding: 0 0 40px; }
  .hero-media { order: 2; margin: 0 calc(var(--gutter) * -1) 0 0; }
  .hero-media .photo { --r: 5/6; max-height: calc(100vh - 110px); width: 100%; }
  .hero-inset { display: block; position: absolute; left: -7%; bottom: -64px; width: 28%; border: 10px solid var(--paper); }
  .hero-inset .photo { --r: 3/4; }
}
@media (min-width: 900px) and (max-height: 820px) { .hero-media .photo { --r: 6/5; } }

/* ---------- Two paths (sessions vs weddings) ---------- */
.paths { display: grid; gap: var(--space-3); }
.path { text-decoration: none; display: block; }
.path h3 { margin: 18px 0 8px; }
.path p { color: var(--ink-2); margin-bottom: 12px; }
.path:hover h3 { color: var(--clay); }
.path .photo { transition: opacity .3s; }
.path:hover .photo { opacity: .94; }
@media (min-width: 800px) {
  .paths { grid-template-columns: 7fr 5fr; align-items: start; }
  .paths .path:nth-child(2) { margin-top: clamp(80px, 12vw, 200px); }
}

/* ---------- Editorial collage feature ---------- */
.collage-feature { background: var(--paper-2); }
.collage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
.collage-card { display: block; min-width: 0; text-decoration: none; }
.collage-card.rv { opacity: 1; transform: none; }
.collage-card .photo { --r: 4/5; background: var(--paper); border: 1px solid var(--line); }
.collage-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.collage-card:hover .photo img { transform: scale(1.02); }
.collage-card h3 { margin: 14px 0 6px; }
.collage-card p { margin: 0; color: var(--ink-2); font-size: .94rem; }
.collage-card .link-arrow { margin-top: 8px; }
@media (min-width: 900px) {
  .collage-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 48px 28px; }
  .collage-card { grid-column: span 3; }
  .collage-card:first-child { grid-column: span 6; }
  .collage-card:nth-child(4) { margin-top: 90px; }
  .collage-card:nth-child(5) { grid-column: span 6; margin-top: 90px; }
}

/* ---------- Statement ---------- */
.statement { display: grid; gap: var(--space-3); align-items: center; }
.statement blockquote { margin: 0; }
.statement .display { font-size: clamp(2.4rem, 5.6vw, 5.4rem); line-height: 1; }
.statement .photo { --r: 3/4; }
@media (min-width: 900px) {
  .statement { grid-template-columns: 7fr 4fr; gap: clamp(40px, 7vw, 120px); }
  .statement .photo { margin-top: 18%; }
}
.statement-center { text-align: center; }
.statement-center .display { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 18ch; margin: 0 auto; }
.statement-center p { margin: 26px auto 0; }

/* ---------- Section head ---------- */
.head { display: grid; gap: 18px; margin-bottom: var(--space-3); }
.head p { color: var(--ink-2); margin: 0; }
@media (min-width: 900px) { .head { grid-template-columns: 1fr 1fr; align-items: end; } .head p { justify-self: end; max-width: 46ch; } }

/* ---------- Session mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
.tile { text-decoration: none; display: block; }
.tile .photo { --r: 4/5; }
.tile-t { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 12px; }
.tile-t h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
.tile-t span { font-size: .8rem; color: var(--ink-3); white-space: nowrap; }
.tile p { font-size: .92rem; color: var(--ink-2); margin: 4px 0 0; }
.tile:hover h3 { color: var(--clay); }
.tile:hover .photo img { transform: scale(1.02); }
.tile .photo img { transition: transform .8s var(--ease); }
.mosaic .tile:first-child { grid-column: 1 / -1; }
.mosaic .tile:first-child .photo { --r: 16/11; }
@media (min-width: 900px) {
  .mosaic { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 56px 28px; }
  .mosaic .tile { grid-column: span 3; }
  .mosaic .tile:nth-child(1) { grid-column: 1 / span 7; grid-row: span 2; }
  .mosaic .tile:nth-child(1) .photo { --r: 4/5; }
  .mosaic .tile:nth-child(2) { grid-column: 8 / span 5; }
  .mosaic .tile:nth-child(2) .photo { --r: 5/4; }
  .mosaic .tile:nth-child(3) { grid-column: 8 / span 3; }
  .mosaic .tile:nth-child(4) { grid-column: 11 / span 2; align-self: end; }
  .mosaic .tile:nth-child(4) .photo { --r: 3/4; }
  .mosaic .tile:nth-child(5) { grid-column: 1 / span 4; }
  .mosaic .tile:nth-child(6) { grid-column: 5 / span 3; margin-top: 90px; }
  .mosaic .tile:nth-child(7) { grid-column: 8 / span 5; }
  .mosaic .tile:nth-child(7) .photo { --r: 5/4; }
  .mosaic .tile:nth-child(8) { grid-column: 3 / span 5; }
  .mosaic .tile:nth-child(8) .photo { --r: 5/4; }
  .mosaic .tile:nth-child(9) { grid-column: 8 / span 3; margin-top: 60px; }
  .mosaic .tile:nth-child(10) { grid-column: 11 / span 2; margin-top: 60px; }
  .mosaic .tile:nth-child(10) .photo { --r: 3/4; }
}
.mosaic-more { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }

/* Quick offer line under sessions */
.offer {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); margin-top: var(--space-3);
}
.offer > div:nth-last-child(1):nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 699px) { .offer dd { font-size: 1.35rem; } .offer > div:nth-last-child(2):nth-child(odd) { border-bottom: 0; } }
.offer > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.offer > div:last-child { border-bottom: 0; }
.offer dt { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.offer dd { margin: 0; font-family: var(--serif); font-size: 1.6rem; line-height: 1.15; }
@media (min-width: 700px) {
  .offer { grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr)); }
  .offer > div { border-bottom: 0; border-right: 1px solid var(--line); padding: 22px 22px 22px 0; }
  .offer > div + div { padding-left: 22px; }
  .offer > div:last-child { border-right: 0; }
  .offer > div:nth-last-child(1):nth-child(odd) { grid-column: auto; }
}

/* ---------- Full-bleed ---------- */
.bleed .photo { --r: 16/10; }
@media (max-width: 699px) { .bleed .photo { --r: 4/5; } }

/* ---------- Night (weddings) ---------- */
.night { background: var(--night); color: var(--night-ink); }
.night .eyebrow { color: #C79A7B; }
.night .lede, .night p { color: #CFC8BD; }
.night a:hover { color: #E0B393; }
.night .rule { border-color: #34312c; }
.night .btn { background: var(--night-ink); color: var(--night); border-color: var(--night-ink); }
.night .btn:hover { background: #E0B393; border-color: #E0B393; color: var(--night); }
.night .btn-ghost { background: transparent; color: var(--night-ink); }

/* Wedding story sequence */
.story { display: grid; grid-auto-flow: column; grid-auto-columns: 72%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); scrollbar-width: thin; }
.story figure { margin: 0; scroll-snap-align: start; }
.story .photo { --r: 3/4; }
.story figcaption { display: flex; gap: 10px; align-items: baseline; margin-top: 12px; font-size: .9rem; }
.story figcaption b { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; }
.story figcaption span { color: #9c958a; font-size: .78rem; letter-spacing: .1em; }
@media (min-width: 900px) {
  .story { grid-auto-flow: row; grid-template-columns: repeat(7, minmax(0, 1fr)); overflow: visible; margin: 0; padding: 0; gap: 18px; }
  .story { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 24px; }
  .story figure:nth-child(even) { margin-top: 72px; }
  .story figure:nth-child(5) { grid-column: 1 / span 1; }
  .story figure:nth-child(7) .photo { --r: 4/5; }
}
.two-col { display: grid; gap: var(--space-3); }
@media (min-width: 900px) { .two-col { grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); } }
.checklist { list-style: none; padding: 0; margin: 0; columns: 1; }
@media (min-width: 600px) { .checklist { columns: 2; column-gap: 32px; } }
.checklist li { break-inside: avoid; padding: 12px 0 12px 26px; border-bottom: 1px solid var(--line); position: relative; }
.night .checklist li { border-color: #34312c; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 1.3em; width: 12px; height: 1px; background: currentColor; }

/* ---------- Split: large image + editorial text ---------- */
.split { display: grid; gap: var(--space-3); align-items: center; }
.split .photo { --r: 4/5; }
.split-pair { display: grid; grid-template-columns: 5fr 3fr; gap: 14px; align-items: end; }
.split-pair .photo:last-child { --r: 3/4; margin-bottom: 20%; }
@media (min-width: 900px) {
  .split { grid-template-columns: 6fr 5fr; gap: clamp(40px, 7vw, 120px); }
  .split--rev > :first-child { order: 2; }
}

/* About teaser */
.about-t { display: grid; gap: var(--space-3); align-items: end; }
.about-t .photo { --r: 4/5; }
.about-t .bts { display: none; }
@media (min-width: 900px) {
  .about-t { grid-template-columns: 4fr 1fr 6fr; }
  .about-t .bts { display: block; align-self: start; margin-top: -40px; }
  .about-t .bts .photo { --r: 2/3; }
}
.sign { font-family: var(--serif); font-style: italic; font-size: 2.2rem; margin-top: 10px; }

/* ---------- Packages ---------- */
.pkgs { border-top: 1px solid var(--ink); }
.pkg { display: grid; gap: 10px 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: center; }
.pkg-name { font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.4rem); line-height: 1; display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; }
.badge { font: 700 .68rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--clay); border: 1px solid currentColor; padding: 6px 8px; }
.pkg-spec { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: .95rem; color: var(--ink-2); }
.pkg-spec b { color: var(--ink); }
.pkg-best { font-size: .92rem; color: var(--ink-3); margin: 0; }
.pkg-price { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.pkg-price small { display: block; font: 600 .72rem/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.pkg ul { margin: 6px 0 0; padding-left: 18px; color: var(--ink-2); font-size: .95rem; }
@media (min-width: 900px) {
  .pkg { grid-template-columns: 3fr 5fr 2fr auto; }
}
.night .pkgs { border-color: var(--night-ink); }
.night .pkg { border-color: #34312c; }
.night .pkg-spec, .night .pkg ul, .night .pkg-best { color: #b9b2a6; }
.night .pkg-spec b { color: var(--night-ink); }

/* ---------- Facts bar on service pages ---------- */
.facts { --n: 5; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; counter-reset: s; }
.steps li { counter-increment: s; padding: 24px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: 8px 16px; }
.steps li::before { content: "0" counter(s); font-family: var(--serif); font-size: 1.8rem; line-height: 1; color: var(--clay); }
.steps h4 { margin-bottom: 4px; font-size: 1.08rem; }
.steps p { margin: 0; color: var(--ink-2); font-size: .98rem; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 28px; }
  .steps li { grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gallery .g { cursor: zoom-in; }
.gallery .g .photo { --r: 4/5; }
.gallery .g:nth-child(5n+1) { grid-column: 1 / -1; }
.gallery .g:nth-child(5n+1) .photo { --r: 3/2; }
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
  .gallery .g { grid-column: span 4; }
  .gallery .g:nth-child(6n+1) { grid-column: span 7; }
  .gallery .g:nth-child(6n+1) .photo { --r: 4/3; }
  .gallery .g:nth-child(6n+2) { grid-column: span 5; }
  .gallery .g:nth-child(6n+2) .photo { --r: 4/5; margin-top: 80px; }
  .gallery .g:nth-child(6n+3) { grid-column: span 4; }
  .gallery .g:nth-child(6n+4) { grid-column: span 4; margin-top: -60px; }
  .gallery .g:nth-child(6n+4) .photo { --r: 2/3; }
  .gallery .g:nth-child(6n+5) { grid-column: span 4; }
  .gallery .g:nth-child(6n+6) { grid-column: 3 / span 8; }
  .gallery .g:nth-child(6n+6) .photo { --r: 16/9; }
}
.lightbox { border: 0; padding: 0; background: rgba(12,11,10,.96); max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(12,11,10,.9); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; padding: 56px 12px; }
.lb-btn { position: absolute; background: none; border: 0; color: #fff; font-size: 1.6rem; width: 56px; height: 56px; cursor: pointer; }
.lb-close { top: 4px; right: 4px; } .lb-prev { left: 4px; top: 50%; transform: translateY(-50%); } .lb-next { right: 4px; top: 50%; transform: translateY(-50%); }

/* ---------- Page hero (service pages) ---------- */
.phero { padding-top: clamp(12px, 2vw, 32px); padding-bottom: var(--space-4); }
.phero-grid { display: grid; gap: 26px; }
.phero-media { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin: 0 calc(var(--gutter) * -1); }
.phero-media .photo:first-child { grid-row: span 2; --r: 3/4; }
.phero-media .photo:nth-child(2), .phero-media .photo:nth-child(3) { --r: auto; aspect-ratio: auto; height: 100%; }
.phero-copy h1 { font-size: clamp(2.6rem, 5.6vw, 5.4rem); margin-bottom: 20px; }
@media (min-width: 900px) {
  .phero-grid { grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
  .phero-media { margin: 0 calc(var(--gutter) * -1) 0 0; grid-template-columns: 3fr 2fr; gap: 16px; }
  .phero-media .photo:nth-child(3) { width: 72%; }
}
.crumbs { font-size: .82rem; color: var(--ink-3); margin-bottom: 22px; }
.crumbs a { text-decoration: none; } .crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; }

/* Text page hero (no image) */
.thero { padding-top: clamp(28px, 5vw, 80px); padding-bottom: var(--space-3); }
.thero h1 { max-width: 16ch; }
.thero .lede { margin-top: 22px; }

/* ---------- Content blocks ---------- */
.cols-2 { display: grid; gap: var(--space-3); }
@media (min-width: 900px) { .cols-2 { grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); } }
.block h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 20px; }
.block h3 { margin: 28px 0 10px; }
.tips { list-style: none; padding: 0; margin: 0; }
.tips li { padding: 14px 0; border-top: 1px solid var(--line); }
.tips li b { display: block; font-size: 1rem; margin-bottom: 2px; }
.tips li span { color: var(--ink-2); font-size: .97rem; }
.note { border-left: 2px solid var(--clay); padding: 4px 0 4px 20px; color: var(--ink-2); max-width: 64ch; }
.locs { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.locs div { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.locs b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.locs span { color: var(--ink-2); font-size: .96rem; }
@media (min-width: 900px) { .locs { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-family: var(--sans); font-size: 1.6rem; font-weight: 300; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 24px; color: var(--ink-2); max-width: 70ch; }
.faq .a p:last-child { margin-bottom: 0; }
.faq-group h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: var(--space-3) 0 18px; }

/* ---------- Related ---------- */
.related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
@media (min-width: 900px) { .related { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; } }
.related .tile .photo { --r: 1/1; }

/* ---------- CTA band ---------- */
.cta { background: var(--ink); color: var(--paper); padding: var(--space-4) 0; }
.cta-grid { display: grid; gap: var(--space-3); align-items: end; }
.cta h2 { font-size: clamp(2.4rem, 5.4vw, 5rem); }
.cta p { color: #cfc9bf; }
.cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn:hover { background: #E0B393; border-color: #E0B393; }
.cta .btn-ghost { background: transparent; color: var(--paper); }
.cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }
@media (min-width: 900px) { .cta-grid { grid-template-columns: 7fr 5fr; } }

/* ---------- Guides ---------- */
.guides { display: grid; gap: var(--space-3) 28px; }
@media (min-width: 800px) { .guides { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.guide-card { text-decoration: none; display: block; }
.guide-card .photo { --r: 3/2; margin-bottom: 16px; }
.guide-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.guide-card p { color: var(--ink-2); font-size: .96rem; margin: 0; }
.guide-card:hover h3 { color: var(--clay); }
.guide-list .guide-card:first-child { grid-column: 1 / -1; display: grid; gap: 24px; }
@media (min-width: 800px) {
  .guide-list .guide-card:first-child { grid-template-columns: 7fr 5fr; align-items: center; gap: 56px; }
  .guide-list .guide-card:first-child h3 { font-size: 2.6rem; }
}
.prose { font-size: 1.12rem; line-height: 1.78; }
.prose h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 2.2em 0 .6em; }
.prose h3 { margin: 1.8em 0 .5em; }
.prose p, .prose ul, .prose ol { max-width: 68ch; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--clay); }
.prose blockquote { margin: 1.6em 0; font-family: var(--serif); font-size: 1.8rem; line-height: 1.2; }
.prose .photo { margin: 2em 0; }
.post-cta { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); padding: 28px 0; margin: 3em 0 0; }

.archive-list { max-width: 820px; }
.archive-row { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 34px 0; border-top: 1px solid var(--line); }
.archive-row:last-child { border-bottom: 1px solid var(--line); }
.archive-year { font-family: var(--serif); font-size: 2.2rem; color: var(--clay); line-height: 1; }
.archive-source { margin: 0 0 4px; }
.archive-quote { font-family: var(--serif); font-size: 1.4rem; line-height: 1.4; margin: 14px 0; max-width: 56ch; }
@media (max-width: 620px) {
  .archive-row { grid-template-columns: 1fr; gap: 8px; }
  .archive-year { font-size: 1.6rem; }
}
.post-cta h3 { margin-bottom: 8px; }

/* ---------- Forms ---------- */
.form-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.form-tabs button {
  flex: 1; background: none; border: 0; border-bottom: 2px solid transparent; padding: 16px 8px; min-height: 56px;
  font-weight: 700; font-size: 1rem; cursor: pointer; color: var(--ink-3);
}
.form-tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }
.form { display: grid; gap: 20px; }
.form[hidden] { display: none; }
.frow { display: grid; gap: 20px; }
@media (min-width: 700px) { .frow { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 7px; }
.field .opt { font-weight: 500; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 13px 14px; background: #fff; border: 1px solid #C9C1B5; border-radius: 2px; font-size: 1.02rem;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ink); outline-offset: -1px; border-color: var(--ink); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #A3261A; }
.err { color: #A3261A; font-size: .86rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.checks label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid #C9C1B5; background: #fff; font-weight: 500; font-size: .95rem; cursor: pointer; min-height: 46px; }
.checks input { width: 18px; height: 18px; min-height: 0; accent-color: var(--ink); }
.hp { position: absolute; left: -9999px; }
.form-status { padding: 18px 20px; border-left: 3px solid; display: none; }
.form-status.ok { display: block; border-color: #2E6B45; background: #EEF4EF; }
.form-status.bad { display: block; border-color: #A3261A; background: #F8ECEA; }
.contact-grid { display: grid; gap: var(--space-3); }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 4fr 7fr; gap: clamp(48px, 7vw, 120px); } }
.contact-aside dl { margin: 0; border-top: 1px solid var(--ink); }
.contact-aside dl div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-aside dt { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.contact-aside dd { margin: 4px 0 0; font-size: 1.05rem; }

/* ---------- Portfolio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-3); }
.filters a { padding: 10px 16px; border: 1px solid var(--line); text-decoration: none; font-size: .92rem; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.filters a:hover { border-color: var(--ink); color: var(--ink); }
.pf-section { scroll-margin-top: 100px; }
.pf-section + .pf-section { margin-top: var(--space-4); }
.pf-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-2); padding: var(--space-4) 0 32px; font-size: .95rem; }
.f-top { display: flex; flex-direction: column; gap: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.f-brand-name { display: block; font-family: var(--serif); font-weight: 500; letter-spacing: .1em; font-size: 1.4rem; }
.f-tag { color: var(--ink-3); font-size: .88rem; margin: 6px 0 10px; }
.f-email { text-decoration: none; color: var(--ink-2); font-weight: 600; display: inline-flex; align-items: center; min-height: 26px; }
.f-email:hover { color: var(--clay); }
.f-links { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.f-links a { text-decoration: none; color: var(--ink-2); font-size: .92rem; min-height: 44px; display: inline-flex; align-items: center; }
.f-links a:hover { color: var(--clay); }
.f-links .f-cta { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.f-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; padding: 18px 0; font-size: .8rem; }
.f-legal a, .f-legal button.f-cookie-link { text-decoration: none; color: var(--ink-3); background: none; border: 0; padding: 8px 0; font: inherit; font-size: .8rem; cursor: pointer; min-height: 44px; display: inline-flex; align-items: center; }
.f-legal a:hover, .f-legal button.f-cookie-link:hover { color: var(--clay); text-decoration: underline; }
.f-bottom { padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; color: var(--ink-3); font-size: .82rem; }
@media (min-width: 900px) { .f-top { flex-direction: row; justify-content: space-between; align-items: flex-start; } }

/* ---------- Legal pages ---------- */
.legal-updated { color: var(--ink-3); font-size: .88rem; margin-bottom: 10px; }
.legal-toc { background: var(--paper-2); border: 1px solid var(--line); padding: 20px 24px; margin-bottom: 40px; }
.legal-toc-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; columns: 2; gap: 20px; }
.legal-toc a { text-decoration: none; color: var(--ink-2); font-size: .92rem; display: inline-flex; align-items: center; min-height: 26px; padding: 3px 0; }
.legal-toc a:hover { color: var(--clay); }
.legal-sections section { scroll-margin-top: 100px; padding-bottom: 6px; }
.legal-sections section + section { border-top: 1px solid var(--line); }
.legal-back { margin-top: 48px; }
.legal-back a { text-decoration: none; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; min-height: 44px; }
.consent-line a { color: var(--clay); display: inline-flex; align-items: center; min-height: 26px; }

/* ---------- Cookie consent ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 480px;
  background: var(--ink); color: var(--paper); padding: 22px 24px; border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,.28);
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); margin-bottom: 8px; }
.cookie-banner p { font-size: .92rem; line-height: 1.55; color: var(--mist, #D8D6CC); margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { min-height: 44px; padding: 0 16px; font: inherit; font-size: .85rem; font-weight: 700; border-radius: 2px; cursor: pointer; }
.cookie-actions .ck-accept { background: var(--paper); color: var(--ink); border: 1px solid var(--paper); }
.cookie-actions .ck-accept:hover { background: var(--sand); }
.cookie-actions .ck-reject, .cookie-actions .ck-manage { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,.4); }
.cookie-actions .ck-reject:hover, .cookie-actions .ck-manage:hover { border-color: var(--paper); }
@media (max-width: 560px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 20px; } }

.cookie-panel[open] { border: 0; padding: 0; max-width: 560px; width: calc(100vw - 32px); border-radius: 6px; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.cookie-panel::backdrop { background: rgba(26,25,23,.55); }
.cookie-panel-in { padding: 30px 28px; max-height: 84vh; overflow-y: auto; }
.cookie-panel h2 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 6px; }
.cookie-panel > .cookie-panel-in > p { color: var(--ink-2); margin-bottom: 22px; font-size: .95rem; }
.ck-cat { border-top: 1px solid var(--line); padding: 16px 0; }
.ck-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.ck-cat-head strong { font-size: 1rem; }
.ck-cat p { color: var(--ink-3); font-size: .88rem; line-height: 1.5; }
.ck-always { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.ck-switch { position: relative; width: 42px; height: 24px; flex: none; }
.ck-switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.ck-switch .trk { position: absolute; inset: 0; background: var(--line); border-radius: 20px; transition: background .2s; pointer-events: none; }
.ck-switch .trk::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.ck-switch input:checked + .trk { background: var(--palm, var(--clay)); }
.ck-switch input:checked + .trk::after { transform: translateX(18px); }
.ck-switch input:focus-visible + .trk { outline: 2px solid var(--clay); outline-offset: 2px; }
.cookie-panel-foot { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.ck-saved { font-size: .85rem; color: var(--palm, var(--ink-2)); }

/* Reveal — subtle, one-time */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }
.tile, .g, .path, .guide-card, .story figure, .pkg > * { min-width: 0; }
.tile-t h3 { overflow-wrap: anywhere; }

.hero-inset:empty, .bts:empty { display: none !important; }
/* about teaser: keep the text in its column; with no portrait yet, drop the empty frame */
@media (min-width: 900px) { .about-t > .rv:last-child { grid-column: 3; } }
.about-t:has(> .rv:first-child .is-empty) { grid-template-columns: minmax(0, 1fr); }
.about-t:has(> .rv:first-child .is-empty) > .rv:first-child { display: none; }
.about-t:has(> .rv:first-child .is-empty) > .rv:last-child { grid-column: auto; max-width: 62ch; }

/* ================= GALLERY SYSTEM (stories, the Edit, cinema) ================= */
@view-transition { navigation: auto; }
::view-transition-group(*) { animation-duration: .45s; animation-timing-function: var(--ease); }
.photo { background-size: cover; background-position: center; }
.photo img { transition: opacity .5s var(--ease); }
.cine { cursor: zoom-in; }
.cine:focus-visible { outline-offset: 4px; }

/* Album sequence — pacing, not a grid */
.seq { display: grid; gap: clamp(40px, 8vw, 140px); padding: var(--space-3) 0 var(--space-4); }
.seq-wide.o-v { width: min(560px, 78%); }
.seq-full { margin: 0 calc(var(--gutter) * -1); }
.seq-full.o-v { margin: 0 auto; width: min(640px, 100%); }
.seq-full.o-h .photo { max-height: 94vh; }
.seq-pair { display: grid; gap: 14px; }
.seq-pair > :last-child { width: 78%; justify-self: end; }
.seq-solo { width: 86%; }
.seq-solo.solo-r { justify-self: end; }
.seq-note {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.2;
  color: var(--ink-2); margin: 0; max-width: 22ch; justify-self: start; padding-left: 8%;
}
.seq-note::before { content: ""; display: block; width: 36px; height: 1px; background: var(--clay); margin-bottom: 18px; }
@media (min-width: 900px) {
  .seq-pair { grid-template-columns: 7fr 5fr; gap: 28px; align-items: start; }
  .seq-pair > :last-child { width: auto; margin-top: 18%; }
  .seq-solo { width: 42%; }
  .seq-solo.solo-l { margin-left: 8%; }
  .seq-solo.solo-r { margin-right: 6%; }
  .seq-note { justify-self: center; padding-left: 0; text-align: left; }
}

/* Story opening — composed around the photo's orientation */
.st-open { background: var(--night); color: var(--night-ink); padding-bottom: var(--space-3); }
.st-open .crumbs, .st-open .crumbs a { color: #9c958a; }
.st-open .lede { color: #CFC8BD; }
.st-open .eyebrow { color: #C79A7B; }
.st-open-media .photo { max-height: 88vh; }
.st-open.o-h .st-open-media .photo { --r: 16/9 !important; }
.st-open-copy { padding-top: var(--space-2); }
.st-open-copy h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); margin-bottom: 18px; }
@media (min-width: 900px) {
  .st-open.o-v { display: grid; grid-template-columns: 5fr 6fr; align-items: end; padding-bottom: 0; }
  .st-open.o-v .st-open-media { order: 2; }
  .st-open.o-v .st-open-media .photo { height: calc(100vh - 76px); max-height: none; aspect-ratio: auto; }
  .st-open.o-v .st-open-copy { order: 1; padding: 0 clamp(32px, 5vw, 80px) clamp(40px, 6vw, 96px) var(--gutter); max-width: none; }
  .st-open.o-h .st-open-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; align-items: end; }
  .st-open.o-h .st-open-copy .crumbs, .st-open.o-h .st-open-copy .eyebrow { grid-column: 1 / -1; }
}
.st-end { background: var(--paper-2); padding: var(--space-4) 0; }
.st-end-grid { display: grid; gap: var(--space-3); align-items: end; }
.st-end h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); max-width: 16ch; }
.st-next-link { display: block; text-decoration: none; margin-bottom: 18px; }
.st-next-link span { display: block; font-family: var(--serif); font-size: 1.7rem; margin-top: 10px; }
@media (min-width: 900px) { .st-end-grid { grid-template-columns: 7fr 4fr; } }

/* Surprise me — small, playful, still quiet */
.surprise {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  background: none; border: 1px dashed var(--ink-3); border-radius: 22px; cursor: pointer;
  font: 700 .82rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  transition: border-color .25s, color .25s;
}
.surprise span { color: var(--clay); transition: transform .5s var(--ease); display: inline-block; }
.surprise:hover { border-color: var(--clay); color: var(--clay); }
.surprise:hover span { transform: rotate(180deg); }
.night .surprise { color: var(--night-ink); border-color: #8a8474; }
.night .pf-nav a { border-color: #8a8474; }

/* Portfolio */
.pf-nav { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; margin-top: var(--space-2); }
.pf-nav a { font-weight: 700; font-size: .95rem; text-decoration: none; border-bottom: 1px solid var(--line); padding: 10px 0; }
.pf-nav a:hover { border-color: var(--clay); }
.st-covers { display: grid; gap: var(--space-3); }
.st-cover { text-decoration: none; display: block; }
.st-cover .photo img { transition: transform 1.2s var(--ease), opacity .5s; }
.st-cover:hover .photo img { transform: scale(1.025); }
.st-cover-t { display: grid; gap: 6px; margin-top: 16px; }
.st-cover-t .eyebrow { margin: 0; }
.st-cover-t b { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.05; }
.st-cover-t .link-arrow { justify-self: start; margin-top: 4px; }
.st-cover:hover b { color: var(--clay); }
.st-cover.o-v .photo { --r: 4/5 !important; }
.st-cover.o-h .photo { --r: 3/2 !important; }
@media (min-width: 900px) {
  .st-covers { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 28px; }
  .st-cover:nth-child(3n+1) { grid-column: 1 / span 5; }
  .st-cover:nth-child(3n+2) { grid-column: 7 / span 6; margin-top: 22%; }
  .st-cover:nth-child(3n+3) { grid-column: 4 / span 5; margin-top: var(--space-3); }
}
.pf-links { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.pf-links a { display: grid; gap: 2px; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.pf-links b { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; }
.pf-links span { color: var(--ink-2); font-size: .95rem; }
.pf-links a:hover b { color: var(--clay); }
@media (min-width: 700px) { .pf-links { columns: 2; column-gap: 32px; } .pf-links li { break-inside: avoid; } }
.pf-end .bleed .photo { --r: 21/9 !important; }
@media (max-width: 699px) { .pf-end .bleed .photo { --r: 4/5 !important; } }
.pf-end-copy { padding-top: var(--space-3); padding-bottom: var(--space-4); }
.pf-end-copy h2 { font-size: clamp(3rem, 9vw, 8rem); }
.pf-end-copy p { letter-spacing: .08em; }

/* Cinema view */
.cinema { border: 0; padding: 0; margin: 0; width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; background: #0F0E0C; color: #EFEAE2; }
.cinema::backdrop { background: #0F0E0C; }
.cinema img { position: absolute; inset: 64px 12px 24px; width: calc(100% - 24px); height: calc(100% - 88px); object-fit: contain; opacity: 0; transition: opacity .35s var(--ease); }
.cinema img.in { opacity: 1; }
.cine-bar { position: absolute; top: 0; left: 0; right: 0; height: 64px; display: flex; align-items: center; gap: 22px; padding: 0 18px; z-index: 2; }
.cine-count { font: 700 .78rem/1 var(--sans); letter-spacing: .16em; color: #C79A7B; }
.cine-cap { font-family: var(--serif); font-size: 1.15rem; color: #CFC8BD; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cine-btn { background: none; border: 0; color: #EFEAE2; cursor: pointer; min-height: 48px; min-width: 48px; font: 600 .9rem var(--sans); }
.cine-prev, .cine-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 1.6rem; z-index: 2; }
.cine-prev { left: 6px; } .cine-next { right: 6px; }
.cine-btn:hover { color: #E0B393; }
@media (max-width: 699px) { .cine-prev, .cine-next { top: auto; bottom: 8px; transform: none; } .cinema img { inset: 64px 0 64px; width: 100%; height: calc(100% - 128px); } }
.cine-open { overflow: hidden; }

/* Home hero: keyword lives in the H1, visually an eyebrow */
.h1-eyebrow { display: block; margin-bottom: 20px; }
.hero-for { font-weight: 700; font-size: .95rem; letter-spacing: .06em; margin: 0 0 18px; color: var(--ink); }

/* Weddings opening: the photograph opens the page, type below on night */
.w-open-media .photo { max-height: 86vh; --pos: 45% 60%; }
@media (max-width: 699px) { .w-open-media .photo { --r: 4/5 !important; } }
.w-open-copy { display: grid; gap: 24px; padding-top: var(--space-3); padding-bottom: var(--space-4); }
.w-open-copy h1 { font-size: clamp(2.8rem, 6.4vw, 6rem); }
@media (min-width: 900px) { .w-open-copy { grid-template-columns: 6fr 5fr; align-items: end; gap: 60px; } }
.night .crumbs, .night .crumbs a { color: #9c958a; }
