@charset "UTF-8";
/* ==========================================================================
   Rupert United Methodist Church — main stylesheet
   Palette drawn from the church's own photographs: the stencilled red and
   gold of the 1884 Johnson organ pipes, natural pine woodwork, and the
   slate blue of the clapboard exterior against a Vermont sky.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     Swap the file in assets/ (keep the name) to change these decorative
     backgrounds. Every content photo lives in HTML as <img src="assets/…">. */
  --img-cta-texture: url("assets/organ-wide-sm.jpg");

  /* Ink & paper */
  --paper:      #faf6f0;
  --paper-warm: #f3ebdf;
  --surface:    #ffffff;
  --ink:        #221e1a;
  --ink-soft:   #574f45;
  --ink-deep:   #1d1916;

  /* Accents */
  --brick:      #8c2f2a;
  --brick-deep: #6d221e;
  --brick-tint: #f6ebe8;
  --gold:       #a97b2b;
  --gold-ink:   #8a6220;
  --gold-soft:  #ddc9a0;
  --slate:      #41586a;

  --line:       #e4dccf;
  --line-soft:  #efe8dc;

  /* Type */
  --serif: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.72vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
  --step-4:  clamp(2.1rem, 1.65rem + 2.1vw, 3.6rem);

  /* Rhythm */
  --gap: clamp(1.25rem, 0.9rem + 1.6vw, 2.25rem);
  --section: clamp(3.25rem, 2.2rem + 4.4vw, 6rem);
  --shell: 1120px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(34, 30, 26, .06), 0 2px 8px rgba(34, 30, 26, .05);
  --shadow-md: 0 2px 6px rgba(34, 30, 26, .07), 0 14px 34px rgba(34, 30, 26, .09);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }
p, ul, ol, dl { margin: 0 0 1.15em; }
a { color: var(--brick); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brick-deep); }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
hr { border: 0; border-top: 1px solid var(--line); margin: var(--gap) 0; }

/* ---------- Utilities ---------- */
.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--paper { background: var(--paper-warm); }
.section--surface { background: var(--surface); }
.prose { max-width: 68ch; }
.prose p:last-child, .prose ul:last-child { margin-bottom: 0; }
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); font-family: var(--serif); }
.center { text-align: center; }
.center .prose, .center .lede { margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--brick); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--radius); font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 .85rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-soft), transparent);
  max-width: 6rem;
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn svg { flex: none; }
.btn--primary { background: var(--brick); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brick-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--brick); border-color: rgba(140, 47, 42, .38); }
.btn--secondary:hover { background: var(--brick-tint); color: var(--brick-deep); border-color: var(--brick); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: #fff; color: var(--brick-deep); border-color: #fff; }
.btn--light { background: #fff; color: var(--brick-deep); }
.btn--light:hover { background: var(--paper-warm); color: var(--brick-deep); transform: translateY(-1px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Announcement banner ---------- */
.banner {
  background: var(--ink-deep);
  color: #f0e7da;
  font-size: var(--step--1);
  line-height: 1.5;
}
.banner p { margin: 0; padding: .6rem 0; text-align: center; }
.banner a { color: var(--gold-soft); font-weight: 600; }
.banner a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, .94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-height: 72px;
  padding-block: .6rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { color: var(--brick); }
.brand-mark { width: 34px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 700;
  margin-top: .18rem;
}
.nav-toggle { display: none; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: .5rem .68rem;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--brick); background: var(--brick-tint); }
.site-nav a[aria-current="page"] {
  color: var(--brick);
  box-shadow: inset 0 -2px 0 var(--brick);
  border-radius: var(--radius) var(--radius) 0 0;
}
.header-cta { display: inline-flex; }
.header-cta .btn { padding: .62rem 1.05rem; font-size: .93rem; }

@media (max-width: 1040px) {
  .site-nav a { padding: .5rem .5rem; font-size: .9rem; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: .62rem .8rem; }
}

/* Mobile navigation — only enabled when JS is available, so the plain
   wrapped list stays reachable for no-JS visitors. */
@media (max-width: 860px) {
  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    order: 3;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .55rem .8rem;
    font: inherit;
    font-size: .9rem;
    font-weight: 650;
    color: var(--ink);
    cursor: pointer;
  }
  .js .nav-toggle:hover { border-color: var(--brick); color: var(--brick); }
  .nav-toggle-bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
  .nav-toggle-bars::before, .nav-toggle-bars::after {
    content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
    transition: transform .18s ease, top .18s ease;
  }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .js [aria-expanded="true"] .nav-toggle-bars { background: transparent; }
  .js [aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
  .js [aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

  .js .site-nav {
    display: none;
    order: 10;
    width: 100%;
    padding-bottom: .8rem;
  }
  .js .site-nav.is-open { display: block; }
  .js .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .js .site-nav li + li { border-top: 1px solid var(--line-soft); }
  .js .site-nav a { padding: .8rem .25rem; font-size: 1.02rem; border-radius: 0; }
  .js .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--brick); padding-left: .8rem; }
  .header-inner { flex-wrap: wrap; }
  .js .header-cta { order: 2; }
}
@media (max-width: 520px) {
  .brand-name { font-size: .96rem; }
  .header-cta .btn { padding: .58rem .75rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 12% 0%, #fffdf9 0%, var(--paper) 55%, var(--paper-warm) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(to right, var(--brick) 0 22%, var(--gold) 22% 42%, var(--slate) 42% 60%, var(--gold-soft) 60% 100%);
  opacity: .85;
}
.hero-inner {
  display: grid;
  gap: clamp(1.8rem, 1rem + 3.5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 1.6rem + 3.8vw, 4.75rem);
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.02fr 1fr; }
}
.hero h1 { margin-bottom: .35em; }
.hero-motto {
  display: inline-block;
  font-family: var(--serif);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--brick);
  border-left: 3px solid var(--gold);
  padding-left: .8rem;
  margin: 0 0 1.1rem;
}
.hero-text > p { max-width: 46ch; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-media figcaption {
  margin-top: .7rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
  font-style: italic;
}
.hero-media { margin: 0; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.hero-trust svg { color: var(--gold); flex: none; }

/* ---------- Key facts strip (times / place / phone) ---------- */
.factbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.factbar-grid {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border-inline: 1px solid var(--line-soft);
}
@media (min-width: 720px) { .factbar-grid { grid-template-columns: repeat(3, 1fr); } }
.fact {
  background: var(--surface);
  padding: clamp(1.2rem, 1rem + .8vw, 1.8rem) clamp(1rem, .8rem + 1vw, 1.7rem);
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.fact svg { color: var(--brick); flex: none; margin-top: .15rem; }
.fact h2, .fact h3 {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 .3rem;
}
.fact p { margin: 0; font-size: .98rem; line-height: 1.5; }
.fact strong { font-family: var(--serif); font-size: var(--step-1); font-weight: 600; display: block; letter-spacing: -.01em; }
.fact a { font-weight: 600; }

/* ---------- Generic cards & grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 1.1rem + .8vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; }
.card--accent { border-top: 3px solid var(--brick); }

/* Mission list rows */
.mission-list { display: grid; gap: 0; }
.mission {
  display: grid;
  gap: .25rem .95rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.mission:first-child { border-top: 1px solid var(--line); }
@media (min-width: 640px) { .mission { grid-template-columns: 15rem 1fr; align-items: baseline; } }
.mission h3 { margin: 0; font-size: var(--step-1); }
.mission p { margin: 0; color: var(--ink-soft); }

/* Feature cards linking to the history pages */
.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.feature-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature-card-body { padding: 1.4rem clamp(1.2rem, 1rem + .6vw, 1.6rem) 1.6rem; }
.feature-card h3 { margin-bottom: .4rem; }
.feature-card p { color: var(--ink-soft); margin-bottom: 1rem; }
.feature-card .link-more { margin-top: auto; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 650;
  text-decoration: none;
  color: var(--brick);
}
.link-more::after { content: "→"; transition: transform .16s ease; }
.link-more:hover::after { transform: translateX(3px); }
.link-more:hover { text-decoration: underline; }

/* ---------- Pull quote ---------- */
.pullquote {
  margin: 0;
  padding: clamp(1.8rem, 1.2rem + 2vw, 3rem) 0;
  text-align: center;
}
.pullquote blockquote {
  margin: 0 auto;
  max-width: 34ch;
  font-family: var(--serif);
  font-size: var(--step-3);
  line-height: 1.25;
  color: var(--brick);
  letter-spacing: -.015em;
}
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-style: normal;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 700;
}

/* ---------- Letter / person layout ---------- */
.split {
  display: grid;
  gap: clamp(1.75rem, 1.1rem + 3vw, 3.25rem);
  align-items: start;
}
@media (min-width: 880px) {
  .split--media-right { grid-template-columns: 1.35fr .65fr; }
  .split--media-left { grid-template-columns: .65fr 1.35fr; }
  .split--media-left > .split-media { order: -1; }
  .split--even { grid-template-columns: 1fr 1fr; }
}
.split-media { margin: 0; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}
.split-media figcaption {
  margin-top: .65rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
  line-height: 1.45;
}
.signature {
  font-family: var(--serif);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--brick);
  margin-top: 1.4rem;
}
.signature span { display: block; font-size: var(--step--1); font-style: normal; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: .3rem; font-family: var(--sans); font-weight: 600; }

/* Team */
.team-grid { display: grid; gap: var(--gap); }
@media (min-width: 780px) { .team-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); } }
.person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 1rem + .9vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.person-photo {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
}
.person h3 { margin-bottom: .2rem; }
.person .role {
  font-size: var(--step--1);
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-ink);
  margin-bottom: .9rem;
}
.person .bio { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: var(--gap); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); } }
.gallery figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
/* Full image always visible — these photographs contain readable text
   (signatures, the 1884 clock instructions, the bell inscription). */
.gallery img { width: 100%; height: auto; }
.gallery figcaption {
  padding: .9rem 1.1rem 1.15rem;
  font-size: .94rem;
  line-height: 1.5;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
}

/* ---------- Spec list (organ stops) ---------- */
.specs { display: grid; gap: var(--gap); }
@media (min-width: 640px) { .specs { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); } }
.spec-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem 1.5rem;
}
.spec-group h3 {
  font-size: var(--step-0);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .85rem;
}
.spec-group ul { list-style: none; margin: 0; padding: 0; }
.spec-group li {
  padding: .3rem 0;
  font-size: .97rem;
  border-bottom: 1px dotted var(--line);
  color: var(--ink-soft);
}
.spec-group li:last-child { border-bottom: 0; }
.spec-group li b { font-family: var(--serif); color: var(--ink); font-weight: 600; margin-right: .35rem; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table caption { text-align: left; font-size: var(--step--1); color: var(--ink-soft); padding-bottom: .7rem; }
.hours-table th, .hours-table td { text-align: left; padding: .85rem .8rem; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.hours-table thead th {
  font-size: var(--step--1); letter-spacing: .11em; text-transform: uppercase;
  color: var(--gold-ink); border-bottom: 2px solid var(--gold-soft);
}
.hours-table tbody th { font-family: var(--serif); font-size: var(--step-0); font-weight: 600; white-space: nowrap; }
.hours-table td:nth-child(2) { font-variant-numeric: tabular-nums; font-weight: 650; white-space: nowrap; }
.hours-table .note { color: var(--ink-soft); font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 1.3rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--serif);
  font-size: var(--step-1);
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; font-weight: 400; color: var(--brick); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--brick); }
.faq .answer { padding: 0 0 1.3rem; color: var(--ink-soft); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Directions / map ---------- */
.map-figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.map-figure svg { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.map-figure figcaption { margin-top: .9rem; font-size: var(--step--1); color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--brick-deep);
  color: #f7eee6;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: var(--img-cta-texture);
  background-size: cover;
  background-position: center;
  opacity: .16;
  filter: saturate(.6);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #f0ded2; }
.cta-band .prose { margin-inline: auto; }
.cta-band a:not(.btn) { color: var(--gold-soft); }

/* ---------- Contact form ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.1rem + 1.2vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 650; font-size: .95rem; margin-bottom: .4rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .88rem; }
.field input, .field textarea {
  width: 100%;
  padding: .75rem .9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field input:hover, .field textarea:hover { border-color: var(--gold-soft); }
.field input:focus, .field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(140, 47, 42, .14);
}
.field textarea { min-height: 9.5rem; resize: vertical; }
/* Honeypot — hidden from people, reachable by bots (not display:none inline) */
.field--gotcha {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  margin-top: 1.1rem;
  padding: .95rem 1.1rem;
  border-radius: var(--radius);
  font-size: .96rem;
  line-height: 1.5;
}
.form-status[hidden] { display: none; }
.form-status--ok { background: #eef4ec; border: 1px solid #c3d8bd; color: #2c4a26; }
.form-status--err { background: var(--brick-tint); border: 1px solid #e2bdb8; color: var(--brick-deep); }
.form-status a { color: inherit; font-weight: 650; }
.cf-turnstile { margin-bottom: 1.1rem; min-height: 65px; }

/* ---------- Contact detail list ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list svg { color: var(--brick); flex: none; margin-top: .2rem; }
.contact-list .label {
  display: block; font-size: var(--step--1); letter-spacing: .11em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-ink); margin-bottom: .1rem;
}
.contact-list a { font-weight: 600; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  background: linear-gradient(160deg, var(--paper-warm), var(--paper) 70%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem);
}
.page-head h1 { margin-bottom: .3em; }
.page-head .lede { max-width: 60ch; margin-bottom: 0; }
.breadcrumb { font-size: var(--step--1); color: var(--ink-soft); margin: 0 0 .9rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--brick); text-decoration: underline; }
.breadcrumb span { padding: 0 .45rem; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: #cfc4b6;
  padding-top: var(--section);
  font-size: .96rem;
}
.footer-grid {
  display: grid;
  gap: var(--gap);
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h2, .site-footer h3 {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer a { color: #ede2d4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand {
  font-family: var(--serif);
  font-size: var(--step-1);
  color: #fff;
  margin-bottom: .35rem;
  display: block;
  line-height: 1.2;
}
.footer-motto { color: var(--gold-soft); font-style: italic; font-family: var(--serif); margin-bottom: 1.1rem; }
.footer-address { font-style: normal; line-height: 1.75; margin-bottom: 1.1rem; }
.footer-address strong { color: #ede2d4; font-weight: 650; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-logo {
  margin-top: 1.3rem;
  background: #fff;
  border-radius: var(--radius);
  padding: .55rem .7rem;
  width: max-content;
}
.footer-logo img { width: 118px; height: auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.35rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: #948a7d;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #b5a99a; text-decoration: underline; text-underline-offset: .16em; }
.footer-bottom a:hover { color: #fff; }
[data-ss-credit] { color: #8b8175; }

/* ---------- Print ---------- */
@media print {
  .site-header, .banner, .cta-band, .nav-toggle, .btn-row { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .site-footer { background: #fff; color: #000; }
}
