/* ==========================================================================
   The Chuppah Company — design system
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Typography
   4.  Layout primitives
   5.  Buttons & links
   6.  Header / navigation
   7.  Footer
   8.  Components
   9.  Page blocks
   10. Forms
   11. Motion
   12. Responsive
   ========================================================================== */

/* ── 1. TOKENS ────────────────────────────────────────────────────────── */
:root {
  /* ink */
  --ink:        #14130F;
  --ink-2:      #23211B;
  --ink-3:      #3B372E;
  --stone:      #6A6458;   /* body copy */
  --mist:       #948C7C;   /* secondary copy */

  /* paper */
  --paper:      #FBF9F4;
  --paper-2:    #F4F0E7;
  --paper-3:    #EDE7DA;
  --white:      #FFFDF9;

  /* brass */
  --brass:      #A8874E;
  --brass-lt:   #C6A570;
  --brass-pale: #E7D9BC;
  --brass-wash: #F5EEE0;

  /* lines */
  --line:       #E3DCCC;
  --line-soft:  #EFE9DC;
  --line-dark:  rgba(255,255,255,.10);

  /* type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* fluid scale */
  --t-display: clamp(2.6rem, 1.6rem + 4.2vw, 5.6rem);
  --t-h1:      clamp(2.2rem, 1.5rem + 3.0vw, 4.0rem);
  --t-h2:      clamp(1.85rem, 1.4rem + 1.9vw, 2.9rem);
  --t-h3:      clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  --t-h4:      clamp(1.1rem, 1.03rem + 0.35vw, 1.3rem);
  --t-body:    clamp(0.985rem, 0.95rem + 0.16vw, 1.06rem);
  --t-sm:      0.875rem;
  --t-xs:      0.78rem;
  --t-eyebrow: 0.68rem;

  /* rhythm */
  --gut:       clamp(1.5rem, 0.9rem + 2.6vw, 4.5rem);   /* page side padding */
  --sect:      clamp(4.5rem, 3rem + 5.2vw, 8.5rem);     /* section vertical  */
  --max:       1360px;
  --max-text:  70ch;

  --hdr: 74px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-sm: 0 2px 14px rgba(20,19,15,.05);
  --shadow-md: 0 18px 44px -18px rgba(20,19,15,.20);
  --shadow-lg: 0 34px 80px -30px rgba(20,19,15,.30);
}

/* ── 2. RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr) + 20px);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-body);
  line-height: 1.75;
  color: var(--stone);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

[hidden] { display: none !important; }

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--paper-3); }

::selection { background: var(--brass-pale); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -70px; z-index: 999;
  background: var(--ink); color: var(--white);
  padding: 12px 22px; text-decoration: none;
  font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

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

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); line-height: 1.06; }
h2 { font-size: var(--t-h2); line-height: 1.12; }
h3 { font-size: var(--t-h3); line-height: 1.22; font-weight: 400; }
h4 { font-size: var(--t-h4); line-height: 1.3;  font-weight: 400; }

em, .em { font-style: italic; }
h1 em, h2 em, h3 em { color: var(--brass); }

p { text-wrap: pretty; }
p + p { margin-top: 1.05em; }

a { color: inherit; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.15rem;
}
.eyebrow--light { color: var(--brass-lt); }

.display { font-size: var(--t-display); line-height: 1.0; }

.lede {
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.24rem);
  line-height: 1.72;
  color: var(--ink-3);
  font-weight: 300;
  max-width: 58ch;
}

.muted { color: var(--mist); }

.rule {
  width: 46px; height: 1px; background: var(--brass);
  margin: 1.6rem 0; border: 0;
}
.rule--center { margin-inline: auto; }

/* rich text block (guides, posts, legal) */
.prose { max-width: var(--max-text); }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { margin-top: 2.9rem; font-size: clamp(1.55rem, 1.3rem + 1vw, 2.1rem); }
.prose h3 { margin-top: 2.1rem; }
.prose h2 + p, .prose h3 + p { margin-top: .9rem; }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose li + li { margin-top: .5rem; }
.prose li::marker { color: var(--brass); }
.prose a {
  color: var(--ink); text-decoration: underline;
  text-decoration-color: var(--brass-pale);
  text-underline-offset: 4px; text-decoration-thickness: 1px;
  transition: text-decoration-color .25s;
}
.prose a:hover { text-decoration-color: var(--brass); }
.prose strong { font-weight: 500; color: var(--ink-2); }
.prose blockquote {
  border-left: 2px solid var(--brass);
  padding: .25rem 0 .25rem 1.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; line-height: 1.6; color: var(--ink-3);
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.6rem 0; }

/* answer-first callout — the block AI engines lift verbatim */
.answer {
  background: var(--brass-wash);
  border-left: 2px solid var(--brass);
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem) clamp(1.3rem, 1rem + 1.4vw, 2.2rem);
  margin-top: 1.6rem;
}
.answer p { color: var(--ink-3); font-size: 1.03rem; }
.answer > :first-child { margin-top: 0; }

/* ── 4. LAYOUT ────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 940px; }
.wrap--flush  { padding-inline: 0; }

.section { padding-block: var(--sect); }
.section--tight { padding-block: calc(var(--sect) * .62); }
.section--paper2 { background: var(--paper-2); }
.section--white  { background: var(--white); }

.section--ink {
  background: var(--ink); color: rgba(255,255,255,.62);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }
.section--ink h1 em, .section--ink h2 em, .section--ink h3 em { color: var(--brass-lt); }
.section--ink .lede { color: rgba(255,255,255,.66); }
.section--ink .eyebrow { color: var(--brass-lt); }

.grid { display: grid; gap: clamp(1.4rem, 1rem + 1.6vw, 2.6rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 5.5rem);
  align-items: center;
}
.split--wide-left  { grid-template-columns: 1.15fr 1fr; }
.split--top { align-items: start; }
.split > aside { align-self: start; }
.split--wide-right { grid-template-columns: 1fr 1.15fr; }

.stack-sm > * + * { margin-top: .6rem; }
.stack    > * + * { margin-top: 1.2rem; }
.stack-lg > * + * { margin-top: 2.2rem; }

.section-head { max-width: 660px; margin-bottom: clamp(2.4rem, 1.6rem + 2.4vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.2rem, 1.6rem + 2vw, 3.6rem);
}
.head-row > div { max-width: 620px; }

/* ── 5. BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--sans); font-weight: 400; font-size: var(--t-xs);
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: 1.05rem 2.4rem; border: 1px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn--ink    { background: var(--ink);   color: var(--white); }
.btn--ink:hover { background: var(--brass); }

.btn--brass  { background: var(--brass); color: var(--white); }
.btn--brass:hover { background: var(--ink); }

.btn--ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }

.btn--light  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.btn--light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--sm { padding: .78rem 1.7rem; font-size: .72rem; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--t-xs); font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  transition: color .28s, gap .28s;
}
.tlink::after { content: '→'; transition: transform .28s var(--ease); }
.tlink:hover { color: var(--brass); gap: .95rem; }
.tlink--light { color: rgba(255,255,255,.72); }
.tlink--light:hover { color: var(--brass-lt); }

/* ── 6. HEADER ────────────────────────────────────────────────────────── */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--hdr);
  display: flex; align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease), height .3s var(--ease);
}
.hdr__inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.hdr__logo {
  font-family: var(--serif); font-weight: 300; font-size: 1.16rem;
  letter-spacing: .19em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); white-space: nowrap; transition: color .4s;
  line-height: 1;
}
.hdr__logo b { font-weight: 300; }

.hdr__nav { display: flex; align-items: center; gap: clamp(1.2rem, .4rem + 1.4vw, 2.3rem); }
.hdr__list { display: flex; align-items: center; gap: clamp(1.2rem, .4rem + 1.4vw, 2.3rem); list-style: none; }
.hdr__list > li { position: relative; }
.hdr__link {
  display: inline-flex; align-items: center; gap: .38rem;
  font-size: var(--t-xs); font-weight: 300; letter-spacing: .17em;
  text-transform: uppercase; text-decoration: none; color: var(--ink-3);
  padding-block: 1.2rem; transition: color .28s; white-space: nowrap;
}
.hdr__link:hover, .hdr__link[aria-current="page"] { color: var(--brass); }
.hdr__link[aria-current="page"] { font-weight: 400; }
.hdr__caret {
  width: 5px; height: 5px; border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor; transform: rotate(45deg) translate(-1px,-1px);
  transition: transform .25s var(--ease);
}
li:hover > .hdr__link .hdr__caret,
li:focus-within > .hdr__link .hdr__caret { transform: rotate(225deg) translate(-2px,-2px); }

/* dropdown */
.drop {
  position: absolute; top: 100%; left: 50%; translate: -50% 0;
  padding-top: .5rem; min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s, visibility .22s;
}
li:hover > .drop, li:focus-within > .drop { opacity: 1; visibility: visible; pointer-events: auto; }
.drop__inner {
  background: var(--white); border: 1px solid var(--line);
  border-top: 2px solid var(--brass);
  box-shadow: var(--shadow-md);
  padding: .55rem 0;
  transform: translateY(-6px); transition: transform .24s var(--ease);
  max-height: 70vh; overflow-y: auto;
}
li:hover > .drop .drop__inner, li:focus-within > .drop .drop__inner { transform: none; }
.drop a {
  display: block; padding: .62rem 1.4rem;
  font-size: var(--t-xs); font-weight: 300; letter-spacing: .1em;
  text-decoration: none; color: var(--stone);
  transition: color .2s, background .2s;
}
.drop a:hover { color: var(--brass); background: var(--paper-2); }
.drop__sep { height: 1px; background: var(--line-soft); margin: .45rem 0; }
.drop__all { color: var(--ink) !important; font-weight: 400 !important; letter-spacing: .16em !important; text-transform: uppercase; }

/* transparent header over a hero */
.hdr--over {
  background: transparent; border-bottom-color: transparent;
}
.hdr--over .hdr__logo { color: var(--white); }
.hdr--over .hdr__link { color: rgba(255,255,255,.84); }
.hdr--over .hdr__link:hover { color: var(--brass-lt); }
.hdr--over .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.hdr--over .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hdr--over .burger span { background: var(--white); }
/* drawer open over a transparent header — go solid so the two agree */
body.is-locked .hdr--over { background: var(--paper); border-bottom-color: var(--line); }
body.is-locked .hdr--over .hdr__logo { color: var(--ink); }
body.is-locked .hdr--over .burger span { background: var(--ink); }

.hdr.is-stuck {
  background: rgba(251,249,244,.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr.is-stuck .hdr__logo { color: var(--ink); }
.hdr.is-stuck .hdr__link { color: var(--ink-3); }
.hdr.is-stuck .hdr__link:hover, .hdr.is-stuck .hdr__link[aria-current="page"] { color: var(--brass); }
.hdr.is-stuck .btn--ghost { color: var(--ink); border-color: var(--line); }
.hdr.is-stuck .burger span { background: var(--ink); }

/* burger */
.burger {
  display: none; width: 40px; height: 40px; background: none; border: 0;
  cursor: pointer; position: relative; margin-right: -8px;
}
.burger span {
  position: absolute; left: 9px; width: 22px; height: 1px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: var(--hdr) 0 0 0; z-index: 480;
  background: var(--paper);
  padding: 2rem var(--gut) 3rem;
  overflow-y: auto;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer ul { list-style: none; }
.drawer > ul > li { border-bottom: 1px solid var(--line-soft); }
.drawer a {
  display: block; padding: 1.05rem 0; text-decoration: none; color: var(--ink);
  font-family: var(--serif); font-size: 1.35rem; font-weight: 300;
}
.drawer .drawer__sub a {
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 300;
  color: var(--stone); padding: .48rem 0 .48rem 1rem;
  border-left: 1px solid var(--line);
}
.drawer__sub { padding: .2rem 0 1.1rem; }
.drawer__foot { margin-top: 2.2rem; display: grid; gap: 1rem; }
.drawer__tel {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
  text-decoration: none; display: block;
}

main { padding-top: var(--hdr); }
main.is-flush { padding-top: 0; }

/* ── 7. FOOTER ────────────────────────────────────────────────────────── */
.ftr { background: var(--ink); color: rgba(255,255,255,.5); }
.ftr a { color: inherit; text-decoration: none; }
.ftr__top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  padding-block: clamp(3.4rem, 2.4rem + 3vw, 5.4rem) clamp(2.6rem, 2rem + 2vw, 3.6rem);
  border-bottom: 1px solid var(--line-dark);
}
.ftr__brand {
  font-family: var(--serif); font-weight: 300; font-size: 1.35rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white);
  display: block; margin-bottom: 1.1rem; line-height: 1.2;
}
.ftr__desc { font-size: var(--t-sm); line-height: 1.85; max-width: 34ch; color: rgba(255,255,255,.42); }
.ftr__title {
  font-size: var(--t-eyebrow); font-weight: 400; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass-lt); margin-bottom: 1.35rem;
}
.ftr__links { list-style: none; }
.ftr__links li + li { margin-top: .68rem; }
.ftr__links a { font-size: var(--t-sm); font-weight: 200; transition: color .25s; }
.ftr__links a:hover { color: var(--brass-lt); }
.ftr__contact { font-size: var(--t-sm); font-weight: 200; line-height: 2; font-style: normal; }
.ftr__contact a { color: var(--brass-lt); }
.ftr__contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ftr__bot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
  padding-block: 1.6rem 2.2rem;
  font-size: var(--t-xs); font-weight: 200; color: rgba(255,255,255,.3);
}
.ftr__bot nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ftr__bot a:hover { color: var(--brass-lt); }

/* ── 8. COMPONENTS ────────────────────────────────────────────────────── */

/* breadcrumb */
.crumbs {
  font-size: var(--t-xs); letter-spacing: .06em; color: var(--mist);
  padding-block: 1.5rem 0;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.crumbs a { text-decoration: none; color: var(--mist); transition: color .25s; }
.crumbs a:hover { color: var(--brass); }
.crumbs li + li::before { content: '/'; margin-right: .5rem; color: var(--line); }
.crumbs [aria-current="page"] { color: var(--ink-3); }
.crumbs--light { color: rgba(255,255,255,.4); }
.crumbs--light a { color: rgba(255,255,255,.5); }
.crumbs--light a:hover { color: var(--brass-lt); }
.crumbs--light [aria-current="page"] { color: rgba(255,255,255,.8); }
.crumbs--light li + li::before { color: rgba(255,255,255,.22); }

/* page banner (interior pages) */
.banner {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding-block: clamp(3rem, 2rem + 3vw, 5rem) clamp(3.2rem, 2.2rem + 3.4vw, 5.4rem);
  position: relative; overflow: hidden;
}
.banner__inner { position: relative; z-index: 1; max-width: 780px; }
.banner h1 { color: var(--white); }
.banner h1 em { color: var(--brass-lt); }
.banner .eyebrow { color: var(--brass-lt); }
.banner__lede { color: rgba(255,255,255,.6); max-width: 60ch; margin-top: 1.4rem; font-size: 1.05rem; line-height: 1.8; }
.banner__ghost {
  position: absolute; right: -2vw; top: 50%; translate: 0 -50%;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(7rem, 15vw, 17rem); line-height: .8;
  color: rgba(255,255,255,.028); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: -.02em;
}

/* figure / media frame */
.frame { position: relative; overflow: hidden; background: var(--paper-3); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.frame--4x3 { aspect-ratio: 4/3; }
.frame--3x4 { aspect-ratio: 3/4; }
.frame--3x2 { aspect-ratio: 3/2; }
.frame--16x10 { aspect-ratio: 16/10; }
.frame--sq  { aspect-ratio: 1/1; }
.frame__edge { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.frame__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.5rem 1.35rem;
  background: linear-gradient(to top, rgba(10,9,7,.82), transparent);
  color: var(--white);
}

/* offset accent block behind an image */
.framed-figure { position: relative; }
.framed-figure::after {
  content: ''; position: absolute; right: -18px; bottom: -18px;
  width: clamp(80px, 16%, 140px); aspect-ratio: 1; background: var(--brass-pale); z-index: -1;
}

/* card */
.card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line-soft);
  text-decoration: none; color: inherit;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .3s;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card:hover .frame img { transform: scale(1.045); }
.card__body { padding: clamp(1.25rem, 1rem + .6vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.card__tag {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .55rem; font-weight: 400;
}
.card__title { font-family: var(--serif); font-size: 1.42rem; font-weight: 400; color: var(--ink); line-height: 1.18; }
.card__text { font-size: var(--t-sm); color: var(--mist); line-height: 1.68; margin-top: .6rem; flex: 1; }
.card__cta {
  margin-top: 1.3rem; display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  transition: gap .28s, color .28s;
}
.card__cta::after { content: '→'; }
.card:hover .card__cta { color: var(--brass); gap: .95rem; }
.card__badge {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--brass); color: var(--white);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .42rem .85rem; font-weight: 400;
}

/* tile — image-led, text over gradient */
.tile {
  position: relative; display: block; overflow: hidden; aspect-ratio: 3/4;
  text-decoration: none; color: var(--white); background: var(--ink-2);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; filter: brightness(.78) saturate(.9); }
.tile:hover img { transform: scale(1.06); filter: brightness(.9) saturate(1); }
.tile__body { position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.6rem 1.5rem; background: linear-gradient(to top, rgba(10,9,7,.85) 10%, transparent); }
.tile__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; line-height: 1.2; }
.tile__tag { display: block; margin-top: .3rem; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt); }

/* pill / feature chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--stone);
  padding: .48rem .9rem; background: var(--white);
}
.chip--dark { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.55); background: transparent; }
.chip--link { text-decoration: none; transition: color .25s, border-color .25s; }
.chip--link:hover { color: var(--brass); border-color: var(--brass-pale); }

/* spec list */
.specs { list-style: none; border-top: 1px solid var(--line); }
.specs li {
  display: grid; grid-template-columns: 40% 1fr; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line-soft);
  font-size: var(--t-sm);
}
.specs dt, .specs .k { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); }
.specs .v { color: var(--ink-3); }

/* stats */
/* auto-fit rather than a fixed column count, so the band stays balanced
   whatever number of stats the template renders */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: clamp(1rem,.6rem + 1.4vw,2rem); row-gap: 1.8rem; }
.stat { border-left: 1px solid var(--brass-pale); padding-left: 1.15rem; }
.stat__n { font-family: var(--serif); font-size: clamp(2rem,1.6rem + 1.4vw,2.8rem); font-weight: 300; color: var(--ink); line-height: 1; }
.stat__l { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); margin-top: .45rem; }
.section--ink .stat { border-left-color: rgba(255,255,255,.16); }
.section--ink .stat__n { color: var(--white); }
.section--ink .stat__l { color: rgba(255,255,255,.4); }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.6rem;
  padding: 1.35rem 0; color: var(--ink);
  font-family: var(--serif); font-size: clamp(1.05rem,1rem + .35vw,1.28rem); font-weight: 400;
  line-height: 1.35; transition: color .25s;
}
.acc__q:hover { color: var(--brass); }
.acc__icon { flex-shrink: 0; width: 17px; height: 17px; margin-top: .35rem; color: var(--brass); transition: transform .35s var(--ease); }
.acc__item.is-open .acc__icon { transform: rotate(45deg); }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding-bottom: 1.4rem; font-size: var(--t-sm); line-height: 1.85; max-width: 68ch; }
.acc__a p + p { padding-bottom: 1.4rem; margin-top: -.4rem; }
.section--ink .acc, .section--ink .acc__item { border-color: var(--line-dark); }
.section--ink .acc__q { color: var(--white); }
.section--ink .acc__a p { color: rgba(255,255,255,.55); }

/* testimonial */
.quote { background: var(--white); border: 1px solid var(--line-soft); padding: clamp(1.8rem,1.4rem + 1.4vw,2.8rem); display: flex; flex-direction: column; }
.quote__mark { font-family: var(--serif); font-size: 3.4rem; line-height: .55; color: var(--brass); opacity: .55; margin-bottom: 1.4rem; }
.quote__text { font-family: var(--serif); font-style: italic; font-size: clamp(1.08rem,1rem + .4vw,1.24rem); line-height: 1.62; color: var(--ink-3); flex: 1; }
.quote__by { margin-top: 1.6rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.quote__where { display: block; margin-top: .28rem; font-size: .72rem; color: var(--mist); letter-spacing: .04em; text-transform: none; }
.section--ink .quote { background: rgba(255,255,255,.035); border-color: var(--line-dark); }
.section--ink .quote__text { color: rgba(255,255,255,.8); }
.section--ink .quote__by { color: var(--brass-lt); }
.section--ink .quote__where { color: rgba(255,255,255,.35); }

/* marquee */
.marquee { background: var(--brass); padding-block: 1.15rem; overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee__item {
  font-family: var(--serif); font-style: italic; font-size: 1.16rem; font-weight: 300;
  color: rgba(255,255,255,.95); padding-inline: 1.5rem;
  display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee__item::after { content: '◆'; font-size: .48rem; color: rgba(255,255,255,.55); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* CTA band */
.band {
  background: var(--ink); color: rgba(255,255,255,.55);
  padding-block: clamp(4rem, 2.9rem + 3.6vw, 6rem) clamp(3.2rem, 2.4rem + 3vw, 5rem);
}
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2.4rem; flex-wrap: wrap; }
.band h2 { color: var(--white); font-size: clamp(1.7rem,1.4rem + 1.4vw,2.5rem); }
.band h2 em { color: var(--brass-lt); }
.band p { max-width: 46ch; margin-top: .9rem; font-size: var(--t-sm); line-height: 1.8; }

/* filter bar */
.filters { border-bottom: 1px solid var(--line); background: var(--white); position: sticky; top: var(--hdr); z-index: 60; }
.filters__inner { display: flex; overflow-x: auto; scrollbar-width: none; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.filters__inner::-webkit-scrollbar { display: none; }
.filters button {
  background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer;
  font-family: var(--sans); font-size: .72rem; font-weight: 300; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mist); padding: 1.1rem 1.35rem;
  white-space: nowrap; transition: color .25s, border-color .25s;
}
.filters button:first-child { padding-left: 0; }
.filters button:hover { color: var(--ink); }
.filters button[aria-pressed="true"] { color: var(--brass); border-bottom-color: var(--brass); }

/* related strip */
.related { background: var(--paper-2); }

/* ── 9. PAGE BLOCKS ───────────────────────────────────────────────────── */

/* hero */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  min-height: min(94svh, 860px);   /* svh = viewport with the browser chrome showing */
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; color: var(--white);
  padding: calc(var(--hdr) + 4rem) var(--gut) 6rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,12,9,.78) 0%, rgba(14,12,9,.55) 45%, rgba(14,12,9,.86) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 940px; text-align: center; }
.hero h1 { color: var(--white); font-size: var(--t-display); }
.hero h1 em { color: var(--brass-lt); }
.hero .eyebrow { color: var(--brass-lt); letter-spacing: .3em; }
.hero__sub {
  margin-top: 1.5rem; font-size: clamp(.95rem,.9rem + .25vw,1.08rem);
  letter-spacing: .04em; color: rgba(255,255,255,.76); max-width: 52ch; margin-inline: auto;
}
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; translate: -50% 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.hero__scroll i { display: block; width: 1px; height: 44px; background: rgba(255,255,255,.5); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity:.55 } 50% { transform: scaleY(.4) translateY(13px); opacity:.18 } }
.hero__credit {
  position: absolute; right: var(--gut); bottom: 1.5rem; z-index: 2;
  margin: 0;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.hero__credit a { color: inherit; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22); }
.hero__credit a:hover,
.hero__credit a:focus-visible { color: rgba(255,255,255,.75);
  border-bottom-color: rgba(255,255,255,.5); }

/* style detail hero */
.detail-hero { display: grid; grid-template-columns: .92fr 1fr; min-height: 500px; background: var(--paper); }
.detail-hero__media { position: relative; overflow: hidden; min-height: 420px; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__body { padding: clamp(2.4rem, 2rem + 2.2vw, 4.2rem) clamp(1.7rem, 1rem + 3.4vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.detail-hero__body .prose { max-width: 56ch; }

/* two-up editorial */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,1rem + 4vw,5rem); align-items: start; }

/* location / venue list */
.linklist { list-style: none; border-top: 1px solid var(--line); }
.linklist li { border-bottom: 1px solid var(--line-soft); }
.linklist a, .linklist span {
  display: flex; align-items: center; gap: .9rem; padding: .95rem 0;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: var(--ink);
  text-decoration: none; transition: color .28s, padding-left .28s;
}
.linklist a:hover { color: var(--brass); padding-left: .4rem; }
.linklist a::before, .linklist span::before {
  content: ''; width: 5px; height: 5px; background: var(--brass);
  rotate: 45deg; flex-shrink: 0;
}

/* service grid */
.svc {
  background: var(--white); border: 1px solid var(--line-soft);
  padding: clamp(1.7rem, 1.4rem + .9vw, 2.3rem) clamp(1.5rem, 1.2rem + .8vw, 2rem)
           clamp(1.9rem, 1.5rem + 1vw, 2.5rem);
  display: flex; flex-direction: column; gap: .8rem;
  min-height: 224px; position: relative; overflow: hidden;
}
.svc::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brass); transition: width .45s var(--ease); }
.svc:hover::after { width: 100%; }
.svc h3 { font-size: 1.2rem; line-height: 1.25; }
.svc p { font-size: var(--t-sm); color: var(--stone); line-height: 1.75; }
.svc__ico { width: 26px; height: 26px; color: var(--brass); margin-bottom: .3rem; }

/* journal card */
.post__meta { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }

/* ── 10. FORMS ────────────────────────────────────────────────────────── */
.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field > label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); font-weight: 400;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: .7rem 0; font-family: var(--sans); font-weight: 300; font-size: .98rem;
  color: var(--ink); border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .3s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A8874E' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .25rem center; padding-right: 1.6rem;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #BDB5A5; }
.field--check { flex-direction: row; align-items: flex-start; gap: .7rem; }
.field--check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: .3rem; accent-color: var(--brass); }
.field--check label { font-size: var(--t-xs); letter-spacing: 0; text-transform: none; color: var(--stone); line-height: 1.6; }
.form__note { font-size: var(--t-xs); color: var(--mist); }

/* ── 11. MOTION ───────────────────────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.d1 { transition-delay: .09s } .js .reveal.d2 { transition-delay: .18s }
.js .reveal.d3 { transition-delay: .27s } .js .reveal.d4 { transition-delay: .36s }

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

/* ── 12. RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ftr__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .hdr__nav { display: none; }
  .burger { display: block; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .editorial { grid-template-columns: 1fr; }
  .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero__media { min-height: 300px; max-height: 60vh; }
  .framed-figure::after { display: none; }
  .banner__ghost { display: none; }
}

@media (max-width: 620px) {
  :root {
    --hdr: 64px;
    /* vertical rhythm down by a third — the stacked pages were running long */
    --sect: 3rem;
  }
  .svc { min-height: 0; }

  /* Single column is the default: text-led cards do not survive a ~180px
     column, where the serif wraps to two or three words a line. Grids whose
     cards actually carry an image opt back into two — the designs
     one-per-screen made the collection page around 7000px of scroll.

     Keying off the content rather than a modifier class means a grid added
     later behaves correctly without anyone remembering a rule. If :has() is
     unsupported the whole selector is dropped and everything falls back to
     single column, which is the safe direction. */
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 1.1rem; }

  .grid:has(.frame), .grid:has(.tile) {
    grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem;
  }
  .grid:has(.frame) > *:only-child,
  .grid:has(.tile) > *:only-child { grid-column: 1 / -1; }

  /* In a half-width column a 4:3 frame is too letterboxed for portrait
     photography, so card and tile media go to 4:5 here. */
  .card .frame, .tile { aspect-ratio: 4/5; }
  .card .frame img, .tile img { object-fit: cover; }

  /* Only trimmed inside the two-column media grids. In a full-width text card
     the excerpt is the content, not padding. */
  .grid:has(.frame) .card__title, .grid:has(.tile) .card__title { font-size: 1.15rem; }
  .grid:has(.frame) .card__text,  .grid:has(.tile) .card__text  { display: none; }

  .form__row { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }

  .hero { min-height: 100vh; min-height: 100svh; }
  /* Scrolling is the default gesture on a phone and the space below the
     hero content is occupied by the stacked buttons, which the cue was
     overlapping. It earns its place on desktop, not here. */
  .hero__scroll { display: none; }
  /* Stays absolutely positioned. .hero is a row flex container, so a static
     credit becomes a flex item beside .hero__inner rather than dropping below
     it. Full-width and centred gives the intended result without that. */
  .hero__credit {
    left: var(--gut); right: var(--gut); bottom: 1rem;
    text-align: center; color: rgba(255,255,255,.35);
  }

  .btn { width: 100%; }
  .hero__actions .btn, .band .btn { width: auto; }
  .specs li { grid-template-columns: 1fr; gap: .2rem; }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
  .btn { padding-inline: 1.6rem; }
}

@media print {
  .hdr, .drawer, .ftr, .band, .marquee, .hero__scroll { display: none !important; }
  body { background: #fff; color: #000; }
  main { padding-top: 0; }
}
