/* ==========================================================================
   Parish of Central Exeter — design system
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --paper:      #ffffff;
  --stone:      #f7f4ee;
  --stone-deep: #efe9de;
  --ink:        #191720;
  --ink-soft:   #4c4854;
  --ink-mute:   #6f6a78;
  --line:       #e6e0d4;
  --line-soft:  #f0ebe1;

  --claret:     #8a2233;
  --claret-dk:  #6b1926;
  --claret-lt:  #f6ecec;
  --gold:       #8a6630;   /* AA against both white and stone */
  --sage:       #4e6b5c;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --maxw: 1240px;
  --prose: 64ch;

  /* Form */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(25,23,32,.05), 0 2px 8px rgba(25,23,32,.04);
  --shadow-md: 0 2px 4px rgba(25,23,32,.05), 0 12px 32px rgba(25,23,32,.08);
  --shadow-lg: 0 4px 8px rgba(25,23,32,.06), 0 24px 60px rgba(25,23,32,.12);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  /* `clip` (not `hidden`) so the off-canvas drawer and dropdown panels can
     never widen the page, while the sticky header keeps working. */
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 2.9vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .85vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.15em; }
a { color: var(--claret); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--claret-dk); }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
blockquote { margin: 1.8rem 0; padding: .2rem 0 .2rem 1.5rem; border-left: 3px solid var(--gold); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--ink); }
table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: .95rem; }
th, td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--font-body); font-weight: 600; color: var(--ink); background: var(--stone); }
:focus-visible { outline: 2.5px solid var(--claret); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }
.section { padding-block: var(--section); }
.section--stone { background: var(--stone); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--claret); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--claret);
  margin: 0 0 .9rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::after { content: ""; flex: 0 0 40px; height: 1px; background: rgba(138,34,51,.4); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { font-size: 1.125rem; color: var(--ink-mute); margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { content: ""; flex: 0 0 40px; height: 1px; background: rgba(138,34,51,.4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--claret); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--claret-dk); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--stone); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: .65rem 1.1rem; font-size: .875rem; }
.btn svg { width: 1em; height: 1em; flex: none; }

/* ==========================================================================
   Header & navigation
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: .8125rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: rgba(255,255,255,.86); text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.topbar__list li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.topbar svg { width: 13px; height: 13px; opacity: .7; }
@media (max-width: 860px) { .topbar__open { display: none; } }
@media (max-width: 620px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
/* The menu carries nine full page names, so the header runs wider than the
   text column it sits above. */
.site-header .wrap { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); max-width: 1460px; }

/* `min-width: 0` lets the brand give way rather than shove the menu button
   off the edge of a narrow screen. */
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; margin-right: auto; flex: 0 1 auto; min-width: 0; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); margin-top: .22rem; }

@media (max-width: 600px) {
  :root { --header-h: 66px; }
  .site-header .wrap { gap: .75rem; }
  .brand { gap: .6rem; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.02rem; }
  .brand__sub { display: none; }
}
@media (max-width: 420px) {
  .brand__name { font-size: .95rem; }
}

/* Desktop nav */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { margin: 0; position: relative; }
.nav__link {
  display: flex; align-items: center; gap: .28rem;
  padding: .6rem .55rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500; color: var(--ink); text-decoration: none;
  white-space: nowrap; transition: background-color .15s ease, color .15s ease;
}
@media (min-width: 1500px) {
  .nav__link { padding: .6rem .8rem; font-size: .925rem; }
}
.nav__link:hover { background: var(--stone); color: var(--ink); }
.nav__item.is-active > .nav__link { color: var(--claret); }
.nav__item.is-active > .nav__link::after { content: ""; position: absolute; left: .55rem; right: .55rem; bottom: .3rem; height: 2px; background: var(--claret); border-radius: 2px; }
.nav__caret { width: .5rem; height: .5rem; opacity: .5; transition: transform .2s ease; }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); opacity: .9; }

.nav__panel {
  position: absolute; top: calc(100% + .35rem); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 292px; max-width: 380px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: .5rem; margin: 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item:hover > .nav__panel, .nav__item:focus-within > .nav__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__panel li { margin: 0; position: relative; }
.nav__panel a {
  display: block; padding: .58rem .8rem; border-radius: var(--r-sm);
  font-size: .9rem; color: var(--ink-soft); text-decoration: none; line-height: 1.35;
}
.nav__panel a:hover { background: var(--stone); color: var(--claret); }
.nav__panel a[aria-current="page"] { color: var(--claret); background: var(--claret-lt); font-weight: 600; }
.nav__panel .nav__panel { top: -.5rem; left: calc(100% + .3rem); transform: translateX(0) translateY(-6px); }
.nav__panel .nav__panel--flip { left: auto; right: calc(100% + .3rem); }
.nav__panel li:hover > .nav__panel, .nav__panel li:focus-within > .nav__panel { transform: translateX(0) translateY(0); }
.nav__sub-label { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.nav__sub-label::after { content: "\203A"; opacity: .45; font-size: 1.15em; line-height: 1; }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }
@media (max-width: 991px) { .header__actions .btn--primary { display: none; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  flex: none;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1rem; font: inherit; font-size: .875rem; font-weight: 600; color: var(--ink); cursor: pointer;
}
.nav-toggle:hover { background: var(--stone); }
/* Below this the word "Menu" costs more than it earns; the button keeps its
   accessible name via aria-label. */
@media (max-width: 600px) {
  .nav-toggle { padding: .62rem; gap: 0; min-width: 44px; min-height: 44px; }
  .nav-toggle__label { display: none; }
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.nav-toggle__bars span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

@media (min-width: 1280px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}
/* Between 1280 and 1440 the strapline is the first thing to give way. */
@media (min-width: 1280px) and (max-width: 1439px) {
  .brand__name { font-size: 1.05rem; }
  .brand__sub { display: none; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(25,23,32,.45); opacity: 0; transition: opacity .3s ease; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw); background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.32,.72,0,1);
  display: flex; flex-direction: column;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.drawer__close { background: transparent; border: 1px solid var(--line); border-radius: 999px; width: 44px; height: 44px; font-size: 1.35rem; line-height: 1; color: var(--ink); cursor: pointer; }
.drawer__close:hover { background: var(--stone); }
.drawer__body { flex: 1; overflow-y: auto; padding: .75rem 1.25rem 2rem; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.drawer__foot { padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--line); display: grid; gap: .6rem; }
.drawer__foot .btn { justify-content: center; }

.mnav { list-style: none; margin: 0; padding: 0; }
.mnav > li { margin: 0; border-bottom: 1px solid var(--line-soft); }
.mnav__row { display: flex; align-items: stretch; }
.mnav__row > a { flex: 1; padding: .95rem .25rem; font-size: 1.02rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.mnav__row > a[aria-current="page"] { color: var(--claret); }
.mnav__toggle { flex: none; width: 46px; background: transparent; border: 0; cursor: pointer; color: var(--ink-mute); display: grid; place-items: center; }
.mnav__toggle svg { width: 13px; height: 13px; transition: transform .22s ease; }
.mnav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mnav__sub { list-style: none; margin: 0 0 .6rem; padding: 0 0 0 .9rem; border-left: 2px solid var(--line); display: none; }
.mnav__sub.is-open { display: block; }
.mnav__sub li { margin: 0; border-bottom: 0; }
.mnav__sub a { display: block; padding: .55rem .25rem; font-size: .935rem; font-weight: 400; color: var(--ink-soft); text-decoration: none; }
.mnav__sub a:hover, .mnav__sub a[aria-current="page"] { color: var(--claret); }
.mnav__sub .mnav__row > a { padding: .55rem .25rem; font-size: .935rem; font-weight: 400; color: var(--ink-soft); }
.mnav__sub .mnav__toggle { width: 38px; }
.mnav__sub .mnav__sub { margin-bottom: .2rem; }
body.is-locked { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(20,16,24,.86) 0%, rgba(20,16,24,.62) 45%, rgba(20,16,24,.3) 100%),
    linear-gradient(to top, rgba(20,16,24,.7) 0%, rgba(20,16,24,0) 55%);
}
.hero__inner { padding-block: clamp(5rem, 13vw, 10rem); max-width: 44rem; }
.hero .eyebrow { color: #fff; opacity: .92; }
.hero .eyebrow::after { background: rgba(255,255,255,.5); }
.hero h1 { color: #fff; margin-bottom: .4em; text-wrap: balance; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero__lede { font-size: clamp(1.075rem, 1rem + .5vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 34rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Open-daily strip */
.strip { background: var(--ink); color: rgba(255,255,255,.85); }
.strip .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.5rem; padding-block: 1rem; font-size: .95rem; }
.strip__dot { width: 8px; height: 8px; border-radius: 50%; background: #6fcf97; flex: none; box-shadow: 0 0 0 4px rgba(111,207,151,.2); }
.strip strong { color: #fff; font-weight: 600; }
.strip a { color: #fff; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--stone); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; top: -40%; right: -6%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(138,34,51,.07), rgba(138,34,51,0) 68%); pointer-events: none;
}
.page-hero .wrap { padding-block: clamp(2.25rem, 5vw, 4rem); position: relative; }
.page-hero h1 { margin-bottom: 0; max-width: 24ch; text-wrap: balance; }
.page-hero__lede { margin-top: 1rem; font-size: 1.125rem; color: var(--ink-mute); max-width: 60ch; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; list-style: none; margin: 0 0 1rem; padding: 0; font-size: .82rem; color: var(--ink-mute); }
.crumbs li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.crumbs li + li::before { content: "/"; opacity: .4; }
.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--claret); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink); }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.card {
  position: relative;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.28rem; margin-bottom: .4rem; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__meta { font-size: .84rem; color: var(--ink-mute); display: flex; align-items: flex-start; gap: .45rem; margin-bottom: .75rem; line-height: 1.45; }
.card__meta svg { width: 14px; height: 14px; margin-top: .3rem; flex: none; opacity: .65; }
.card__text { font-size: .95rem; margin-bottom: 1rem; }
.card__more { margin-top: auto; font-size: .875rem; font-weight: 600; color: var(--claret); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s ease; }
.card:hover .card__more { gap: .7rem; }
.card__more svg { width: 1em; height: 1em; }

/* Feature list (commitments) */
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.85rem 1.7rem; height: 100%; }
.pillar__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--claret-lt); color: var(--claret); margin-bottom: 1.1rem; }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.32rem; margin-bottom: .55rem; }
.pillar ul { margin: 0; padding-left: 1.15em; font-size: .95rem; }
.pillar li::marker { color: var(--gold); }

/* ==========================================================================
   Service / event lists
   ========================================================================== */
.services-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.services-panel__head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); background: var(--stone); display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.services-panel__head h3 { margin: 0; font-size: 1.3rem; }
.services-panel__head span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-mute); }

.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-list li { margin: 0; display: flex; align-items: baseline; gap: 1rem; padding: .95rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
.svc-list li:last-child { border-bottom: 0; }
.svc-list li:hover { background: var(--stone); }
.svc-date { flex: none; width: 5.6rem; font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--claret); }
.svc-body { flex: 1; }
.svc-name { display: block; color: var(--ink); font-weight: 600; font-size: 1rem; }
.svc-where { display: block; font-size: .875rem; color: var(--ink-mute); }
@media (max-width: 560px) {
  .svc-list li { flex-direction: column; gap: .15rem; padding-inline: 1.15rem; }
  .svc-date { width: auto; }
}

.event-row { display: flex; align-items: center; gap: 1.15rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.event-row:last-child { border-bottom: 0; }
.event-date { flex: none; width: 66px; text-align: center; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper); overflow: hidden; box-shadow: var(--shadow-sm); }
.event-date__m { display: block; background: var(--claret); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; padding: .25rem 0; }
.event-date__d { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1; padding: .4rem 0 .1rem; }
.event-date__w { display: block; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); padding-bottom: .35rem; }
.event-info h4 { margin: 0 0 .15rem; font-size: 1.1rem; }
.event-info p { margin: 0; font-size: .9rem; color: var(--ink-mute); }

/* ==========================================================================
   Bands
   ========================================================================== */
.band-quote { background: var(--ink); color: rgba(255,255,255,.8); text-align: center; }
.band-quote .wrap { max-width: 900px; }
.band-quote p { font-family: var(--font-display); font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.15rem); line-height: 1.35; color: #fff; margin: 0 0 1.25rem; text-wrap: balance; }
.band-quote cite { font-family: var(--font-body); font-style: normal; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; } .split--flip > *:first-child { order: 2; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Contact tiles */
.tile { display: flex; gap: 1rem; padding: 1.4rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); }
.tile__icon { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--claret-lt); color: var(--claret); display: grid; place-items: center; }
.tile__icon svg { width: 20px; height: 20px; }
.tile h4 { margin: 0 0 .25rem; font-size: 1.05rem; }
.tile p { margin: 0; font-size: .93rem; }
.tile a { font-weight: 600; }

.notice { border-left: 3px solid var(--gold); background: #fdfaf4; padding: 1.15rem 1.35rem; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: .96rem; margin: 0 0 1.5rem; }
.notice--alert { border-left-color: var(--claret); background: var(--claret-lt); }
.notice > *:last-child { margin-bottom: 0; }
.notice strong { color: var(--ink); }

/* ==========================================================================
   Prose (imported page content)
   ========================================================================== */
.page-body { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.page-layout { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1000px) { .page-layout--aside { grid-template-columns: minmax(0,1fr) 290px; } }

/* A page with no sidebar uses a narrower container instead, so the heading,
   breadcrumbs and text stay aligned and nothing reads as a missing column. */
.wrap--article { max-width: 730px; }
.page-layout--wide .prose,
.wrap--article .prose { max-width: none; }

.prose { max-width: var(--prose); font-size: 1.075rem; }
.page-layout--aside .prose { max-width: 66ch; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
.prose h3 { margin-top: 1.9em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose img { border-radius: var(--r-md); box-shadow: var(--shadow-sm); margin: 1.5rem 0; }
.prose figure { margin: 2rem 0; }
.prose figcaption { font-size: .86rem; color: var(--ink-mute); margin-top: .6rem; text-align: center; }
.prose .alignright { float: right; margin: .35rem 0 1.5rem 2rem; max-width: min(46%, 340px); }
.prose .alignleft { float: left; margin: .35rem 2rem 1.5rem 0; max-width: min(46%, 340px); }
.prose .aligncenter { margin-inline: auto; }
@media (max-width: 680px) {
  .prose .alignright, .prose .alignleft { float: none; margin: 1.5rem auto; max-width: 100%; }
}
.prose ul li::marker { color: var(--gold); }
.prose ol li::marker { color: var(--claret); font-weight: 600; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink); font-family: var(--font-display); }
.prose hr { margin: 2.75rem 0; clear: both; }
.prose iframe { max-width: 100%; border-radius: var(--r-md); border: 1px solid var(--line); }
.prose .embed { position: relative; padding-bottom: 56.25%; height: 0; margin: 2rem 0; border-radius: var(--r-md); overflow: hidden; }
.prose .embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 0; }
.prose .table-scroll { overflow-x: auto; margin-bottom: 1.5rem; }

/* Image gallery grid inside prose */
.prose-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); gap: .85rem; margin: 2rem 0; clear: both; }
.prose-gallery a { display: block; border-radius: var(--r-md); overflow: hidden; }
.prose-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; margin: 0; border-radius: var(--r-md); box-shadow: none; transition: transform .3s ease, box-shadow .3s ease; }
.prose-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* Link cards row (history / hire / events tiles) */
.linkrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 1rem; margin: 2.5rem 0 1rem; clear: both; }
.linkrow a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1.1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--stone); color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: .98rem;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.linkrow a:hover { background: var(--paper); border-color: var(--claret); color: var(--claret); transform: translateY(-2px); }
.linkrow a::after { content: "\2192"; opacity: .5; }

/* Aside — in-section navigation */
.aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.aside__box { background: var(--stone); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; margin-bottom: 1.25rem; }
.aside__box > h2 { font-size: .78rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .9rem; }
.aside__nav { list-style: none; margin: 0; padding: 0; font-size: .93rem; }
.aside__nav li { margin: 0; border-top: 1px solid var(--line); }
.aside__nav li:first-child { border-top: 0; }
.aside__nav a { display: block; padding: .55rem 0; color: var(--ink-soft); text-decoration: none; line-height: 1.4; }
.aside__nav a:hover { color: var(--claret); }
.aside__nav a[aria-current="page"] { color: var(--claret); font-weight: 600; }
.aside__cta { background: var(--ink); color: rgba(255,255,255,.75); border-color: var(--ink); }
.aside__cta > h2 { color: rgba(255,255,255,.55); }
.aside__cta p { font-size: .93rem; margin-bottom: 1rem; }
.aside__cta .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); font-size: .935rem; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: rgba(255,255,255,.5); }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.75rem; align-items: center; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.8); }
.footer-note { font-size: .9rem; line-height: 1.65; }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }
