/* ============================================================
   Charterhouse Deo Dante Dedi Lodge No. 2885
   Visual system — 2026 rebuild
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --ink: #1c2030;
  --ink-2: #232a3d;
  --ink-line: #313a52;
  --parchment: #f5f0e5;
  --paper: #fdfaf3;
  --cerise: #8c2342;
  --cerise-deep: #6f1a34;
  --brass: #a4884a;
  --brass-soft: #c2a868;
  --pink: #f7a7bc;
  --pink-soft: #fbd2dd;
  --stone: #ddd5c1;
  --stone-2: #e8e1d0;
  --text: #2a2922;
  --text-soft: #5b584d;
  --maxw: 1200px;
  --measure: 68ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--cerise);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 35, 66, 0.3);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
a:hover { color: var(--cerise-deep); border-bottom-color: var(--cerise); }
a:focus-visible { outline: 2px solid var(--cerise); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.measure { max-width: var(--measure); }

.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brass);
  margin: 0;
}

.rule-fleuron {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--brass);
  margin: 1.2rem 0 1.8rem;
}
.rule-fleuron::before { content: ""; height: 1px; width: 64px; background: var(--brass); opacity: 0.55; }
.rule-fleuron span { font-size: 0.95rem; line-height: 1; }
.rule-fleuron.center { justify-content: center; }
.rule-fleuron.center::after { content: ""; height: 1px; width: 64px; background: var(--brass); opacity: 0.55; }

/* ---------------- HEADER ---------------- */
.site-header {
  background: var(--ink);
  color: var(--parchment);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ink-line);
  box-shadow: 0 1px 0 rgba(247, 167, 188, 0.25);
}
/* when the mobile menu is open, lift the header (and its fixed nav panel)
   above all page content so it's visible and clickable */
body.nav-open .site-header { z-index: 1000; }
.masthead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.95rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.masthead .brand { display: flex; align-items: center; gap: 0.85rem; border: none; margin-right: auto; }
.masthead .brand:hover { color: inherit; }

.titles { line-height: 1.18; }
.site-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--parchment);
}
.site-no {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--brass-soft);
  margin-top: 0.28rem;
}

.join-btn {
  flex: none;
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink) !important;
  background: var(--pink);
  border: 1px solid var(--pink) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  white-space: nowrap;
}
.join-btn:hover { background: var(--pink-soft); border-color: var(--pink-soft) !important; color: var(--ink) !important; }
.join-btn[aria-current="page"] { background: transparent; color: var(--pink) !important; }

/* burger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex: none;
  width: 44px; height: 44px;
  margin-left: 0.4rem;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--parchment);
  transition: transform .2s ease, opacity .2s ease;
}
/* the duplicate Join link inside the nav list — desktop hidden */
.nav-join { display: none; }

.site-nav { background: var(--ink-2); border-top: 1px solid var(--ink-line); }
.site-nav ul {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.7rem;
}
.site-nav a {
  display: inline-block;
  padding: 0.62rem 0 0.72rem;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 240, 229, 0.78);
  border: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--pink); }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--cerise); }

/* ---------------- CREST (pink SVG) ----------------
   crest.svg is already the correct pink; just size it. */
.crest-badge {
  flex: none;
  width: 54px; height: 54px;
  object-fit: contain;
  display: block;
}
.crest-hero {
  display: block;
  width: clamp(104px, 14vw, 144px);
  height: auto;
  margin: 0 auto 1.4rem;
  object-fit: contain;
}

/* ---------------- VIDEO HERO (home) ---------------- */
.hero {
  position: relative;
  color: var(--parchment);
  text-align: center;
  padding: clamp(3.4rem, 8vw, 6.5rem) var(--gutter) clamp(3.6rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--ink);   /* fallback only; the video covers this */
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;               /* above the fallback background */
  pointer-events: none;
  border: none;
  display: block;
}
.hero-scrim {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;               /* over the video, under the content */
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,24,36,.66) 0%, rgba(20,24,36,.55) 45%, rgba(20,24,36,.78) 100%),
    radial-gradient(120% 90% at 50% 0%, rgba(247,167,188,.10), transparent 60%);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
  opacity: .65;
}
.hero-inner { position: relative; z-index: 4; max-width: 760px; margin: 0 auto; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.hero .lede {
  font-size: clamp(1.1rem, 1.3vw, 1.32rem);
  color: rgba(245,240,229,.86);
  max-width: 54ch;
  margin: 0 auto 0.4rem;
}
.hero .hero-no {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  color: var(--brass-soft);
  margin: 0 0 1.6rem;
}

.meeting-plate {
  margin: 2.2rem auto 0;
  max-width: 560px;
  border: 1px solid var(--ink-line);
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.meeting-plate .eyebrow { color: var(--pink); margin-bottom: 0.5rem; }
.meeting-plate .when {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.1;
}
.meeting-plate .when .nm-tag {
  display: inline-block;
  vertical-align: middle;
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--brass-soft);
  padding: 0.18em 0.6em;
  border-radius: 999px;
  margin-left: 0.5rem;
}
.meeting-plate .where { color: rgba(245,240,229,.8); margin: 0 0 1.2rem; font-size: 1.02rem; }
.nm-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.nm-actions .btn { padding: 0.62rem 1.3rem; font-size: 0.8rem; }

/* calendar dropdown */
.cal-wrap { position: relative; }
.cal-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(20,24,36,.28);
  padding: 0.4rem;
  z-index: 20;
  text-align: left;
}
.cal-menu[hidden] { display: none; }
.cal-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'EB Garamond', serif;
  letter-spacing: 0;
  text-transform: none;
}
.cal-menu a:hover { background: var(--pink-soft); color: var(--ink); }
.nm-schedule {
  margin: 1.3rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-line);
  font-size: 0.92rem;
  color: rgba(245,240,229,.62);
}
.nm-schedule strong { color: rgba(245,240,229,.85); font-weight: 600; }

.hero-actions { margin-top: 2rem; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.78rem 1.7rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-pink { background: var(--pink); color: var(--ink) !important; border-color: var(--pink); }
.btn-pink:hover { background: var(--pink-soft); border-color: var(--pink-soft); color: var(--ink) !important; }
.btn-ghost { background: transparent; color: var(--parchment) !important; border-color: rgba(245,240,229,.4); }
.btn-ghost:hover { border-color: var(--pink); color: #fff !important; }
.btn-brass { background: var(--brass); color: var(--ink) !important; border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-soft); border-color: var(--brass-soft); color: var(--ink) !important; }

/* ---------------- SECTION BANDS ---------------- */
section.band { padding: clamp(2.8rem, 6vw, 4.5rem) 0; }
section.band.paper { background: var(--parchment); }
section.band.alt { background: var(--paper); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
section.band.dark { background: var(--ink); color: var(--parchment); }

.section-head { max-width: var(--measure); margin-bottom: 1.6rem; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  margin: 0.2rem 0 0;
  line-height: 1.12;
}
.band.dark .section-head h2 { color: #fff; }
.band.dark .eyebrow { color: var(--brass-soft); }

/* ---------------- GALLERY ---------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--stone);
  background: var(--paper);
  filter: saturate(.92);
  transition: transform .2s ease, filter .2s ease;
}
.gallery img:hover { transform: translateY(-3px); filter: saturate(1.05); }

/* ---------------- FEATURE CARD ---------------- */
.feature {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.8rem;
  align-items: center;
  background: var(--ink-2);
  color: var(--parchment);
  border: 1px solid var(--ink-line);
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 1.9rem 2.1rem;
}
.feature img { width: 110px; margin: 0 auto; }
.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.feature p { margin: 0.3rem 0; color: rgba(245,240,229,.86); font-size: 1.02rem; }
.feature a { color: var(--pink); border-bottom-color: rgba(247,167,188,.4); }
.feature a:hover { color: var(--pink-soft); border-bottom-color: var(--pink); }

/* ---------------- PROSE / INTERIOR ---------------- */
.page-hero {
  background:
    radial-gradient(120% 120% at 50% -30%, rgba(247,167,188,.06), transparent 55%),
    var(--ink);
  color: var(--parchment);
  padding: clamp(2.4rem, 5vw, 3.6rem) var(--gutter);
  border-bottom: 3px solid var(--brass);
}
.page-hero .inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: #fff;
  margin: 0.5rem 0 0;
  line-height: 1.1;
}

main.page { padding: clamp(2.4rem, 5vw, 3.6rem) 0 clamp(3rem, 6vw, 4.5rem); }

.prose { max-width: var(--measure); }
.prose > p, .prose > ul, .prose > ol { margin: 0 0 1.1rem; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.4rem 0 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--stone);
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--cerise);
  margin: 1.8rem 0 0.4rem;
}
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.35rem 0; }
.prose li::marker { color: var(--brass); }

figure { margin: 1.8rem 0; }
figure img { border-radius: 4px; border: 1px solid var(--stone); padding: 6px; background: var(--paper); }
figcaption { font-size: 0.95rem; color: var(--text-soft); font-style: italic; margin-top: 0.5rem; }

.float-right { float: right; width: min(340px, 42%); margin: 0.3rem 0 1.4rem 2rem; }

.aside-card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--pink);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  margin: 2.2rem 0;
  max-width: var(--measure);
}
.aside-card .eyebrow { display: block; margin-bottom: 0.5rem; color: var(--cerise); }
.aside-card p { margin: 0.4rem 0; }
.aside-card ul { margin: 0.6rem 0 0; padding-left: 1.2rem; font-size: 1rem; }

/* ---------------- MEMBERSHIP ---------------- */
.lead {
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  line-height: 1.5;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  max-width: var(--measure);
  margin: 0 0 1.6rem;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin: 1.8rem 0 2.6rem;
}
.reason {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--brass);
  border-radius: 4px;
  padding: 1.4rem 1.5rem;
}
.reason h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--cerise);
  margin: 0 0 0.4rem;
}
.reason p { margin: 0; font-size: 1.02rem; color: var(--text-soft); }
a.reason.lodge-card-link { border-bottom: 1px solid var(--stone); border-top: 3px solid var(--brass); transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
a.reason.lodge-card-link:hover { transform: translateY(-3px); border-top-color: var(--cerise); box-shadow: 0 10px 24px rgba(28,32,48,.10); }
a.reason.lodge-card-link h3 { border: none; }

.steps { counter-reset: step; list-style: none; padding: 0; max-width: var(--measure); margin: 0; }
.steps li {
  position: relative;
  padding: 0.7rem 0 1rem 3.4rem;
  border-bottom: 1px solid var(--stone);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0.55rem;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.05rem;
  color: var(--cerise);
  background: var(--pink-soft);
  border: 1px solid var(--pink);
  border-radius: 50%;
}
.steps strong { color: var(--ink); }

.cta-panel {
  background: var(--ink);
  color: var(--parchment);
  border: 1px solid var(--ink-line);
  border-radius: 5px;
  padding: 2.2rem 2.2rem;
  margin: 2.4rem 0 1rem;
  max-width: var(--measure);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--cerise), var(--pink));
}
.cta-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: #fff; font-size: 1.6rem; margin: 0 0 0.6rem;
}
.cta-panel p { color: rgba(245,240,229,.88); margin: 0.4rem auto 1.4rem; max-width: 46ch; }

.join-band-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.join-band-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.2rem); color: #fff; margin: 0 0 0.7rem;
}
.join-band-inner p { color: rgba(245,240,229,.86); margin: 0 auto 1.6rem; max-width: 48ch; }

/* ---------------- DINING ---------------- */
.menus { max-width: var(--measure); }
details.menu {
  border: 1px solid var(--stone);
  background: var(--paper);
  border-radius: 4px;
  margin: 0.7rem 0;
  overflow: hidden;
}
details.menu summary {
  cursor: pointer;
  padding: 0.85rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--ink);
  list-style: none;
  display: flex; align-items: center;
}
details.menu summary::-webkit-details-marker { display: none; }
details.menu summary::before { content: "❧"; color: var(--brass); margin-right: 0.7rem; transition: transform .2s ease; }
details.menu[open] summary { border-bottom: 1px solid var(--stone); background: var(--stone-2); }
details.menu[open] summary::before { transform: rotate(90deg); }
details.menu .menu-body { padding: 1.2rem 1.4rem 1.4rem; text-align: center; }
details.menu .menu-body p { margin: 0.5rem 0; }
.wine { font-style: italic; font-weight: 600; color: var(--cerise); font-size: 1rem; }

/* ---------------- PSLC GRID ---------------- */
.lodge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 1.8rem;
}
.lodge-card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.4;
  color: var(--text);
}
a.lodge-card:hover { border-color: var(--pink); color: var(--cerise); background: #fff; }
.lodge-card img { height: 62px; width: auto; object-fit: contain; margin: 0 auto 0.6rem; }

.affil { border-top: 1px solid var(--stone); padding: 1.9rem 0; max-width: var(--measure); }
.affil:first-of-type { border-top: none; padding-top: 0; }
.affil h2 { margin-top: 0; border: none; padding: 0; }

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 1.4rem 0;
}
.contact-email em { color: var(--brass); font-size: 0.78em; }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--ink);
  color: rgba(245,240,229,.78);
  border-top: 1px solid var(--ink-line);
  box-shadow: 0 -1px 0 rgba(247,167,188,.25);
}
.site-footer .inner { max-width: var(--maxw); margin: 0 auto; padding: 2.8rem var(--gutter); text-align: center; }
.site-footer .motto {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.92rem;
  color: var(--brass-soft); margin-bottom: 1.1rem;
}
.site-footer nav ul {
  list-style: none; margin: 0 0 1.2rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem;
}
.site-footer nav a { color: rgba(245,240,229,.72); border: none; font-size: 0.95rem; letter-spacing: 0.04em; }
.site-footer nav a:hover { color: var(--pink); }
.site-footer .legal { font-size: 0.88rem; color: rgba(245,240,229,.5); }

/* ---------------- SPLIT IMAGE / TEXT ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.split.flip .split-media { order: 2; }
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--stone);
  box-shadow: 0 10px 30px rgba(28,32,48,.10);
}
.split-media.tall img { aspect-ratio: 3 / 4; }
.split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin: 0.3rem 0 0.8rem;
  line-height: 1.14;
}
.band.dark .split-text h2 { color: #fff; }
.split-text p { margin: 0 0 1rem; }
.split-text p:last-child { margin-bottom: 0; }
.split .eyebrow { color: var(--brass); }
.band.dark .split .eyebrow { color: var(--brass-soft); }

/* media credit */
.credit { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.5rem; font-style: italic; }
.band.dark .credit { color: rgba(245,240,229,.6); }

/* ---------------- FULL-WIDTH IMAGE BAND ---------------- */
.image-band {
  position: relative;
  min-height: clamp(320px, 46vw, 520px);
  display: grid;
  place-items: end center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.image-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,36,.15) 0%, rgba(20,24,36,.30) 50%, rgba(20,24,36,.78) 100%);
}
.image-band .caption {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 var(--gutter) clamp(2rem, 5vw, 3.2rem);
}
.image-band .caption .eyebrow { color: var(--pink); }
.image-band .caption h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0.4rem 0 0.5rem;
  color: #fff;
}
.image-band .caption p { margin: 0; color: rgba(255,255,255,.88); }

/* ---------------- PULL QUOTE ---------------- */
.pullquote {
  max-width: var(--measure);
  margin: 2.4rem 0;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--pink);
}
.pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.pullquote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--brass);
}

/* ---------------- STAT ROW ---------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin: 1.8rem 0;
  max-width: var(--measure);
}
.stat {
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--brass);
  border-radius: 4px;
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cerise);
  line-height: 1;
}
.stat .lab {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* lead-in standfirst for interior pages */
.standfirst {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: var(--measure);
  margin: 0 0 1.8rem;
}

/* ---------------- BENEFITS ---------------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.benefit {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 1.6rem 1.5rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.benefit:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(28,32,48,.10); border-color: var(--pink); }
.benefit-ic {
  display: inline-grid;
  place-items: center;
  width: 50px; height: 50px;
  background: var(--pink-soft);
  color: var(--cerise);
  border-radius: 50%;
  margin-bottom: 0.9rem;
}
.benefit-ic svg { width: 26px; height: 26px; display: block; }
.benefit h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 0.45rem;
}
.benefit p { margin: 0; color: var(--text-soft); font-size: 1.02rem; }

/* ---------------- BACK TO TOP (mobile) ---------------- */
.to-top {
  display: none;
  position: fixed;
  right: 16px; bottom: 16px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: var(--ink);
  color: var(--pink);
  cursor: pointer;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .15s ease;
  box-shadow: 0 6px 18px rgba(20,24,36,.35);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--ink-2); }

@media (max-width: 820px) {
  .to-top { display: flex; }
}

/* ---------------- RESPONSIVE ---------------- */
.clear { clear: both; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
}
@media (max-width: 720px) {
  .feature { grid-template-columns: 1fr; text-align: center; }
  .feature img { width: 96px; }
  .float-right { float: none; width: 100%; margin: 1.2rem 0; }
}
/* ---- Burger nav: tablet & mobile ---- */
@media (max-width: 820px) {
  .masthead { gap: 0.6rem; }
  .site-title { font-size: 1.02rem; }
  .nav-toggle { display: flex; position: relative; z-index: 70; }
  /* the standalone Join button moves into the menu on mobile */
  .masthead > .join-btn { display: none; }

  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    background: var(--ink);
    border-left: 1px solid var(--ink-line);
    border-top: none;
    box-shadow: -16px 0 40px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 60;
    overflow-y: auto;
    padding-top: 4.5rem;
  }
  body.nav-open .site-nav { transform: translateX(0); }

  .site-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    max-width: none;
  }
  .site-nav li { border-bottom: 1px solid var(--ink-line); }
  .site-nav a {
    display: block;
    padding: 1rem 1.6rem;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    border-bottom: none;
  }
  .site-nav a[aria-current="page"] { border-bottom: none; color: var(--pink); }
  .site-nav a:hover { border-bottom: none; }

  /* show the Join link inside the menu, styled as a button */
  .nav-join { display: block; border-bottom: none !important; margin: 1rem 1.6rem; }
  .nav-join a {
    background: var(--pink);
    color: var(--ink) !important;
    text-align: center;
    border-radius: 3px;
    padding: 0.85rem 1rem;
  }
  .nav-join a:hover { background: var(--pink-soft); }

  /* burger -> X when open */
  body.nav-open .nav-toggle-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle-bar:nth-child(2){ opacity: 0; }
  body.nav-open .nav-toggle-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* dim the page behind the open menu */
  body.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(20,24,36,.5);
    z-index: 55;
  }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .gallery img:hover { transform: none; }
}
