/* Chris Semple Photography — design system */

:root {
  /* Brand palette */
  --bg: #F5F0E9;
  --bg-alt: #D9C8C2;
  --bg-deep: #112250;
  --ink: #112250;
  --ink-soft: #3C5070;
  --muted: #6c7a93;
  --muted-soft: #9aa6bc;
  --rule: rgba(17, 34, 80, 0.16);
  --rule-soft: rgba(17, 34, 80, 0.08);
  --accent: #E0C58F;
  --on-deep: #F5F0E9;
  --on-deep-muted: #b6c0d5;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --fs-display: clamp(40px, 6.2vw, 92px);
  --fs-h1: var(--fs-display);
  --fs-h2: clamp(32px, 4.4vw, 64px);
  --fs-h3: clamp(24px, 2.6vw, 36px);
  --fs-lead: clamp(18px, 1.6vw, 22px);
  --fs-body: 17px;
  --fs-small: 14px;
  --fs-micro: 12px;
  --fs-title: clamp(28px, 3.4vw, 44px);
  --fs-h4: 22px;
  --fs-label: 11px;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --section-y: clamp(72px, 10vw, 144px);
}

[data-palette="brand"] {
  --bg: #F5F0E9;
  --bg-alt: #D9C8C2;
  --bg-deep: #112250;
  --ink: #112250;
  --ink-soft: #3C5070;
  --muted: #6c7a93;
  --rule: rgba(17, 34, 80, 0.16);
  --rule-soft: rgba(17, 34, 80, 0.08);
  --accent: #E0C58F;
  --on-deep: #F5F0E9;
  --on-deep-muted: #b6c0d5;
}

[data-palette="midnight"] {
  --bg: #0d1c43;
  --bg-alt: #112250;
  --bg-deep: #08153a;
  --ink: #F5F0E9;
  --ink-soft: #D9C8C2;
  --muted: #b6c0d5;
  --rule: rgba(245, 240, 233, 0.18);
  --rule-soft: rgba(245, 240, 233, 0.10);
  --accent: #E0C58F;
  --on-deep: #F5F0E9;
  --on-deep-muted: #b6c0d5;
}

[data-palette="dust"] {
  --bg: #EFE3DC;
  --bg-alt: #D9C8C2;
  --bg-deep: #112250;
  --ink: #112250;
  --ink-soft: #3C5070;
  --muted: #76667e;
  --rule: rgba(17, 34, 80, 0.16);
  --rule-soft: rgba(17, 34, 80, 0.08);
  --accent: #E0C58F;
  --on-deep: #F5F0E9;
  --on-deep-muted: #b6c0d5;
}

[data-palette="slate"] {
  --bg: #F5F0E9;
  --bg-alt: #c6cfe0;
  --bg-deep: #112250;
  --ink: #112250;
  --ink-soft: #3C5070;
  --muted: #6c7a93;
  --rule: rgba(60, 80, 112, 0.22);
  --rule-soft: rgba(60, 80, 112, 0.10);
  --accent: #3C5070;
  --on-deep: #F5F0E9;
  --on-deep-muted: #b6c0d5;
}

[data-density="airy"]    { --section-y: clamp(96px, 14vw, 200px); }
[data-density="standard"]{ --section-y: clamp(72px, 10vw, 144px); }
[data-density="tight"]   { --section-y: clamp(56px, 7vw, 96px); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: var(--fs-micro); }
.eyebrow { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.22em; font-size: var(--fs-micro); color: var(--muted); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.08; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: var(--section-y); }
.section--deep { background: var(--bg-deep); color: var(--on-deep); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--on-deep); }
.section--deep p { color: var(--on-deep-muted); }
.section--alt { background: var(--bg-alt); }

.rule { height: 1px; background: var(--rule); border: 0; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__wordmark {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  grid-column: 2;
}
.nav__wordmark small {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 6px;
}
.nav__logo {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.nav__links--left { grid-column: 1; justify-content: flex-start; }
.nav__links--right { grid-column: 3; justify-content: flex-end; }
.nav__links a { position: relative; padding: 6px 0; transition: opacity .2s; }
.nav__links a:hover { opacity: .55; }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
}

.nav__cta {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }

.nav__burger { display: none; }

@media (max-width: 1100px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__wordmark { grid-column: 1; text-align: left; }
  .nav__links { display: none; }
  .nav__burger {
    display: inline-flex;
    grid-column: 2;
    gap: 8px;
    align-items: center;
    font-family: var(--mono);
    font-size: var(--fs-label);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .nav__burger-icon {
    width: 20px; height: 12px;
    position: relative;
  }
  .nav__burger-icon::before,
  .nav__burger-icon::after {
    content: ""; position: absolute; left: 0; right: 0;
    height: 1.5px; background: var(--ink);
  }
  .nav__burger-icon::before { top: 0; }
  .nav__burger-icon::after { bottom: 0; }
}

.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter);
  overflow-y: auto;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .35s ease, visibility 0s linear .35s;
}
.menu-overlay--open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .35s ease;
}
.menu-overlay__head { display: flex; justify-content: space-between; align-items: center; }
.menu-overlay__close {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-overlay__links {
  list-style: none;
  margin-top: auto; margin-bottom: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.menu-overlay__links a {
  font-family: var(--serif);
  font-size: clamp(36px, 12vw, 64px);
  line-height: 1;
}
/* Short viewports (e.g. phone landscape): shrink links, align to top so
   all items fit and the list can scroll instead of clipping. */
@media (max-height: 520px) {
  .menu-overlay__links { margin-top: 8px; margin-bottom: 8px; gap: 6px; }
  .menu-overlay__links a { font-size: clamp(20px, 7.5vh, 30px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--outline-on-dark {
  border: 1px solid color-mix(in srgb, var(--on-deep) 50%, transparent);
  color: var(--on-deep);
}
.btn--outline-on-dark:hover { background: var(--on-deep); color: var(--bg-deep); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { background: var(--accent); color: var(--bg); }
.btn--ghost {
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.btn__arrow { display: inline-block; transition: transform .25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Placeholder */
.ph {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex; align-items: flex-end;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    rgba(26, 23, 20, 0.045) 14px 15px);
}
.ph__label {
  position: relative;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 8px;
  width: 100%;
}
.ph__label::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ph--dark { background: var(--bg-deep); }
.ph--dark::before {
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    color-mix(in srgb, var(--on-deep) 8%, transparent) 14px 15px);
}
.ph--dark .ph__label {
  background: var(--bg-deep);
  color: color-mix(in srgb, var(--on-deep) 70%, transparent);
  border-top-color: color-mix(in srgb, var(--on-deep) 14%, transparent);
}
.ph--ratio { aspect-ratio: var(--ratio, 2 / 3); }

/* Page hero */
.page-hero {
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(32px, 4vw, 56px);
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero__eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero__eyebrow::after {
  content: ""; height: 1px; background: var(--rule);
  flex: 1; max-width: 240px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.022em;
  max-width: 18ch;
  color: var(--ink);
  text-wrap: balance;
}
.page-hero__title em { font-style: italic; }
.page-hero__sub {
  margin-top: 20px;
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 52ch;
  text-wrap: pretty;
}

/* Footer CTA */
.footer-cta {
  padding: clamp(96px, 12vw, 160px) var(--gutter);
  text-align: center;
  background: var(--bg-alt);
}
.footer-cta__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
}
.footer-cta__headline em { font-style: italic; }
.footer-cta__sub {
  margin: 28px auto 0;
  max-width: 50ch;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.footer-cta__ctas { margin-top: 40px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.footer {
  background: var(--bg-deep);
  color: var(--on-deep);
  padding: clamp(64px, 8vw, 96px) var(--gutter) 40px;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid color-mix(in srgb, var(--on-deep) 12%, transparent);
}
@media (min-width: 880px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--on-deep);
}
.footer__wordmark small {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  color: var(--on-deep-muted);
  margin-top: 16px;
  text-transform: uppercase;
}
.footer__heading {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
  margin-bottom: 18px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: var(--fs-body); color: var(--on-deep); }
.footer__list a { transition: opacity .2s; }
.footer__list a:hover { opacity: 0.6; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
}

/* Blog index */
.blog-list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 4vw, 56px);
}
.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--rule);
  transition: opacity .25s;
}
.blog-card:hover { opacity: 0.78; }
@media (min-width: 720px) {
  .blog-card { grid-template-columns: 5fr 7fr; }
}
.blog-card__media { aspect-ratio: 3 / 2; width: 100%; object-fit: cover; display: block; }
.blog-card__meta {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex; gap: 16px; align-items: center;
}
.blog-card__meta strong { color: var(--accent); font-weight: 500; }
.blog-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-title);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  text-wrap: balance;
  color: var(--ink);
}
.blog-card__title em { font-style: italic; }
.blog-card__excerpt {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 18px;
}
.blog-card__readmore {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.blog-card--featured {
  border-top: 0;
  background: var(--bg-deep);
  color: var(--on-deep);
  padding: clamp(40px, 5vw, 72px);
  border-radius: 6px;
  margin-bottom: 24px;
}
.blog-card--featured .blog-card__title { color: var(--on-deep); }
.blog-card--featured .blog-card__excerpt { color: color-mix(in srgb, var(--on-deep) 80%, transparent); }
.blog-card--featured .blog-card__meta { color: color-mix(in srgb, var(--on-deep) 65%, transparent); }
.blog-card--featured .blog-card__readmore { color: var(--accent); border-bottom-color: var(--accent); }

/* Utilities */
.eyebrow-row { display: flex; align-items: center; gap: 16px; }
.eyebrow-row::after { content: ""; flex: 1; height: 1px; background: var(--rule); max-width: 80px; }
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 40px; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; }
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--bg-deep) 28%, transparent) 0%,
      color-mix(in srgb, var(--bg-deep) 6%, transparent) 30%,
      color-mix(in srgb, var(--bg-deep) 68%, transparent) 100%);
}
.hero__body {
  position: relative; z-index: 1;
  margin-top: auto;
  padding: var(--gutter);
  padding-bottom: clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  width: 100%;
  color: var(--on-deep);
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.32em;
  color: color-mix(in srgb, var(--on-deep) 70%, transparent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::after { content: ""; flex: 1; height: 1px; background: color-mix(in srgb, var(--on-deep) 25%, transparent); max-width: 220px; }
.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.022em;
  max-width: 16ch;
  color: var(--on-deep);
  text-wrap: balance;
}
.hero__headline em {
  font-style: italic;
  color: var(--on-deep);
}
.hero__sub {
  margin-top: 28px;
  font-size: var(--fs-lead);
  line-height: 1.4;
  max-width: 44ch;
  color: color-mix(in srgb, var(--on-deep) 85%, transparent);
  text-wrap: pretty;
}
.hero__ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  position: absolute; right: var(--gutter); bottom: var(--gutter);
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  color: color-mix(in srgb, var(--on-deep) 60%, transparent);
  text-align: right;
  z-index: 2;
}
@media (max-width: 720px) {
  .hero__meta { display: none; }
}

/* Placeholder */
.ph {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex; align-items: flex-end;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    rgba(26, 23, 20, 0.045) 14px 15px);
}
.ph__label {
  position: relative;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 8px;
  width: 100%;
}
.ph__label::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.ph--dark { background: var(--bg-deep); }
.ph--dark::before {
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    color-mix(in srgb, var(--on-deep) 8%, transparent) 14px 15px);
}
.ph--dark .ph__label {
  background: var(--bg-deep);
  color: color-mix(in srgb, var(--on-deep) 70%, transparent);
  border-top-color: color-mix(in srgb, var(--on-deep) 14%, transparent);
}

.ph--ratio { aspect-ratio: var(--ratio, 2 / 3); }

/* Two-up + grids */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--asym { grid-template-columns: 5fr 7fr; }
  .split--asym-rev { grid-template-columns: 7fr 5fr; }
}
.split__media { aspect-ratio: 2 / 3; }
.split__media--landscape { aspect-ratio: 3 / 2; }

/* Philosophy section */
.philosophy { }
.philosophy__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.philosophy__body p {
  font-size: var(--fs-body);
  max-width: 56ch;
}

/* Section heading */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 2fr 3fr; }
}
.section-head__num {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-head__title { font-size: var(--fs-h2); }

/* Quietly unfolds — image trio */
.trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (min-width: 720px) {
  .trio { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
  .trio > *:nth-child(1) { aspect-ratio: 2 / 3; transform: translateY(28px); }
  .trio > *:nth-child(2) { aspect-ratio: 2 / 3; }
  .trio > *:nth-child(3) { aspect-ratio: 2 / 3; transform: translateY(-28px); }
}
.trio > * { aspect-ratio: 2 / 3; }

/* Credibility bar — static, no marquee */
.credibility {
  background: var(--bg-deep);
  color: var(--on-deep);
}
.credibility__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .credibility__inner { grid-template-columns: repeat(5, 1fr); gap: 0; }
}
.credibility__item {
  padding: 8px 0;
}
@media (min-width: 720px) {
  .credibility__item { padding: 0 24px; border-left: 1px solid color-mix(in srgb, var(--on-deep) 18%, transparent); }
  .credibility__item:first-child { border-left: 0; padding-left: 0; }
  .credibility__item:last-child { padding-right: 0; }
}
.credibility__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--on-deep);
  margin-bottom: 10px;
}
.credibility__label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--on-deep) 62%, transparent);
  line-height: 1.5;
}

/* Packages */
.packages-snapshot {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 880px) {
  .packages-snapshot { grid-template-columns: 2fr 3fr; }
}
.price-card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 48px);
  border-radius: 4px;
}
.price-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.price-card__row:last-of-type { border-bottom: 0; }
.price-card__row:first-of-type { padding-top: 0; }
.price-card__label { font-size: var(--fs-small); color: var(--ink-soft); }
.price-card__amt {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.price-card__from { color: var(--muted); font-family: var(--mono); font-size: var(--fs-label); letter-spacing: 0.16em; margin-right: 6px; }

/* Venue grid */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 720px) {
  .venues-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .venues-grid > *:nth-child(1) { grid-column: span 2; aspect-ratio: 3 / 2; }
  .venues-grid > *:nth-child(2) { grid-column: span 1; aspect-ratio: 3 / 4; }
  .venues-grid > *:nth-child(3) { grid-column: span 1; aspect-ratio: 3 / 4; }
  .venues-grid > *:nth-child(4) { grid-column: span 1; aspect-ratio: 3 / 4; }
  .venues-grid > *:nth-child(5) { grid-column: span 3; aspect-ratio: 3 / 1.2; }
}
.venues-grid > * { aspect-ratio: 2 / 3; }

.venue-chip {
  position: relative;
  overflow: hidden;
}
.venue-chip__name {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-deep);
  display: flex; gap: 8px; align-items: center;
}
.venue-chip__name::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--on-deep);
}

/* Testimonial */
.testimonial {
  background: var(--bg-deep);
  color: var(--on-deep);
}
.testimonial__inner {
  max-width: 1000px; margin: 0 auto;
  padding: clamp(80px, 10vw, 144px) var(--gutter);
  text-align: center;
}
.testimonial__mark {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-title);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--on-deep);
  text-wrap: balance;
}
.testimonial__attr {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--on-deep) 60%, transparent);
  display: flex; gap: 14px; justify-content: center; align-items: center;
}
.testimonial__attr::before {
  content: ""; width: 28px; height: 1px; background: color-mix(in srgb, var(--on-deep) 40%, transparent);
}
/* Mobile: smaller, readable testimonials (inline + carousel stay matched) */
@media (max-width: 600px) {
  .testimonial__inner { padding: clamp(48px, 13vw, 72px) var(--gutter); }
  .testimonial__quote { font-size: clamp(19px, 5.4vw, 24px); line-height: 1.32; }
  .testimonial__mark { margin-bottom: 16px; }
  .testimonial__attr { margin-top: 28px; }
}

/* Testimonial carousel */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-carousel__track { display: flex; transition: transform 0.45s ease; will-change: transform; }
.testimonial-carousel__slide { min-width: 100%; flex-shrink: 0; }
.testimonial-carousel__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 0 var(--gutter) clamp(32px, 5vw, 56px);
}
.testimonial-carousel__btn {
  background: none; border: none; cursor: pointer;
  font-size: var(--fs-h4); line-height: 1;
  color: color-mix(in srgb, var(--on-deep) 45%, transparent);
  padding: 8px 4px; transition: color 0.2s;
}
.testimonial-carousel__btn:hover { color: var(--on-deep); }
.testimonial-carousel__dots { display: flex; gap: 8px; align-items: center; }
.testimonial-carousel__dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: color-mix(in srgb, var(--on-deep) 28%, transparent);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, width 0.25s;
}
.testimonial-carousel__dot--active {
  background: var(--accent); width: 22px;
}

/* Albums teaser */
.albums-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (min-width: 880px) {
  .albums-teaser { grid-template-columns: 6fr 5fr; }
}

/* ─── About chapter layout ─── */
.chapter {
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}
.chapter__inner {
  max-width: 720px;
  margin: 0 auto;
}
.chapter__num {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.chapter__num::after {
  content: ""; height: 1px; background: var(--rule);
  flex: 1; max-width: 80px;
}
.chapter__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.chapter__title em { font-style: italic; }
.chapter__body p {
  font-size: var(--fs-body);
  line-height: 1.65;
}
.chapter__body p + p { margin-top: 1.2em; }
.chapter__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: pretty;
}

/* Full-bleed photo break */
.photo-break {
  position: relative;
  margin: 0;
}
.photo-break__inner {
  height: clamp(360px, 64vh, 720px);
  width: 100%;
}
.photo-break__caption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter) 0;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 14px; align-items: center;
}
.photo-break__caption::before {
  content: ""; width: 24px; height: 1px; background: var(--rule);
}

/* ─── Investment page ─── */
.signature-card {
  background: var(--bg-deep);
  color: var(--on-deep);
  border-radius: 6px;
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.signature-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 880px) {
  .signature-card__grid { grid-template-columns: 5fr 7fr; }
}
.signature-card__eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.signature-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--on-deep);
  margin-bottom: 18px;
}
.signature-card__title em { font-style: italic; }
.signature-card__price {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 14px;
}
.signature-card__strap {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--on-deep) 70%, transparent);
}
.signature-card__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.signature-card__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: var(--fs-body);
  line-height: 1.45;
  color: color-mix(in srgb, var(--on-deep) 92%, transparent);
}
.signature-card__list li::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--accent);
  margin-top: 12px;
}

.addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 600px) { .addons { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .addons { grid-template-columns: 1fr 1fr 1fr; } }

.addon {
  background: var(--bg);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 220px;
}
.addon__top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.addon__name {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.addon__price {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.addon__price em { font-style: normal; color: var(--accent); font-weight: 500; font-size: var(--fs-micro); font-family: var(--mono); letter-spacing: 0.16em; text-transform: uppercase; display: block; }
.addon__body { font-size: var(--fs-body); line-height: 1.55; color: var(--ink-soft); flex: 1; }

.albums-trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 720px) { .albums-trio { grid-template-columns: repeat(3, 1fr); } }
.album-tile {
  background: var(--bg-alt);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  border-radius: 4px;
}
.album-tile__name {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.album-tile__meta {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.album-tile__price {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: auto;
  color: var(--ink);
}

.micro-card {
  background: var(--bg-alt);
  padding: clamp(40px, 5vw, 72px);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
}
@media (min-width: 720px) { .micro-card { grid-template-columns: 3fr 2fr; } }
.micro-card__amt {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
}
@media (max-width: 720px) { .micro-card__amt { text-align: left; } }

.booking-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 5vw, 72px);
  margin-top: clamp(40px, 5vw, 72px);
}
@media (min-width: 720px) { .booking-notes { grid-template-columns: 1fr 1fr; } }
.booking-notes p { font-size: var(--fs-body); line-height: 1.6; max-width: 56ch; }

/* ─── Venues page ─── */
.venues-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 960px) { .venues-index { grid-template-columns: repeat(3, 1fr); } }
.venue-index-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  transition: transform .35s ease;
}
.venue-index-card:hover { transform: translateY(-2px); }
.venue-index-card__meta {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  color: var(--on-deep);
  display: flex; flex-direction: column; gap: 4px;
}
.venue-index-card__name {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.venue-index-card__loc {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--on-deep) 70%, transparent);
}

.venue-block {
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  border-top: 1px solid var(--rule);
}
.venue-block__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.venue-block__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: baseline;
  margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 720px) {
  .venue-block__head { grid-template-columns: auto 1fr auto; gap: 24px; }
}
.venue-block__num {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.venue-block__title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--ink);
}
.venue-block__loc {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 720px) { .venue-block__loc { text-align: left; } }

.venue-block__hero { aspect-ratio: 16 / 9; margin-bottom: clamp(32px, 4vw, 56px); }

.venue-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (min-width: 880px) {
  .venue-block__body { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
}
.venue-block__heading {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.venue-block__body p { font-size: var(--fs-body); line-height: 1.6; }
.venue-block__body p + p { margin-top: 1em; }

.venue-block__lens {
  background: var(--bg-alt);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 4px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.venue-block__lens-lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-h4);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 36ch;
  color: var(--ink);
}
.venue-block__lens p { font-size: var(--fs-body); line-height: 1.6; max-width: 64ch; }
.venue-block__lens p + p { margin-top: 1em; }

.venue-block__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .venue-block__facts { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .venue-block__facts { grid-template-columns: repeat(4, 1fr); }
}
.venue-fact {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .venue-fact { padding: 18px 20px 18px 0; }
  .venue-fact + .venue-fact { padding-left: 20px; }
}
.venue-fact__label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.venue-fact__val {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.venue-fact__val--muted { color: var(--muted); font-style: italic; font-weight: 400; }

.venues-disclaimer {
  padding: 40px var(--gutter);
  border-top: 1px solid var(--rule);
  text-align: center;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Albums page ─── */
.album-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .album-card { grid-template-columns: 5fr 7fr; gap: clamp(48px, 6vw, 96px); }
}
.album-card:last-of-type { border-bottom: 0; }
.album-card__media { aspect-ratio: 2 / 3; height: auto; }

/* ─── Album image set (1 large + 3 thumbs) ─── */
.album-img-set { display: flex; flex-direction: column; gap: 8px; }
.album-img-set__main { aspect-ratio: 3 / 2; height: auto; width: 100%; }
.album-img-set__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.album-img-set__thumbs > * { aspect-ratio: 2 / 3; height: auto; }
@media (min-width: 880px) {
  .album-card--flip > .album-card__media-wrap { order: 2; }
  .album-card--flip > div:not(.album-card__media-wrap) { order: 1; }
}
.album-card__price {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.album-card__title {
  font-family: var(--serif);
  font-size: var(--fs-title);
  line-height: 1;
  letter-spacing: -0.018em;
  font-weight: 400;
  margin-bottom: 18px;
}
.album-card__title em { font-style: italic; }
.album-card__strap {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.album-card p { font-size: var(--fs-body); line-height: 1.55; max-width: 56ch; }
.album-card__parents {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.album-card__parents strong { color: var(--ink); font-weight: 500; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 72px);
}
@media (min-width: 720px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(20px, 2vw, 32px);
  }
}
.process-step {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}
.process-step__num {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 14px;
}
.process-step__title {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.process-step p { font-size: var(--fs-small); line-height: 1.55; color: var(--ink-soft); }

.video-embed {
  aspect-ratio: 16 / 9;
  margin: clamp(40px, 5vw, 72px) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-deep);
}
.video-embed::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 14px,
    color-mix(in srgb, var(--on-deep) 6%, transparent) 14px 15px);
}
.video-embed__play {
  position: relative;
  width: clamp(72px, 8vw, 96px); height: clamp(72px, 8vw, 96px);
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--on-deep) 60%, transparent);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.video-embed:hover .video-embed__play { background: var(--accent); border-color: var(--accent); }
.video-embed__play::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 18px solid currentColor;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-embed__label {
  position: absolute; left: 0; right: 0; bottom: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--on-deep) 65%, transparent);
}

/* ─── FAQ page ─── */
.faq-section { padding: clamp(56px, 7vw, 96px) var(--gutter); border-top: 1px solid var(--rule); }
.faq-section__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 880px) {
  .faq-section__inner { grid-template-columns: 2fr 5fr; gap: clamp(48px, 6vw, 96px); }
}
.faq-section__heading {
  position: sticky;
  top: 96px;
  align-self: start;
}
.faq-section__num {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.faq-section__title {
  font-family: var(--serif);
  font-size: var(--fs-title);
  line-height: 1.05;
  letter-spacing: -0.018em;
  font-weight: 400;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 0.5;
  color: var(--accent);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  margin-top: 16px;
  font-size: var(--fs-body);
  line-height: 1.65;
  max-width: 72ch;
  color: var(--ink-soft);
}
.faq-item__body p + p { margin-top: 1em; }

/* ─── Contact page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 7fr 5fr; gap: clamp(48px, 6vw, 96px); }
}
.contact-card {
  background: var(--bg-deep);
  color: var(--on-deep);
  padding: clamp(32px, 3.5vw, 48px);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 28px;
}
.contact-card__row { display: flex; flex-direction: column; gap: 6px; }
.contact-card__label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card__val {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--on-deep);
}
.contact-card__val--sm { font-size: var(--fs-body); line-height: 1.4; font-family: var(--sans); font-weight: 500; }

.form-card {
  background: #fff;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field__label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field__label .req { color: var(--accent); margin-left: 4px; }
.form-field__input {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: var(--fs-body);
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .2s;
}
.form-field__input:focus { outline: none; border-color: var(--ink); }
.form-field__input::placeholder { color: var(--muted); }
textarea.form-field__input { resize: vertical; min-height: 120px; font-family: var(--sans); }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-submit { margin-top: 12px; align-self: flex-start; }
.form-recaptcha {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.form-recaptcha::before {
  content: "";
  width: 14px; height: 14px;
  border: 1px solid var(--rule);
  background: var(--bg);
  border-radius: 2px;
}

/* ─── Portfolio masonry ─── */
.masonry {
  column-count: 1;
  column-gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 600px) { .masonry { column-count: 2; column-gap: 16px; } }
@media (min-width: 960px) { .masonry { column-count: 3; column-gap: 20px; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  display: block;
}
@media (min-width: 600px) { .masonry-item { margin-bottom: 16px; } }
@media (min-width: 960px) { .masonry-item { margin-bottom: 20px; } }

/* ─── 404 ─── */
.error-page {
  min-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(64px, 10vw, 144px) var(--gutter);
  gap: 32px;
}
.error-page__big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(96px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.error-page__big em { font-style: italic; }
.error-page__msg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-title);
  line-height: 1.08;
  max-width: 22ch;
  text-wrap: balance;
}
.error-page__msg em { font-style: italic; }
.error-page__sub {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  text-wrap: pretty;
}
.error-page__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }

/* ─── Prose article (Privacy / Blog post) ─── */
.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--gutter) clamp(72px, 9vw, 128px);
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 56px 0 18px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: 1.2;
  font-weight: 500;
  margin: 32px 0 10px;
}
.prose p {
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--ink-soft);
}
.prose ul {
  padding-left: 20px;
  margin: 0 0 1em;
}
.prose li {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.4em;
}
.prose a { border-bottom: 1px solid var(--ink); color: var(--ink); }
.prose__meta {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

/* ─── Engagement page — reasons grid ─── */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .reasons { grid-template-columns: 1fr 1fr; }
}
.reason {
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  align-items: start;
}
@media (min-width: 720px) {
  .reason { padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px); }
  .reason:nth-child(odd) { border-right: 1px solid var(--rule); padding-left: 0; }
  .reason:nth-child(even) { padding-right: 0; }
}
.reason__num {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  line-height: 0.95;
  color: var(--accent);
  font-weight: 400;
}
.reason__num em { font-style: italic; }
.reason__title {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.reason p { font-size: var(--fs-body); line-height: 1.6; max-width: 50ch; }

/* ── Image slots (drag-to-place) ────────────────────────────────────────── */
[data-slot] { position: relative; overflow: hidden; width: 100%; }
[data-slot]:not([data-placed]) { cursor: copy; }
[data-slot] > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
[data-slot]:not([data-placed])::after {
  content: "Drag a photo here";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: var(--fs-label);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(108, 122, 147, 0.8);
  pointer-events: none; z-index: 3; white-space: nowrap;
}

/* Active drag-over state */
[data-slot].drop--active {
  outline: 2px dashed var(--accent);
  outline-offset: -3px;
}
[data-slot].drop--active::after {
  content: "Drop it!";
  color: var(--accent);
  font-size: var(--fs-micro);
}
[data-slot].drop--active .ph__label { opacity: 0; }

.drop-x {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(17, 34, 80, 0.8); color: #F5F0E9;
  font-size: var(--fs-small); display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; opacity: 0; transition: opacity .2s; z-index: 5;
}
[data-slot]:hover .drop-x { opacity: 1; }
.drop-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--mono); font-size: var(--fs-label);
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(17, 34, 80, 0.75); color: #F5F0E9;
  padding: 6px 10px; opacity: 0; transition: opacity .2s;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  z-index: 5;
}
[data-slot]:hover .drop-name { opacity: 1; }

/* ── Mobile grid improvements ───────────────────────────────────────────── */

/* Trio: 2-col layout on mobile — first image full-width landscape, next two side by side */
@media (max-width: 719px) {
  .trio {
    grid-template-columns: 1fr 1fr;
  }
  .trio > *:nth-child(1) { grid-column: span 2; aspect-ratio: 3 / 2; }
  .trio > *:nth-child(2),
  .trio > *:nth-child(3) { aspect-ratio: 1 / 1; }
}

/* Venues grid: 2-col on mobile — first venue full-width, rest in pairs */
@media (max-width: 719px) {
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid > *:nth-child(1) { grid-column: span 2; aspect-ratio: 3 / 2; }
  .venues-grid > *:nth-child(n+2) { aspect-ratio: 1 / 1; }
}

/* Credibility bar: 2-col on mobile instead of single stack */
@media (max-width: 719px) {
  .credibility__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .credibility__item { padding: 12px 0; border-left: 0 !important; border-top: 1px solid color-mix(in srgb, var(--on-deep) 18%, transparent); }
}

/* ═══════════════════════════════════════════════════════════════════════
   EDITOR BLOCK LIBRARY — image layout blocks managed by editor/
   These class names are referenced by editor/blocks.json. Do not rename.
   ═══════════════════════════════════════════════════════════════════════ */

/* Static media frame — the baked replacement for runtime drag-drop slots */
.media-frame { position: relative; overflow: hidden; width: 100%; height: 100%; }
.media-frame > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.media-frame:empty { background: var(--bg-alt); }

/* Layout blocks (shared site-wide; Portfolio.html keeps its own identical copy) */
.pb            { margin-bottom: 10px; }
.pb:last-child { margin-bottom: 0; }
.pb-full       { width: 100%; }

.pb-pair  { display: grid; gap: 10px; align-items: stretch; }
.pb-pair--half    { grid-template-columns: 1fr 1fr; }
.pb-pair--one-two { grid-template-columns: 1fr 2fr; }
.pb-pair--two-one { grid-template-columns: 2fr 1fr; }

.pb-thirds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: start; }

.pb-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.pb-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
.pb-feature__stack { display: grid; gap: 10px; grid-template-rows: 1fr 1fr; }

/* Image helpers — replace inline style hacks */
.eb-img  { width: 100%; display: block; object-fit: cover; }
.eb-32   { aspect-ratio: 3 / 2; }
.eb-23   { aspect-ratio: 2 / 3; }
.eb-169  { aspect-ratio: 16 / 9; }
.eb-fill { width: 100%; height: 100%; display: block; object-fit: cover; }

@media (max-width: 767px) {
  .pb-pair--one-two, .pb-pair--two-one, .pb-feature { grid-template-columns: 1fr; }
  .pb-feature__stack { grid-template-rows: none; }
}
@media (max-width: 599px) {
  .pb-pair--half, .pb-quad { grid-template-columns: 1fr; }
  .pb-thirds { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 399px) {
  .pb-thirds { grid-template-columns: 1fr; }
}

/* ── Nav refinements ─────────────────────────────────────────────────── */
.nav__wordmark { justify-self: center; }
.nav__links a.nav__cta { padding: 9px 18px; letter-spacing: 0.08em; }
@media (max-width: 1100px) { .nav__wordmark { justify-self: start; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Photo hero — full-bleed image with shaded text panel ────────────── */
.photo-hero { position: relative; min-height: 68vh; display: flex; overflow: hidden; }
.photo-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.photo-hero--right::after { background: linear-gradient(90deg, rgba(17,34,80,.98) 0%, rgba(17,34,80,0) 35%, rgba(17,34,80,0) 50%, rgba(17,34,80,.85) 88%, rgba(17,34,80,.85) 100%); }
.photo-hero--left::after  { background: linear-gradient(270deg, rgba(17,34,80,0) 30%, rgba(17,34,80,.75) 58%, rgba(17,34,80,.97) 100%); }
.photo-hero__inner {
  position: relative; z-index: 1; align-self: center;
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  display: flex;
}
.photo-hero--right .photo-hero__panel { margin-left: auto; max-width: 34ch; }
.photo-hero--left  .photo-hero__panel { margin-right: auto; }
.photo-hero__panel { max-width: 42ch; color: #fff; }
.photo-hero__eyebrow {
  font-family: var(--mono); font-size: var(--fs-label);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
  display: flex; align-items: center; gap: 16px;
}
.photo-hero__eyebrow::after { content: ""; height: 1px; background: rgba(245,240,233,.3); flex: 1; max-width: 160px; }
.photo-hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--fs-title);
  line-height: 1.08; letter-spacing: -0.015em;
  color: #fff;
}
.photo-hero__title em { font-style: italic; }
.photo-hero__sub { margin-top: 18px; font-size: var(--fs-lead); line-height: 1.45; color: #fff; max-width: 44ch; }
@media (max-width: 767px) {
  .photo-hero { min-height: 74vh; }
  .photo-hero--right::after, .photo-hero--left::after {
    background: linear-gradient(180deg, rgba(17,34,80,0) 22%, rgba(17,34,80,.78) 55%, rgba(17,34,80,.97) 100%);
  }
  .photo-hero__inner { align-self: flex-end; }
  .photo-hero__panel { max-width: none; }
}

/* ── Portfolio split hero — cream/navy, two o'clock slash ────────────── */
.port-hero { position: relative; height: 78vh; overflow: hidden; }
.port-hero__half { position: absolute; inset: 0; }
.port-hero__half--doc {
  background:
    linear-gradient(rgba(245,240,233,.70), rgba(245,240,233,.77)),
    url("images/candid/groom-seeing-bride-in-pennyburn-chapel.jpg") 80% 30% / cover no-repeat;
}
.port-hero__half--dir {
  clip-path: polygon(calc(50% + 67.5vh) 0, 100% 0, 100% 100%, calc(50% - 67.5vh) 100%);
  background:
    linear-gradient(rgba(17,34,80,.75), rgba(17,34,80,.79)),
    url("images/directed/old-court-sunset-strangford-wedding-venue-2-w1600.webp") 10% 40% / cover no-repeat;
}
.port-hero__words { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.port-hero__word {
  position: absolute;
  font-family: var(--serif); font-weight: 400; line-height: .92;
  letter-spacing: -0.02em; white-space: nowrap;
  font-size: clamp(44px, 6.8vw, 96px);
  text-decoration: none;
  pointer-events: auto; transition: opacity .2s;
}
.port-hero__word:hover { opacity: .75; }
.port-hero__word--doc { right: 51.5%; top: 39%; transform: translateY(-50%); text-align: right; color: var(--ink); }
.port-hero__word--dir { left: 51.5%; top: 58.5%; transform: translateY(-50%); color: var(--on-deep); }
.port-hero__amp {
  position: absolute; left: 50%; top: 49.5%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; color: #E8C572;
  font-size: clamp(48px, 5.6vw, 84px); line-height: 1;
}
.port-hero__kicker {
  display: block; font-family: var(--mono); font-size: var(--fs-label);
  letter-spacing: .24em; text-transform: uppercase; line-height: 1.4;
  margin-bottom: 10px; color: var(--muted);
}
.port-hero__kicker--below { margin: 12px 0 0; }
.port-hero__kicker--dir { color: var(--on-deep-muted); }
.port-hero__lead {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 32px); font-weight: 400;
  letter-spacing: -0.01em; text-transform: none;
  color: var(--ink-soft); margin-bottom: 10px;
}
.port-hero__note {
  text-align: center; max-width: 75ch;
  margin: 0 auto; padding: 28px var(--gutter) 4px;
  color: var(--ink-soft); font-size: var(--fs-lead); line-height: 1.5;
}
@media (max-width: 819px) {
  .port-hero { height: auto; }
  .port-hero__half { position: static; min-height: 38vh; }
  .port-hero__half--dir { clip-path: none; }
  .port-hero__word--doc { right: auto; left: 50%; top: 19%; transform: translate(-50%, -50%); text-align: center; }
  .port-hero__word--dir { left: 50%; top: 69%; transform: translate(-50%, -50%); text-align: center; }
  .port-hero__amp { top: 50%; }
}

.nav__links a.nav__cta::after { display: none; }

/* Wide image inside a narrow prose column */
.prose-breakout {
  width: min(1080px, calc(100vw - 2 * var(--gutter)));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.eml { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE IMAGE GROUPS — show photos at their natural ratio (no awkward crop)
   On phones, stack the multi-image rows into one column and let each photo
   display in full instead of being cropped to a fixed portrait/square box.
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Stack image groups into a single column */
  .trio,
  .venues-grid { grid-template-columns: 1fr !important; gap: 12px; }

  /* Drop forced aspect-ratios, stagger offsets, column-spans and fixed
     heights (the span reset stops child 1 spilling into an implicit column
     and squashing another image out of view). */
  .trio > *,
  .venues-grid > * { aspect-ratio: auto !important; transform: none !important; grid-column: auto !important; }
  /* ph--ratio only drops its forced ratio — keep its transform, which
     prose-breakout images rely on (translateX(-50%)) to stay centred. */
  .ph--ratio { aspect-ratio: auto !important; }
  .photo-break__inner { height: auto !important; }

  /* Let the framed image flow at its natural size (whole image, no crop) */
  .trio .media-frame,
  .venues-grid .media-frame,
  .photo-break .media-frame,
  .media-frame.ph--ratio { height: auto !important; }
  .trio .media-frame > img,
  .venues-grid .media-frame > img,
  .photo-break .media-frame > img,
  .media-frame.ph--ratio > img {
    position: static !important;
    height: auto !important;
  }
}
