:root {
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --navy: #142f4c;
  --navy-soft: #294765;
  --gold: #b48a37;
  --gold-light: #d7bd7a;
  --ink: #273441;
  --line: rgba(180, 138, 55, .42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  min-height: 118px;
  padding: 14px clamp(24px, 4vw, 72px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 34px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { flex: 0 0 auto; }
.brand img { width: 180px; height: auto; }
.site-nav {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 24px);
  padding: 0 0 10px;
}
.site-nav a {
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .065em;
  white-space: nowrap;
  padding: 10px 0 7px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { border-color: var(--gold); }
.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}

.hero {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.hero-copy {
  padding: clamp(58px, 6vw, 94px) clamp(28px, 7vw, 112px) clamp(68px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3 { font-family: var(--serif); color: var(--navy); }
h1 {
  margin: 0;
  font-size: clamp(58px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 600;
}
h1 span { color: var(--gold); }
.hero-text {
  margin: 32px 0;
  max-width: 720px;
  color: var(--navy-soft);
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}
.button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 700;
}
.button-gold { color: #fff; background: var(--gold); }
.button-gold:hover, .button-gold:focus-visible { background: #967025; }
.hero-image {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  order: -1;
  width: 100%;
  padding: 0;
  background: var(--ivory);
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.legacy {
  padding: 104px clamp(28px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(180, 138, 55, .08), transparent 30%),
    linear-gradient(110deg, #f8f3e9 0%, #f8f3e9 49%, #efe7d7 49%, #f5efe4 100%);
}
.legacy::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 46px;
  width: 72px;
  height: 72px;
  opacity: .13;
  background:
    linear-gradient(var(--gold), var(--gold)) center/2px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center 29%/54% 2px no-repeat;
}
.legacy-copy {
  position: relative;
  padding: 8px 0 8px 30px;
  border-left: 4px solid var(--gold);
  z-index: 1;
}
.legacy h2, .actions h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 500;
}
.legacy-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 26px;
  background: var(--gold);
}
.legacy-copy > p:last-child { max-width: 540px; margin-bottom: 0; color: #405064; font-size: 18px; line-height: 1.75; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(180, 138, 55, .32);
  background: rgba(255, 253, 248, .6);
  box-shadow: 0 24px 55px rgba(20,47,76,.09);
  position: relative;
  z-index: 1;
}
.stats div {
  min-height: 176px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border: 1px solid rgba(180, 138, 55, .34);
  border-top: 4px solid var(--gold);
  background: var(--paper);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stats div:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(20,47,76,.09); }
.stats div::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-top: 1px solid rgba(180,138,55,.48);
  border-right: 1px solid rgba(180,138,55,.48);
}
.stats strong { display: block; color: var(--gold); font: 500 clamp(44px, 4vw, 64px)/1 var(--serif); }
.stats span { display: block; margin-top: 14px; color: var(--navy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; line-height: 1.5; }

.actions {
  padding: 86px clamp(28px, 7vw, 112px) 100px;
  background: var(--paper);
  text-align: center;
}
.actions h2 { margin-inline: auto; max-width: 800px; }
.action-grid { max-width: 1240px; margin: 54px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.action-card {
  min-height: 350px;
  padding: 30px 34px 0;
  border: 1px solid rgba(180, 138, 55, .52);
  border-top: 5px solid var(--gold);
  background: linear-gradient(145deg, #fffdf8 0%, #f5eedf 100%);
  text-align: left;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.action-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(180, 138, 55, .14);
  border-radius: 50%;
  right: -72px;
  top: -76px;
}
.action-card:hover, .action-card:focus-visible { transform: translateY(-7px); border-color: var(--gold); box-shadow: 0 20px 38px rgba(20,47,76,.14); }
.action-card-top { display: flex; align-items: center; justify-content: space-between; }
.action-number { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.action-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(180, 138, 55, .09);
  border: 1px solid rgba(180, 138, 55, .38);
}
.action-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.action-card h3 { margin: 34px 0 14px; font-size: 35px; line-height: 1.1; font-weight: 500; }
.action-card p { margin: 0 0 30px; max-width: 310px; color: #415065; }
.card-link {
  margin: auto -34px 0;
  padding: 18px 34px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s ease;
}
.card-link b { color: var(--gold-light); font-size: 18px; font-weight: 400; }
.action-card:hover .card-link, .action-card:focus-visible .card-link { background: #1d4165; }

.scripture { padding: 70px 24px; text-align: center; color: #fff; background: var(--navy); }
.scripture blockquote { max-width: 900px; margin: 0 auto 12px; font: italic 500 clamp(25px, 2.5vw, 39px)/1.35 var(--serif); }
.scripture cite { color: var(--gold-light); font-style: normal; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 700; }
footer { padding: 30px clamp(24px, 4vw, 72px); display: flex; align-items: center; gap: 22px; background: var(--paper); color: var(--navy); font-size: 13px; }
footer img { width: 145px; }

/* Message from Our Vicar */
.message-hero {
  position: relative;
  padding-bottom: 94px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.message-hero > img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  opacity: 1;
}
.message-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: var(--gold);
}
.message-hero-title {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 7vw, 112px);
  bottom: 34px;
  width: min(670px, calc(100% - 56px));
  padding: 36px 44px 32px;
  color: var(--navy);
  background: rgba(255,253,248,.96);
  border-left: 6px solid var(--gold);
  box-shadow: 0 22px 48px rgba(20,47,76,.18);
}
.message-hero-title h1 {
  color: var(--navy);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1;
  text-transform: none;
}
.message-hero-title > p:last-child { margin: 22px 0 0; color: var(--navy-soft); font-family: var(--serif); font-size: 18px; line-height: 1.5; }
.message-hero-title strong { color: var(--gold); font-size: 24px; font-weight: 500; }
.vicar-message {
  max-width: 1040px;
  margin: 0 auto;
  padding: 92px clamp(28px, 6vw, 86px) 112px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 15%, rgba(180,138,55,.08), transparent 18%),
    var(--paper);
  box-shadow: 0 0 0 1px rgba(180,138,55,.18);
}
.vicar-message::before {
  content: "";
  position: absolute;
  right: 35px;
  top: 45px;
  width: 72px;
  height: 72px;
  opacity: .13;
  background:
    linear-gradient(var(--gold), var(--gold)) center/2px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center 29%/54% 2px no-repeat;
}
.message-opening { text-align: center; }
.message-opening::after {
  content: "✦";
  display: block;
  margin: 27px auto 0;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: .45em;
}
.message-opening h2 { margin: 0 0 18px; font-size: clamp(38px, 4vw, 54px); font-weight: 500; }
.message-opening .grace { margin: 0 auto; color: var(--navy-soft); font: 21px/1.6 var(--serif); }
.message-scripture {
  margin: 54px 0;
  padding: 32px clamp(24px, 5vw, 52px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-align: center;
  font: italic 500 clamp(25px, 3vw, 36px)/1.45 var(--serif);
}
.message-scripture cite { display: block; margin-top: 15px; color: var(--gold); font: 700 11px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.message-body { max-width: 800px; margin: 0 auto; }
.message-body > p { margin: 0 0 28px; color: #344456; font: 19px/1.85 var(--serif); }
.message-lead { font-size: 21px !important; color: var(--navy) !important; }
.message-lead::first-letter {
  float: left;
  margin: 10px 12px 0 0;
  color: var(--gold);
  font: 500 68px/.72 var(--serif);
}
.sacred-callout {
  margin: 46px -54px !important;
  padding: 42px 54px 42px 78px;
  position: relative;
  color: #fff !important;
  background: var(--navy);
  font-size: 21px !important;
  line-height: 1.75 !important;
  box-shadow: 0 18px 40px rgba(20,47,76,.16);
}
.sacred-callout::before {
  content: "“";
  position: absolute;
  left: 25px;
  top: 16px;
  color: var(--gold-light);
  font: 72px/1 var(--serif);
}
.message-scripture.secondary {
  margin: 44px -30px;
  padding: 42px 36px;
  border: 1px solid rgba(180,138,55,.52);
  color: #fff;
  background: linear-gradient(135deg, #a77c2a, #c49a43);
  box-shadow: 0 16px 32px rgba(98,72,23,.15);
}
.message-scripture.secondary cite { color: #fff9e8; }
.closing-invitation {
  margin: 52px 0 0 !important;
  padding: 34px 42px;
  border-left: 5px solid var(--gold);
  color: var(--navy) !important;
  background: linear-gradient(90deg, rgba(180,138,55,.12), rgba(180,138,55,.025));
  font-size: 21px !important;
  line-height: 1.75 !important;
}
.closing-blessing {
  margin: 0 !important;
  padding: 38px 42px 44px;
  color: var(--navy) !important;
  text-align: center;
  font-size: 22px !important;
  font-style: italic !important;
  line-height: 1.7 !important;
  border-bottom: 1px solid var(--line);
}
.closing-blessing::before {
  content: "✦";
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font: 17px/1 var(--serif);
}
.vicar-signature {
  max-width: 800px;
  min-height: 330px;
  margin: 64px auto 0;
  padding: 0;
  border: 1px solid rgba(180,138,55,.65);
  border-top: 6px solid var(--gold);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 50px rgba(20,47,76,.2);
  overflow: hidden;
}
.signature-copy {
  flex: 1 1 58%;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.signature-copy::after {
  content: "";
  position: absolute;
  right: 0;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: rgba(215,189,122,.42);
}
.vicar-signature p { margin: 0 0 27px; color: #fff; font: italic 25px var(--serif); }
.vicar-signature strong { color: var(--gold-light); font: 500 35px/1.2 var(--serif); }
.vicar-signature span { margin-top: 6px; color: rgba(255,255,255,.88); font-size: 14px; letter-spacing: .02em; }
.signature-mark {
  flex: 1 1 42%;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(180,138,55,.15), transparent 62%),
    #173956;
}
.signature-mark img {
  width: 172px;
  padding: 9px;
  background: rgba(255,253,248,.94);
  border: 1px solid rgba(215,189,122,.45);
}
.signature-mark small {
  margin-top: 19px;
  color: var(--gold-light);
  font: italic 16px/1.4 var(--serif);
}
.signature-cross {
  width: 34px;
  height: 44px;
  margin-bottom: 20px;
  opacity: .8;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) center/2px 100% no-repeat,
    linear-gradient(90deg, var(--gold-light), var(--gold-light)) center 30%/70% 2px no-repeat;
}
.site-footer { padding: 30px clamp(24px, 4vw, 72px); display: flex; align-items: center; gap: 22px; background: var(--paper); color: var(--navy); font-size: 13px; }
.site-footer img { width: 145px; }

/* Our New Church */
.new-church-page { background: var(--paper); }
.new-church-hero {
  position: relative;
  padding-bottom: 86px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.new-church-hero > img { width: 100%; height: auto; display: block; }
.new-church-title {
  position: absolute;
  left: clamp(28px, 7vw, 112px);
  bottom: 30px;
  width: min(720px, calc(100% - 56px));
  padding: 34px 42px;
  border-left: 6px solid var(--gold);
  background: rgba(255,253,248,.97);
  box-shadow: 0 24px 52px rgba(20,47,76,.17);
}
.new-church-title h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  text-transform: none;
}
.new-church-title > p:last-child { margin: 20px 0 0; color: var(--navy-soft); font: 21px/1.5 var(--serif); }
.new-church-intro {
  max-width: 1080px;
  margin: 0 auto;
  padding: 112px 48px 102px;
  text-align: center;
  position: relative;
}
.new-church-intro h2,
.gallery-night-heading h2 {
  margin: 0 auto 28px;
  color: var(--navy);
  font: 500 clamp(43px, 5vw, 68px)/1.05 var(--serif);
}
.new-church-intro > p:last-child { max-width: 810px; margin: 0 auto; color: #405064; font: 20px/1.8 var(--serif); }
.intro-ornament {
  width: 80px;
  height: 54px;
  margin: 0 auto 28px;
  position: relative;
}
.intro-ornament::before,
.intro-ornament::after { content: ""; position: absolute; top: 22px; width: 28px; height: 1px; background: var(--gold); }
.intro-ornament::before { left: 0; }
.intro-ornament::after { right: 0; }
.intro-ornament span {
  position: absolute;
  left: 39px;
  top: 0;
  width: 2px;
  height: 52px;
  background: var(--gold);
}
.intro-ornament span::after { content: ""; position: absolute; width: 24px; height: 2px; background: var(--gold); left: -11px; top: 15px; }
.architecture-gallery { padding: 0 clamp(22px, 5vw, 80px) 108px; background: #f3ecdf; }
.architecture-gallery figure { margin: 0; overflow: hidden; background: #ded8cd; }
.architecture-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.architecture-gallery figure:hover img { transform: scale(1.018); }
.gallery-wide { max-width: 1420px; margin-inline: auto !important; border: 1px solid rgba(180,138,55,.35); box-shadow: 0 24px 60px rgba(20,47,76,.12); }
.gallery-day { aspect-ratio: 16/8.2; }
.gallery-pair {
  max-width: 1260px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.gallery-pair figure { aspect-ratio: 1/1.05; border: 1px solid rgba(180,138,55,.35); box-shadow: 0 18px 44px rgba(20,47,76,.1); }
.gallery-night-heading { padding: 112px 24px 54px; text-align: center; }
.gallery-night-heading > span { display: block; width: 80px; height: 1px; margin: 0 auto 24px; background: var(--gold); }
.gallery-night-heading h2 { margin-bottom: 0; }
.gallery-night-primary { aspect-ratio: 16/8.3; }
.gallery-night-secondary { margin-top: 34px !important; aspect-ratio: 16/7.8; }

/* Approved Our New Church page visual */
.new-church-reference-frame {
  width: 100%;
  aspect-ratio: 1536 / 940;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.new-church-reference-frame img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -5.46875%;
}
.new-church-responsive-content { display: none; }

/* Approved Message from Our Vicar page visual */
.vicar-reference-frame {
  width: 100%;
  aspect-ratio: 1536 / 928;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.vicar-reference-frame img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -6.25%;
}
.vicar-responsive-content { display: none; }

/* Approved Home page visual */
.home-reference-frame {
  width: 100%;
  aspect-ratio: 1536 / 929;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.home-reference-frame > img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -6.184896%;
}
.home-reference-link { position: absolute; z-index: 2; top: 83.85%; height: 4.95%; border-radius: 5px; }
.home-reference-link:focus-visible { outline: 4px solid #fff; outline-offset: -4px; box-shadow: 0 0 0 7px var(--gold); }
.home-reference-donate { left: 7.6%; width: 22.6%; }
.home-reference-sponsor { left: 38.2%; width: 23%; }
.home-reference-raffle { left: 69.2%; width: 22.4%; }
.home-responsive-content { display: none; }

/* Shared temporary-page design */
.preparation-page { background: var(--paper); }
.preparation-hero { position: relative; height: clamp(340px, 30vw, 450px); overflow: hidden; border-bottom: 1px solid var(--line); background: var(--ivory); }
.preparation-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.preparation-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,248,240,.99) 0%, rgba(251,248,240,.96) 24%, rgba(251,248,240,.52) 38%, rgba(251,248,240,0) 61%); }
.preparation-title { position: absolute; z-index: 1; left: clamp(34px, 7.5vw, 116px); top: 50%; width: min(430px, 35vw); text-align: center; transform: translateY(-50%); }
.preparation-title h1 { margin: 16px 0 18px; color: var(--navy); font-size: clamp(48px, 5.3vw, 78px); line-height: .96; letter-spacing: -.025em; text-transform: uppercase; }
.preparation-title p { margin: 20px 0 0; color: var(--navy); font: 25px/1.35 var(--serif); }
.preparation-cross { display: block; width: 120px; height: 42px; margin: 0 auto; position: relative; }
.preparation-cross::before { content: ""; position: absolute; left: 0; right: 0; top: 20px; height: 1px; background: linear-gradient(90deg, var(--gold) 0 35%, transparent 35% 65%, var(--gold) 65%); }
.preparation-cross::after { content: "†"; position: absolute; left: 50%; top: -10px; color: var(--gold-dark); font: 48px/1 var(--serif); transform: translateX(-50%); }
.preparation-flourish { display: block; width: 186px; height: 20px; margin: 0 auto; position: relative; }
.preparation-flourish::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 1px; background: linear-gradient(90deg, var(--gold) 0 42%, transparent 42% 58%, var(--gold) 58%); }
.preparation-flourish::after { content: "•"; position: absolute; left: 50%; top: -8px; color: var(--gold); font-size: 24px; transform: translateX(-50%); }
.preparation-message { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 72px 28px 92px; text-align: center; background: radial-gradient(circle at center, rgba(180,138,55,.06), transparent 42%), var(--paper); border-bottom: 1px solid var(--line); }
.preparation-message h2 { margin: 22px 0 20px; color: var(--navy); font-size: clamp(38px, 4vw, 58px); line-height: 1.05; text-transform: uppercase; }
.preparation-message > p { max-width: 720px; margin: 26px auto 22px; color: var(--navy); font: 21px/1.55 var(--serif); }
.preparation-message > strong { margin: 22px 0; color: var(--navy); font: 400 25px/1.3 var(--serif); }
.preparation-church-icon { width: 54px; height: 62px; margin: 8px auto; position: relative; border: 2px solid var(--gold-dark); border-top: 0; }
.preparation-church-icon::before { content: ""; position: absolute; left: 4px; top: -22px; width: 42px; height: 42px; border-left: 2px solid var(--gold-dark); border-top: 2px solid var(--gold-dark); transform: rotate(45deg); }
.preparation-church-icon::after { content: "†"; position: absolute; left: 50%; top: -53px; color: var(--gold-dark); font: 30px/1 var(--serif); transform: translateX(-50%); }

/* Donate page */
.donate-page { padding-bottom: 72px; background: linear-gradient(180deg, #fbf8f0, #f6f0e5); }
.donate-hero { position: relative; height: clamp(300px, 27vw, 420px); overflow: hidden; border-bottom: 1px solid var(--line); }
.donate-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.donate-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,248,240,.99) 0%, rgba(251,248,240,.96) 25%, rgba(251,248,240,.54) 39%, transparent 62%); }
.donate-hero-copy { position: absolute; z-index: 1; left: clamp(40px, 6.5vw, 100px); top: 50%; width: min(430px, 36vw); transform: translateY(-50%); text-align: center; color: var(--navy); }
.donate-hero-copy h1 { margin: 0; font-size: clamp(66px, 7vw, 104px); line-height: .9; text-transform: uppercase; }
.donate-ornament { display: block; width: 310px; max-width: 90%; height: 30px; margin: 12px auto 8px; position: relative; }
.donate-ornament::before { content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 1px; background: linear-gradient(90deg, var(--gold) 0 43%, transparent 43% 57%, var(--gold) 57%); }
.donate-ornament::after { content: "✚"; position: absolute; left: 50%; top: -4px; color: var(--gold-dark); font-size: 25px; transform: translateX(-50%); }
.donate-hero-copy p { margin: 2px 0 12px; font: 24px/1.45 var(--serif); }
.donate-hero-copy em { color: var(--gold-dark); }
.donate-hero-copy strong { display: block; color: var(--navy); font: italic 22px/1.4 var(--serif); }
.donate-methods, .pledge-section, .receipt-section { margin: 0 clamp(20px, 4vw, 60px); padding: 0 clamp(18px, 1.6vw, 28px) 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.34); }
.donate-methods { margin-top: 0; }
.donate-methods > h2, .pledge-section > h2, .receipt-section > h2 { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0; padding: 9px 18px; color: var(--navy); font-size: 20px; text-transform: uppercase; }
.donate-methods > h2::before, .donate-methods > h2::after, .pledge-section > h2::before, .pledge-section > h2::after, .receipt-section > h2::before, .receipt-section > h2::after { content: ""; height: 1px; flex: 1; background: var(--gold); opacity: .7; }
.donate-methods > h2::before, .pledge-section > h2::before, .receipt-section > h2::before { margin-right: 14px; }
.donate-methods > h2::after, .pledge-section > h2::after, .receipt-section > h2::after { margin-left: 14px; }
.donate-method-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 10px; }
.donate-method { min-height: 260px; padding: 18px 24px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.46); }
.donate-method-heading { display: flex; gap: 16px; align-items: flex-start; }
.donate-round-icon { flex: 0 0 66px; width: 66px; height: 66px; display: grid; place-items: center; color: #fff; background: var(--navy); border-radius: 50%; font: 30px/1 var(--serif); }
.donate-method h3 { margin: 6px 0 7px; color: var(--navy); font-size: 21px; text-transform: uppercase; }
.donate-method p { margin: 0; color: var(--navy); font: 15px/1.42 var(--serif); }
.donate-method strong { color: var(--navy); font: 700 16px/1.4 var(--serif); }
.zeffy-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 25px 0 20px; padding: 0; color: var(--navy); list-style: none; }
.zeffy-benefits li { padding-left: 25px; position: relative; font-size: 11px; font-weight: 700; line-height: 1.35; }
.zeffy-benefits li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--gold-dark); font-size: 17px; }
.donate-button { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 10px 16px; border: 0; border-radius: 4px; color: #fff; background: var(--navy); font: 700 15px/1.2 var(--serif); letter-spacing: .02em; text-align: center; text-transform: uppercase; cursor: pointer; }
.ach-request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 17px; }
.donate-method label, .pledge-form label { color: var(--navy); font-size: 12px; font-weight: 700; }
.donate-method label b, .pledge-form label b { color: #c04b48; }
.donate-method input, .pledge-form input, .pledge-form select, .pledge-form textarea { width: 100%; margin-top: 7px; padding: 10px 12px; color: var(--navy); background: rgba(255,255,255,.72); border: 1px solid #cfd3d5; border-radius: 4px; font: 14px/1.25 var(--serif); }
.field-wide { grid-column: 1 / -1; }
.mailing-details { margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); }
.mailing-details address { margin-top: 8px; color: var(--navy); font: normal 16px/1.55 var(--serif); }
.pledge-section { margin-top: 8px; padding-bottom: 20px; }
.pledge-section > p { margin: -2px 0 10px; color: var(--navy); text-align: center; font: 13px/1.4 var(--serif); }
.pledge-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 28px; padding: 0 18px; }
.pledge-address { grid-column: span 2; }
.pledge-comments, .pledge-submit, .pledge-security { grid-column: 1 / -1; }
.pledge-form textarea { min-height: 58px; resize: vertical; }
.pledge-submit { width: min(560px, 70%); margin: 0 auto; }
.pledge-security { display: block; color: var(--navy-soft); text-align: center; font: 12px/1.4 var(--serif); }
.receipt-section { margin-top: 8px; margin-bottom: 34px; padding-bottom: 20px; }
.receipt-section > p { margin: -2px 0 12px; color: var(--navy); text-align: center; font: 13px/1.4 var(--serif); }
.receipt-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 28px; padding: 0 18px; }
.receipt-form label { color: var(--navy); font-size: 12px; font-weight: 700; }
.receipt-form label b { color: #c04b48; }
.receipt-form input, .receipt-form select { width: 100%; margin-top: 7px; padding: 10px 12px; color: var(--navy); background: rgba(255,255,255,.72); border: 1px solid #cfd3d5; border-radius: 4px; font: 14px/1.25 var(--serif); }
.receipt-submit, .receipt-security, .receipt-form-status { grid-column: 1 / -1; }
.receipt-submit { width: min(560px, 70%); margin: 0 auto; }
.receipt-security { display: block; color: var(--navy-soft); text-align: center; font: 12px/1.4 var(--serif); }
.form-status { min-height: 1.4em; margin: 8px 0 0; color: var(--navy); text-align: center; font: 600 13px/1.4 var(--sans); }
.form-status.success { color: #28643d; }
.form-status.error { color: #9a2f2f; }
.campaign-form button[disabled] { opacity: .65; cursor: wait; }

/* Temporary campaign pages */
.temporary-page {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(560px, 1.45fr) minmax(390px, .8fr);
  background: var(--paper);
}
.temporary-image {
  display: flex;
  align-items: flex-start;
  padding-top: clamp(54px, 7vh, 82px);
  background: #eee7da;
  overflow: hidden;
}
.temporary-image img { width: 100%; height: auto; display: block; }
.temporary-content {
  padding: clamp(58px, 7vw, 112px) clamp(42px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 14%, rgba(180,138,55,.13), transparent 23%),
    var(--ivory);
}
.temporary-content::before {
  content: "";
  position: absolute;
  right: 44px;
  top: 40px;
  width: 56px;
  height: 72px;
  opacity: .18;
  background:
    linear-gradient(var(--gold), var(--gold)) center/2px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center 30%/70% 2px no-repeat;
}
.temporary-label {
  align-self: flex-start;
  margin-bottom: 26px;
  padding: 9px 14px;
  color: #fff;
  background: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
  font-weight: 700;
}
.temporary-content h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.04;
  text-transform: none;
}
.temporary-content > p:last-child { max-width: 470px; margin: 0; color: var(--navy-soft); font: 22px/1.65 var(--serif); }
.temporary-rule { width: 120px; height: 38px; margin: 34px 0 24px; position: relative; }
.temporary-rule::before { content: ""; position: absolute; top: 18px; left: 0; right: 0; height: 1px; background: var(--gold); }
.temporary-rule span { position: absolute; left: 58px; top: 9px; width: 2px; height: 20px; background: var(--gold); }

/* Church raffle */
.raffle-hero { position: relative; min-height: 610px; overflow: hidden; background: #e8e0d2; }
.raffle-hero > img { width: 100%; height: 610px; display: block; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.02); }
.raffle-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,42,70,.9) 0%, rgba(13,42,70,.72) 30%, rgba(13,42,70,.08) 66%, transparent 100%); }
.raffle-hero-copy { position: absolute; z-index: 1; left: clamp(38px, 8vw, 128px); top: 50%; width: min(560px, 46vw); transform: translateY(-50%); color: #fff; }
.raffle-hero-copy .eyebrow { color: #e2bb63; }
.raffle-hero-copy h1 { margin: 12px 0 22px; color: #fff; font-size: clamp(70px, 8vw, 126px); line-height: .82; letter-spacing: -.045em; }
.raffle-hero-copy > p:last-child { max-width: 500px; margin: 0; font: 22px/1.55 var(--serif); }
.raffle-prize { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 130px); align-items: center; padding: clamp(86px, 10vw, 150px) clamp(34px, 8vw, 128px); background: radial-gradient(circle at 8% 16%, rgba(180,138,55,.12), transparent 25%), var(--ivory); }
.raffle-kicker { display: inline-block; margin-bottom: 22px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.raffle-prize h2 { margin: 0; color: var(--navy); font-size: clamp(44px, 5.2vw, 78px); line-height: 1.02; }
.raffle-prize h2 strong { color: var(--gold); font-size: 1.24em; }
.raffle-ticket { min-height: 340px; display: grid; grid-template-columns: 120px 1fr; align-items: stretch; color: #fff; background: var(--navy); border: 1px solid rgba(180,138,55,.75); box-shadow: 0 28px 70px rgba(13,42,70,.2); position: relative; }
.raffle-ticket::before, .raffle-ticket::after { content: ""; position: absolute; right: -15px; width: 30px; height: 30px; border-radius: 50%; background: var(--ivory); }
.raffle-ticket::before { top: -15px; }
.raffle-ticket::after { bottom: -15px; }
.raffle-ticket-mark { display: grid; place-items: center; color: #e7c674; border-right: 1px dashed rgba(231,198,116,.55); font: 700 14px/1 var(--sans); letter-spacing: .25em; writing-mode: vertical-rl; transform: rotate(180deg); }
.raffle-ticket > div:last-child { padding: clamp(44px, 5vw, 72px); }
.raffle-ticket span { color: #e7c674; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.raffle-ticket h3 { margin: 24px 0 20px; color: #fff; font-size: clamp(32px, 3.4vw, 52px); line-height: 1.04; }
.raffle-ticket p { max-width: 520px; margin: 0; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.65; }
.raffle-purchase { display: grid; grid-template-columns: 90px .9fr 1.1fr; gap: clamp(30px, 5vw, 82px); align-items: start; padding: clamp(84px, 9vw, 134px) clamp(34px, 8vw, 128px); border-top: 1px solid var(--line); background: var(--paper); }
.raffle-step-number { color: var(--gold); font: 700 15px/1 var(--sans); letter-spacing: .2em; padding-top: 12px; }
.raffle-purchase h2 { max-width: 570px; margin: 14px 0 0; color: var(--navy); font-size: clamp(42px, 4vw, 62px); line-height: 1.07; }
.raffle-purchase-copy { padding-top: 40px; border-top: 1px solid var(--line); }
.raffle-purchase-copy p { margin: 0 0 18px; color: var(--navy-soft); font: 21px/1.62 var(--serif); }
.raffle-closing { padding: 78px 28px 86px; text-align: center; color: #fff; background: var(--navy); }
.raffle-cross { display: block; width: 52px; height: 58px; margin: 0 auto 28px; position: relative; }
.raffle-cross::before, .raffle-cross::after { content: ""; position: absolute; background: var(--gold); }
.raffle-cross::before { width: 2px; height: 58px; left: 25px; top: 0; }
.raffle-cross::after { width: 42px; height: 2px; left: 5px; top: 18px; }
.raffle-closing p { max-width: 840px; margin: 0 auto 24px; font: italic 30px/1.45 var(--serif); }
.raffle-closing strong { color: #e7c674; font-size: 11px; letter-spacing: .23em; text-transform: uppercase; }

/* Approved raffle-page visual */
.raffle-reference-page { background: var(--paper); }
.raffle-reference-frame {
  width: 100%;
  aspect-ratio: 1536 / 934;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.raffle-reference-frame img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -5.859375%;
}
.raffle-mobile-details { display: none; }

@media (max-width: 820px) {
  .donate-hero { height: 540px; }
  .donate-hero > img { object-position: 62% center; }
  .donate-hero::after { background: linear-gradient(180deg, rgba(251,248,240,.94), rgba(251,248,240,.58) 56%, rgba(251,248,240,.08)); }
  .donate-hero-copy { left: 24px; right: 24px; top: 43%; width: auto; }
  .donate-hero-copy h1 { font-size: clamp(62px, 19vw, 88px); }
  .donate-methods, .pledge-section, .receipt-section { margin-inline: 14px; padding-inline: 10px; }
  .donate-methods > h2, .pledge-section > h2, .receipt-section > h2 { font-size: 17px; }
  .donate-methods > h2::before, .donate-methods > h2::after, .pledge-section > h2::before, .pledge-section > h2::after, .receipt-section > h2::before, .receipt-section > h2::after { display: none; }
  .donate-method-grid { grid-template-columns: 1fr; }
  .donate-method { min-height: auto; padding: 24px 20px; }
  .pledge-form { grid-template-columns: 1fr; padding-inline: 10px; }
  .pledge-address, .pledge-comments, .pledge-submit, .pledge-security { grid-column: auto; }
  .pledge-submit { width: 100%; }
  .receipt-form { grid-template-columns: 1fr; padding-inline: 10px; }
  .receipt-submit, .receipt-security, .receipt-form-status { grid-column: auto; }
  .receipt-submit { width: 100%; }
  .preparation-hero { height: 560px; }
  .preparation-hero > img { object-position: 60% center; }
  .preparation-hero::after { background: linear-gradient(180deg, rgba(251,248,240,.94), rgba(251,248,240,.6) 55%, rgba(251,248,240,.08)); }
  .preparation-title { left: 24px; right: 24px; top: 45%; width: auto; }
  .preparation-title h1 { font-size: clamp(46px, 14vw, 68px); }
  .preparation-title p { font-size: 21px; }
  .preparation-message { min-height: 600px; padding-inline: 24px; }
  .preparation-message h2 { font-size: clamp(36px, 10vw, 50px); }
  .home-reference-frame { display: none; }
  .home-responsive-content { display: block; }
  .vicar-reference-frame { display: none; }
  .vicar-responsive-content { display: block; }
  .new-church-reference-frame { display: none; }
  .new-church-responsive-content { display: block; }
  .new-church-hero { padding-bottom: 150px; }
  .new-church-title { right: 28px; bottom: 30px; padding: 28px; }
  .new-church-intro { padding: 82px 28px 76px; }
  .architecture-gallery { padding-inline: 18px; }
  .gallery-pair { grid-template-columns: 1fr; gap: 22px; margin-top: 22px; }
  .gallery-night-heading { padding-top: 82px; }
  .gallery-night-secondary { margin-top: 22px !important; }
  .temporary-page { grid-template-columns: 1fr; }
  .temporary-image { min-height: 280px; padding-top: 0; }
  .temporary-content { min-height: 540px; border-left: 0; border-top: 1px solid var(--line); }
  .raffle-hero, .raffle-hero > img { min-height: 500px; height: 500px; }
  .raffle-hero-copy { width: min(560px, 72vw); }
  .raffle-prize { grid-template-columns: 1fr; }
  .raffle-purchase { grid-template-columns: 52px 1fr; }
  .raffle-purchase-copy { grid-column: 2; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-header { min-height: 76px; padding-bottom: 14px; flex-wrap: nowrap; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 20px 28px 28px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; }
}
@media (max-width: 820px) {
  .brand img { width: 155px; }
  .hero-copy { padding: 56px 28px 70px; }
  .legacy { grid-template-columns: 1fr; padding-block: 70px; }
  .legacy { background: linear-gradient(180deg, #f8f3e9 0%, #f8f3e9 46%, #f1e9da 46%, #f6f0e5 100%); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .action-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .message-hero > img { min-height: 420px; object-fit: cover; }
  .message-hero { padding-bottom: 150px; }
  .message-hero-title { right: 28px; bottom: 34px; padding: 30px 28px; }
  .vicar-message { padding-block: 70px 84px; }
  .sacred-callout { margin-inline: 0 !important; padding: 34px 30px 34px 58px; }
  .message-scripture.secondary { margin-inline: 0; }
  .vicar-signature { flex-direction: column; }
  .signature-copy::after { display: none; }
  .signature-mark { border-top: 1px solid rgba(215,189,122,.42); }
  .raffle-hero, .raffle-hero > img { min-height: 540px; height: 540px; }
  .raffle-hero > img { object-position: 60% center; }
  .raffle-hero::after { background: linear-gradient(90deg, rgba(13,42,70,.88), rgba(13,42,70,.42) 72%, rgba(13,42,70,.12)); }
  .raffle-hero-copy { left: 28px; width: calc(100% - 56px); }
  .raffle-hero-copy h1 { font-size: clamp(62px, 20vw, 88px); }
  .raffle-hero-copy > p:last-child { font-size: 19px; }
  .raffle-prize { padding: 76px 24px; gap: 52px; }
  .raffle-ticket { grid-template-columns: 72px 1fr; min-height: 320px; }
  .raffle-ticket > div:last-child { padding: 36px 28px; }
  .raffle-purchase { grid-template-columns: 1fr; padding: 72px 28px; }
  .raffle-step-number, .raffle-purchase-copy { grid-column: auto; }
  .raffle-purchase-copy { padding-top: 28px; }
  .raffle-closing p { font-size: 24px; }
  .raffle-reference-frame { display: none; }
  .raffle-mobile-details { display: block; padding: 72px 26px 84px; background: linear-gradient(180deg, #fbf8f0, #f3ecdf); }
  .raffle-mobile-details h1 { margin: 10px 0 36px; color: var(--navy); font-size: clamp(50px, 15vw, 72px); line-height: .94; }
  .raffle-mobile-details h2 { margin: 52px 0 20px; color: var(--navy); font-size: 34px; }
  .raffle-mobile-facts { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: rgba(255,255,255,.48); }
  .raffle-mobile-facts p { margin: 0; padding: 24px 18px; }
  .raffle-mobile-facts p + p { border-left: 1px solid var(--line); }
  .raffle-mobile-facts span { display: block; margin-bottom: 8px; color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .raffle-mobile-facts strong { color: var(--navy); font: 700 21px/1.25 var(--serif); }
  .raffle-mobile-details ol { margin: 0; padding: 0; list-style: none; counter-reset: raffle-prizes; }
  .raffle-mobile-details ol > li { counter-increment: raffle-prizes; padding: 20px 8px 20px 52px; position: relative; color: var(--navy-soft); font: 19px/1.45 var(--serif); border-top: 1px solid var(--line); }
  .raffle-mobile-details ol > li::before { content: counter(raffle-prizes, decimal-leading-zero); position: absolute; left: 4px; top: 23px; color: var(--gold); font: 800 11px/1 var(--sans); letter-spacing: .1em; }
  .raffle-mobile-note { margin-top: 48px; padding: 8px 26px 28px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.52); }
  .raffle-mobile-note h2 { margin-top: 22px; }
  .raffle-mobile-note p { color: var(--navy-soft); font: 18px/1.6 var(--serif); }
  .raffle-mobile-contacts { margin: 22px 0 26px; padding: 0; list-style: none; }
  .raffle-mobile-contacts li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; color: var(--navy); font: 600 14px/1.35 var(--sans); border-top: 1px solid var(--line); }
  .raffle-mobile-contacts a { color: var(--gold-dark); white-space: nowrap; }
}
@media (max-width: 480px) {
  h1 { font-size: 50px; }
  .stats { grid-template-columns: 1fr; }
  .legacy-copy { padding-left: 20px; }
}
