/* ==========================================================================
   SCAS — components
   ========================================================================== */

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.18rem;
}

.nav { display: none; }

@media (min-width: 60rem) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 0.2rem + 1.6vw, 2.1rem);
  }
}

.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  padding-block: 0.4rem;
  color: var(--text);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-2) var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link[aria-current="page"] { font-weight: 600; }

/* Mobile menu — checkbox-free, toggled by JS with [data-open] */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

@media (min-width: 60rem) { .nav-toggle { display: none; } }

.nav-toggle__bars { display: grid; gap: 3px; width: 1rem; }
.nav-toggle__bars span {
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-1) var(--ease), opacity var(--dur-1);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-nav {
  display: grid;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-2) var(--ease);
}

.mobile-nav[data-open="true"] { max-height: 34rem; }

@media (min-width: 60rem) { .mobile-nav { display: none; } }

.mobile-nav__list { padding: 1rem 0 2rem; }

.mobile-nav__list a {
  display: block;
  padding: 0.85rem var(--gutter);
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-3);
}

.mobile-nav__list a[aria-current="page"] { color: var(--gold); }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

/* Gold wipe from the bottom on hover — transform only */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translate3d(0, 101%, 0);
  transition: transform var(--dur-2) var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before { transform: translate3d(0, 0, 0); }

.btn:hover,
.btn:focus-visible { color: var(--ink); border-color: var(--gold); }

.btn__arrow { transition: transform var(--dur-2) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold::before { background: var(--paper); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: currentColor;
}
.on-ink .btn--ghost { --btn-fg: var(--paper); }

.btn--sm { padding: 0.6rem 1rem; font-size: var(--fs-xs); }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur-2) var(--ease), gap var(--dur-2) var(--ease);
}

.arrow-link:hover { border-color: var(--gold); gap: 0.85rem; }
.on-ink .arrow-link { border-color: var(--ink-3); }

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 7vw, 8rem) clamp(3rem, 2rem + 4vw, 6rem);
}

/* Hero photograph (home page). The whole frame is shown — never cropped — so
   the full council stays visible. It is scaled down and anchored to the
   bottom-right, then dissolved into the paper on its left and bottom edges.
   Text never overlaps it: the photo starts past where the longest line ends. */
.hero__media {
  position: absolute;
  right: 0;
  top: 50%;
  /* The box hugs the image (height:auto), so centring the box centres the photo
     and the ::after fade always tracks the image edges exactly. */
  translate: 0 -50%;
  width: min(50%, 58rem);
  z-index: 0;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: auto; /* natural aspect ratio — no object-fit, so nothing is cropped */
  /* Pull the photo toward the palette instead of letting it fight it. */
  filter: saturate(0.78) contrast(1.03);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* dissolve the left edge into the paper, toward the text */
    linear-gradient(to right,
      var(--paper) 0%,
      color-mix(in srgb, var(--paper) 62%, transparent) 15%,
      color-mix(in srgb, var(--paper) 18%, transparent) 30%,
      transparent 46%),
    /* now that it floats mid-height, soften both horizontal edges too */
    linear-gradient(to top,
      var(--paper) 0%,
      color-mix(in srgb, var(--paper) 26%, transparent) 10%,
      transparent 26%),
    linear-gradient(to bottom,
      var(--paper) 0%,
      color-mix(in srgb, var(--paper) 26%, transparent) 10%,
      transparent 26%);
}

/* Narrow screens: the text runs full width, so the photo simply flows beneath
   it at full width (it sits after .hero__content in the DOM for exactly this). */
@media (max-width: 61.99rem) {
  .hero__media {
    /* relative, not static — it still has to be the containing block for ::after */
    position: relative;
    right: auto;
    top: auto;
    translate: none;
    width: 100%;
    margin-top: clamp(2rem, 1rem + 4vw, 3rem);
  }

  .hero__media::after {
    background: linear-gradient(to top,
      var(--paper) 0%,
      color-mix(in srgb, var(--paper) 26%, transparent) 14%,
      transparent 34%);
  }
}

.hero__rings {
  position: absolute;
  top: 50%;
  right: -22vw;
  width: min(112vw, 62rem);
  aspect-ratio: 1;
  translate: 0 -50%;
  pointer-events: none;
  opacity: 0.9;
}

@media (min-width: 62rem) {
  .hero__rings { right: -8vw; width: min(66vw, 54rem); }
}

.hero__rings circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
  transform-origin: 50% 50%;
  animation: ring-breathe 9s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.75s);
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50%      { transform: scale(1.035); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__rings circle { animation: none; }
}

.hero__content { position: relative; z-index: 1; }

/* Keep the longest prose line clear of the photo dissolve. */
.hero--media .lead { max-width: 44ch; }

.hero__title { max-width: 16ch; }

.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Ticker -------------------------------------------------------------- */

.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: 1rem;
  border-block: 1px solid var(--ink-3);
  /* Tuned against the travel distance below, not wall-clock: one half is now
     6 phrases wide, so a longer duration keeps the same on-screen speed. */
  --ticker-duration: 100s;
}

/* Seamless loop: the track is two IDENTICAL halves and the animation shifts it
   left by exactly one half, so the moment it resets, half two is sitting where
   half one was — pixel-identical, no visible jump.
   The half must stay wider than the viewport or the tail runs out before the
   reset and you get an empty gap. Six phrases clears ~4000px at the largest
   font step; add phrases in the markup if it ever has to span wider than that. */
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--ticker-duration) linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  line-height: 1;
  white-space: nowrap;
}

/* All three words share one treatment — the gold accent used to land on a
   nth-child stride that counted the separators too, so it only ever hit
   "Empower". The bullets carry the gold instead. */
.ticker__dot { color: var(--gold); font-size: 0.5em; }

@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; width: 100%; justify-content: center; }
  .ticker__group + .ticker__group { display: none; }
  /* Static: show one phrase, not the six the moving version needs. */
  .ticker__group span:nth-child(n + 7) { display: none; }
}

/* --- Section header ------------------------------------------------------ */

.section-head {
  display: grid;
  gap: 1.25rem var(--gutter);
  align-items: end;
  margin-bottom: var(--sp-block);
}

@media (min-width: 62rem) {
  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  }
}

.section-index {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-ink);
}

.on-ink .section-index { color: var(--gold); }

/* --- Stats --------------------------------------------------------------- */

.stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.on-ink .stats { background: var(--ink-3); border-color: var(--ink-3); }

@media (min-width: 48rem) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat {
  background: var(--paper);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.5rem) clamp(1rem, 0.5rem + 1.2vw, 1.75rem);
}

.on-ink .stat { background: var(--ink); }
.on-paper-2 .stat { background: var(--paper-2); }

/* Two-up variant that stays two-up at every width */
.stats--2up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 48rem) { .stats--2up { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.6rem + 3.4vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* `top` needs an explicit position — `vertical-align: super` alone won't honour it. */
.stat__value sup { font-size: 0.4em; color: var(--gold-deep); position: relative; top: -0.9em; }

/* Full-size, inline arrow (3 → 1). A raised superscript arrow read as a
   rendering artifact — "+" is a superscript convention, "→1" isn't. */
.stat__arrow {
  color: var(--gold-deep);
  margin-inline: 0.14em;
  font-size: 0.72em;
  /* The arrow glyph is drawn near the font's math axis (~0.23em up), while the
     lining digits centre around 0.35em. Lift it the difference so it reads as
     centred between the numerals rather than sitting low. */
  vertical-align: 0.17em;
}
.on-ink .stat__value sup { color: var(--gold); }

.stat__label {
  margin-top: 0.7rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.on-ink .stat__label { color: var(--muted-on-ink); }

/* --- Pillar cards -------------------------------------------------------- */

.pillar {
  position: relative;
  padding: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.on-ink .pillar { background: var(--ink-2); border-color: var(--ink-3); }

.pillar:hover { border-color: var(--gold); transform: translateY(-3px); }

.pillar__rings {
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 11rem;
  height: 11rem;
  opacity: 0.28;
  pointer-events: none;
  transition: transform var(--dur-3) var(--ease), opacity var(--dur-2) var(--ease);
}

.pillar:hover .pillar__rings { transform: scale(1.12) rotate(6deg); opacity: 0.5; }

.pillar__rings circle { fill: none; stroke: var(--gold); stroke-width: 1.1; }

.pillar__word {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.pillar__word em { font-style: italic; color: var(--gold-deep); }
.on-ink .pillar__word em { color: var(--gold); }

.pillar p { color: var(--muted); font-size: var(--fs-sm); line-height: 1.65; }
.on-ink .pillar p { color: var(--muted-on-ink); }

/* --- People -------------------------------------------------------------- */

.person {
  display: grid;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.on-ink .person { border-color: var(--ink-3); }

.person__mark {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border-radius: 50%;
  overflow: hidden;
  max-width: 9.5rem;
}

.on-ink .person__mark { background: var(--ink-2); }

/* Headshot fills the circular frame; the gold rings sit over it, so photo and
   monogram cards read as the same component. */
.person__mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* A photographed card drops both the monogram and the ring overlay — the rings
   sat across people's faces. Cards without a photo still get the rings. */
.person__mark:has(img) .person__initials,
.person__mark:has(img) svg { display: none; }

/* Keep a hover on photo cards now that the rings no longer move. */
.person__mark img { transition: transform var(--dur-3) var(--ease); }
.person:hover .person__mark img { transform: scale(1.04); }

.person__mark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform var(--dur-3) var(--ease);
}

.person__mark svg circle { fill: none; stroke: var(--gold); stroke-width: 1; }

.person:hover .person__mark svg { transform: scale(1.08) rotate(-8deg); }

.person__initials {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.on-ink .person__initials { color: var(--paper); }

.person__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.person__role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.on-ink .person__role { color: var(--gold); }

.person--lead .person__mark { max-width: 12rem; }

/* --- Events -------------------------------------------------------------- */

.event {
  display: grid;
  gap: 0.6rem 2rem;
  padding-block: clamp(1.5rem, 1rem + 1.4vw, 2.25rem);
  border-top: 1px solid var(--line);
  align-items: baseline;
  text-decoration: none;
  transition: background var(--dur-2) var(--ease);
}

.on-ink .event { border-color: var(--ink-3); }

@media (min-width: 52rem) {
  .event { grid-template-columns: 9rem minmax(0, 1fr) auto; }
}

.event__date {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.1;
  color: var(--gold-deep);
}

.on-ink .event__date { color: var(--gold); }

.event__date span {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.on-ink .event__date span { color: var(--muted-on-ink); }

.event__body p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-top: 0.3rem;
}

.on-ink .event__body p { color: var(--muted-on-ink); }

.tag {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.on-ink .tag { border-color: var(--ink-3); color: var(--muted-on-ink); }

.tag--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* --- Event factsheet + run-of-show (unlisted event pages) ---------------- */

.factsheet {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border-block: 1px solid var(--line);
}

@media (min-width: 34rem) {
  .factsheet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 62rem) {
  .factsheet { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.factsheet > div {
  background: var(--paper);
  padding: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
}

.factsheet dt {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.factsheet dd {
  margin: 0.4rem 0 0;
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.runsheet { list-style: none; padding: 0; margin: 0; }

.runsheet li {
  display: grid;
  gap: 0.25rem 1rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 34rem) {
  .runsheet li { grid-template-columns: 4.5rem minmax(0, 1fr); }
}

.on-ink .runsheet li { border-color: var(--ink-3); color: var(--muted-on-ink); }

/* Date-led variant: "Wed 26 Aug" needs more room than a clock time. */
@media (min-width: 34rem) {
  .runsheet--dates li { grid-template-columns: 7.5rem minmax(0, 1fr); }
}

.runsheet .num {
  font-weight: 600;
  color: var(--gold-ink);
  white-space: nowrap;
}

.on-ink .runsheet .num { color: var(--gold); }

/* --- Pull quote ---------------------------------------------------------- */

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}

.pullquote em { font-style: italic; color: var(--gold); }

.pullquote__cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
}

/* --- Timeline ------------------------------------------------------------ */

.timeline { border-top: 1px solid var(--line); }
.on-ink .timeline { border-color: var(--ink-3); }

.timeline__item {
  display: grid;
  gap: 0.4rem 2.5rem;
  padding-block: clamp(1.25rem, 1rem + 1vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.on-ink .timeline__item { border-color: var(--ink-3); }

@media (min-width: 48rem) {
  .timeline__item { grid-template-columns: 7rem minmax(0, 1fr); }
}

.timeline__when {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-deep);
}

.on-ink .timeline__when { color: var(--gold); }

.timeline__item p { color: var(--muted); font-size: var(--fs-sm); margin-top: 0.35rem; }
.on-ink .timeline__item p { color: var(--muted-on-ink); }

/* --- Accordion (native <details>) ---------------------------------------- */

.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--dur-1) var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-ink); }

.faq__sign {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  align-self: center;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--gold-deep);
  transition: transform var(--dur-2) var(--ease);
}

.faq__sign::after { transform: rotate(90deg); }
.faq__item[open] .faq__sign::after { transform: rotate(0deg); }

.faq__item > div {
  padding-bottom: 1.5rem;
  color: var(--muted);
  max-width: 62ch;
}

/* --- Forms --------------------------------------------------------------- */

.field { display: grid; gap: 0.45rem; }

.field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur-1) var(--ease);
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--muted); }

.field textarea { min-height: 9rem; resize: vertical; }

.field__hint { font-size: var(--fs-xs); color: var(--muted); letter-spacing: 0; text-transform: none; font-weight: 400; }

.form-grid { display: grid; gap: 1.25rem; }

@media (min-width: 40rem) {
  .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid--2 .field--full { grid-column: 1 / -1; }
}

/* --- Contact channels ---------------------------------------------------- */

.channel {
  display: grid;
  gap: 0.35rem;
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.channel:hover { border-color: var(--gold); transform: translateY(-3px); }

.channel__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.channel__value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
  line-height: 1.2;
  word-break: break-word;
}

/* --- CTA band ------------------------------------------------------------ */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
}

.cta-band__rings {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(120vw, 56rem);
  aspect-ratio: 1;
  opacity: 0.4;
  pointer-events: none;
}

.cta-band__rings circle { fill: none; stroke: var(--ink); stroke-width: 0.6; vector-effect: non-scaling-stroke; }

.cta-band .btn { --btn-bg: var(--ink); --btn-fg: var(--gold); }
.cta-band .btn::before { background: var(--paper); }
.cta-band .btn:hover { color: var(--ink); border-color: var(--paper); }

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 2rem + 3vw, 5rem) 2rem;
}

.site-footer__grid {
  display: grid;
  gap: var(--sp-block) var(--gutter);
}

@media (min-width: 52rem) {
  .site-footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.footer-wordmark em { font-style: italic; color: var(--gold); }

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-list a {
  display: inline-block;
  padding-block: 0.28rem;
  font-size: var(--fs-sm);
  color: var(--muted-on-ink);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease);
}

.footer-list a:hover { color: var(--gold); }

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  margin-top: var(--sp-block);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3);
  font-size: var(--fs-xs);
  color: var(--muted-on-ink);
}
