:root {
  --plum-950: #1c0b2f;
  --plum-900: #2b124c;
  --plum-800: #3f1b63;
  --plum-700: #5a276f;
  --rose-700: #873f65;
  --rose-600: #aa527a;
  --rose-200: #ebc8d7;
  --rose-100: #f7e7ed;
  --cream: #fffaf4;
  --cream-deep: #f7efe4;
  --lavender: #eee8f6;
  --gold: #efc34f;
  --gold-deep: #ca9625;
  --ink: #251f29;
  --ink-soft: #665d69;
  --white: #ffffff;
  --line: rgba(43, 18, 76, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 14px 36px rgba(43, 18, 76, 0.09);
  --shadow-lg: 0 34px 90px rgba(28, 11, 47, 0.25);
  --radius-sm: 0.85rem;
  --radius-md: 1.4rem;
  --radius-lg: 2.25rem;
  --container: 76rem;
  --section-space: clamp(5rem, 8.5vw, 9rem);
  --display: clamp(3.7rem, 7.2vw, 7.1rem);
  --heading: clamp(2.65rem, 5vw, 5rem);
  --subheading: clamp(1.35rem, 2vw, 1.85rem);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 1.75rem;
  font-size: var(--display);
}

h1 em {
  color: var(--gold);
  font-weight: 500;
}

h2 {
  margin-bottom: 1.6rem;
  font-size: var(--heading);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: var(--subheading);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--plum-950);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 244, 0.91);
  backdrop-filter: blur(20px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(43, 18, 76, 0.07);
}

.header-inner {
  display: flex;
  min-height: 5.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--plum-900);
  text-decoration: none;
}

.brand::before {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 20%;
  background: linear-gradient(145deg, var(--plum-900), var(--rose-700));
  color: var(--gold);
  content: "T";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(43, 18, 76, 0.18);
}

.brand img {
  display: none;
}

.brand-name {
  max-width: 12rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.45vw, 1.45rem);
}

.site-nav a {
  padding-block: 0.55rem;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover {
  border-color: var(--rose-600);
  color: var(--rose-700);
}

.nav-cta {
  padding: 0.72rem 1.15rem !important;
  border-radius: 999px;
  background: var(--plum-900);
  color: var(--white);
  box-shadow: 0 9px 24px rgba(43, 18, 76, 0.15);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 2px auto;
  border-radius: 999px;
  background: var(--plum-900);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--rose-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--plum-950);
  box-shadow: 0 16px 34px rgba(239, 195, 79, 0.2);
}

.button-gold:hover {
  background: #f7d16a;
  box-shadow: 0 20px 42px rgba(239, 195, 79, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero .button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--plum-900);
}

.hero .button-ghost:hover {
  border-color: var(--rose-600);
  background: var(--rose-100);
}

.button-plum {
  background: var(--plum-900);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(43, 18, 76, 0.18);
}

.button-plum:hover {
  background: var(--plum-800);
}

.button-outline {
  border-color: var(--line);
  color: var(--plum-900);
}

.button-outline:hover {
  border-color: var(--rose-600);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--plum-900);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration-color: var(--gold-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.text-link-light {
  color: var(--white);
  text-decoration-color: var(--gold);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 5.6rem);
  padding-block: clamp(4.6rem, 7vw, 7rem) 2.5rem;
  background: var(--white);
  color: var(--ink);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -7rem;
  width: 18rem;
  height: 54%;
  border: 2px solid rgba(90, 39, 111, 0.16);
  border-radius: 9rem 0 0 9rem;
  content: "";
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-one {
  top: -20rem;
  right: -15rem;
  width: 48rem;
  height: 48rem;
  background: radial-gradient(circle, rgba(90, 39, 111, 0.14), transparent 68%);
}

.hero-orb-two {
  bottom: -19rem;
  left: -11rem;
  width: 39rem;
  height: 39rem;
  background: radial-gradient(circle, rgba(239, 195, 79, 0.24), transparent 68%);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.78fr);
  gap: clamp(3rem, 7vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.hero-logo {
  width: clamp(16rem, 27vw, 24rem);
  height: auto;
  margin-bottom: 1.35rem;
}

.hero h1 {
  color: var(--plum-900);
}

.hero h1 em {
  color: var(--rose-600);
}

.hero .eyebrow-light {
  color: var(--plum-700);
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: 2.25rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.8rem, 6vw, 5.5rem);
}

.hero-signature span {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-signature p {
  margin: 0;
  color: var(--rose-700);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: min(100%, 31rem);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  top: 5%;
  right: -1.6rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-visual::after {
  position: absolute;
  bottom: 6%;
  left: -2.2rem;
  width: 7rem;
  height: 16rem;
  border-radius: 3.5rem;
  background: var(--plum-900);
  content: "";
}

.portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 0.77;
  border: 1px solid rgba(90, 39, 111, 0.1);
  border-radius: 50% 50% 2rem 2rem;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(43, 18, 76, 0.14);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90, 39, 111, 0.06), transparent 24%);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.96) contrast(1.01);
}

.hero-note {
  position: absolute;
  right: -2.5rem;
  bottom: 3.2rem;
  width: min(18rem, 70%);
  padding: 1.25rem 1.4rem 1.3rem 3.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 250, 244, 0.94);
  color: var(--plum-950);
  box-shadow: 0 20px 45px rgba(17, 5, 29, 0.28);
  backdrop-filter: blur(10px);
}

.hero-note span {
  position: absolute;
  top: 0.55rem;
  left: 1rem;
  color: var(--rose-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.hero-note p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-scroll-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  color: rgba(43, 18, 76, 0.52);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-note span {
  width: 3rem;
  height: 1px;
  background: currentColor;
}

.hero-scroll-note p {
  margin: 0;
}

.impact-strip {
  position: relative;
  z-index: 3;
  background: var(--gold);
  color: var(--plum-950);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-grid article {
  display: grid;
  min-height: 9.2rem;
  align-items: center;
  padding: 1.6rem clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-left: 1px solid rgba(43, 18, 76, 0.18);
}

.impact-grid article:last-child {
  border-right: 1px solid rgba(43, 18, 76, 0.18);
}

.impact-grid article > span {
  color: rgba(43, 18, 76, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.impact-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.impact-grid p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(235, 200, 215, 0.45), transparent 25rem),
    var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 8vw, 8rem);
}

.about-visual {
  position: relative;
  width: min(100%, 38rem);
}

.about-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--rose-100);
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  right: -2rem;
  bottom: -2rem;
  width: 70%;
  height: 72%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  content: "";
}

.about-stamp {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: grid;
  width: 8.5rem;
  height: 8.5rem;
  place-content: center;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--plum-900);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-stamp strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.about-stamp span {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 42rem;
}

.section-copy > p:not(.eyebrow, .lead) {
  color: var(--ink-soft);
}

.section-copy .lead {
  color: var(--plum-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.section-copy .text-link {
  margin-top: 0.75rem;
}

.ministry {
  position: relative;
  overflow: hidden;
  background: var(--plum-950);
  color: var(--white);
}

.ministry::before {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(239, 195, 79, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(239, 195, 79, 0.025),
    0 0 0 8rem rgba(239, 195, 79, 0.02);
  content: "";
}

.section-heading {
  position: relative;
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.55fr);
  gap: 3rem;
}

.section-heading h2 {
  max-width: 48rem;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.64);
}

.ministry-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ministry-card {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.ministry-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-4px);
}

.card-number {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.75rem;
  font-weight: 800;
}

.ministry-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 5.8rem;
  place-items: center;
  border: 1px solid rgba(239, 195, 79, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.15rem;
}

.ministry-card h3 {
  max-width: 12rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.ministry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.credentials {
  margin-top: clamp(3.5rem, 6vw, 6rem);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.credential-grid article {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(239, 195, 79, 0.45);
}

.credential-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credential-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.book {
  position: relative;
  overflow: hidden;
  background: var(--rose-100);
}

.book-shape {
  position: absolute;
  top: -14rem;
  right: -6rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.book-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.book-cover {
  position: relative;
  width: min(100%, 27rem);
  justify-self: center;
  perspective: 900px;
}

.book-cover-glow {
  position: absolute;
  inset: 10% -8% -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 39, 111, 0.24), transparent 70%);
  filter: blur(22px);
}

.book-cover img {
  position: relative;
  width: auto;
  max-width: 100%;
  height: min(50vw, 38rem);
  margin-inline: auto;
  border-radius: 0.35rem 0.9rem 0.9rem 0.35rem;
  object-fit: contain;
  box-shadow: 30px 36px 58px rgba(43, 18, 76, 0.25);
}

.book-copy {
  position: relative;
  max-width: 42rem;
}

.book-copy h2 {
  color: var(--plum-900);
}

.book-subtitle {
  max-width: 38rem;
  color: var(--rose-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.book-copy > p:not(.eyebrow, .book-subtitle) {
  color: var(--ink-soft);
}

.book-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block: 1.8rem 2.2rem;
}

.book-points span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(43, 18, 76, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--plum-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events {
  background: var(--cream);
}

.events-heading > p {
  color: var(--ink-soft);
}

.events-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(25rem, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

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

.event-card {
  display: grid;
  padding-block: 1.75rem;
  grid-template-columns: 5rem 1fr;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.event-card time {
  display: grid;
  align-content: center;
  min-height: 5rem;
  border-radius: 1rem;
  background: var(--plum-900);
  color: var(--white);
  line-height: 1;
  text-align: center;
}

.event-card time span {
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card time strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.event-card h3 {
  color: var(--plum-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.event-card p,
.event-card address {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.event-card address {
  font-style: normal;
}

.event-card .event-label {
  margin-bottom: 0.45rem;
  color: var(--rose-700);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-gallery {
  display: grid;
  min-height: 0;
  gap: 1.5rem;
}

.event-gallery-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.event-gallery-link:focus-visible {
  outline-offset: 0.35rem;
}

.event-gallery-main,
.event-gallery-float {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.facebook {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(170, 82, 122, 0.32), transparent 25rem),
    var(--plum-900);
  color: var(--white);
}

.facebook::after {
  position: absolute;
  right: -12rem;
  bottom: -20rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(239, 195, 79, 0.22);
  border-radius: 50%;
  content: "";
}

.social-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(22rem, 0.84fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.social-collage {
  position: relative;
  min-height: 39rem;
}

.social-photo-main,
.social-photo-secondary {
  position: absolute;
  width: min(68%, 23rem);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(17, 5, 29, 0.35);
  object-fit: cover;
}

.social-photo-main {
  top: 0;
  left: 0;
  height: 31rem;
}

.social-photo-secondary {
  right: 0;
  bottom: 0;
  height: 27rem;
  border: 0.6rem solid var(--plum-900);
}

.social-badge {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 0.35rem solid var(--plum-900);
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum-900);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.social-post {
  max-width: 39rem;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.post-avatar {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum-900);
  font-size: 0.75rem;
  font-weight: 900;
}

.post-head strong {
  font-size: 0.95rem;
}

.post-head p {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.social-post blockquote {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3.35rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.social-post > p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.64);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.3rem;
  margin-top: 2rem;
}

.request {
  background:
    linear-gradient(rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.92)),
    radial-gradient(circle at center, var(--rose-200), transparent);
}

.request-shell {
  display: grid;
  align-items: center;
  padding: clamp(2.2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(235, 200, 215, 0.6), transparent 24rem),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.request-copy h2 {
  max-width: 47rem;
  color: var(--plum-900);
}

.request-copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.request-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-steps li {
  display: grid;
  padding-block: 1.35rem;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.request-steps li:first-child {
  border-top: 1px solid var(--line);
}

.request-steps li > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.request-steps strong {
  color: var(--plum-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.request-steps p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.closing-quote {
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--gold);
  color: var(--plum-950);
  text-align: center;
}

.closing-quote .container {
  position: relative;
}

.closing-quote span {
  position: absolute;
  top: -3.2rem;
  left: 50%;
  color: rgba(43, 18, 76, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12rem;
  line-height: 1;
  transform: translateX(-50%);
}

.closing-quote p {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.site-footer {
  padding-block: 4.5rem 2rem;
  background: var(--plum-950);
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 3.5rem;
  grid-template-columns: 1.5fr 0.6fr 0.6fr;
  gap: 3rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  align-self: start;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  text-decoration: none;
}

.footer-brand::before {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  margin-right: 1rem;
  place-items: center;
  border-radius: 50% 50% 50% 20%;
  background: var(--gold);
  color: var(--plum-950);
  content: "T";
  font-size: 1.7rem;
  font-weight: 700;
}

.footer-brand::after {
  max-width: 15rem;
  content: "Teresa White Ministries";
}

.footer-brand img {
  display: none;
}

.footer-label {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top nav {
  display: grid;
  gap: 0.6rem;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 70rem) {
  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
    gap: 3.5rem;
  }

  .hero-note {
    right: -0.75rem;
  }

  .ministry-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ministry-card {
    min-height: 21rem;
  }

  .ministry-icon {
    margin-bottom: 4rem;
  }

  .events-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(21rem, 1fr);
    gap: 3rem;
  }

}

@media (max-width: 58rem) {
  html {
    scroll-padding-top: 5.2rem;
  }

  .header-inner {
    min-height: 5.2rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    left: 1.5rem;
    display: grid;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    background: var(--cream);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 180ms ease,
      padding 180ms ease;
  }

  .site-nav.is-open {
    max-height: 32rem;
    padding: 1rem;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
    border: 0 !important;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 0.25rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
  }

  .hero-grid,
  .about-grid,
  .book-grid,
  .events-layout,
  .social-grid,
  .request-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-visual {
    width: min(88%, 34rem);
    margin-top: 1rem;
    justify-self: center;
  }

  .hero-note {
    right: -2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid article {
    min-height: 7.5rem;
    border-right: 1px solid rgba(43, 18, 76, 0.18);
    border-bottom: 1px solid rgba(43, 18, 76, 0.18);
  }

  .about-visual {
    justify-self: center;
  }

  .about-grid {
    gap: 5rem;
  }

  .section-copy {
    max-width: none;
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading > p {
    max-width: 36rem;
  }

  .book-grid {
    gap: 5rem;
  }

  .book-copy {
    max-width: 46rem;
  }

  .events-layout {
    gap: 4rem;
  }

  .event-list {
    max-width: 44rem;
  }

  .event-gallery {
    width: min(100%, 42rem);
    margin-inline: auto;
  }

  .social-grid {
    gap: 5rem;
  }

  .social-collage {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .social-post {
    max-width: 46rem;
  }

  .request-shell {
    gap: 3.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 42rem) {
  :root {
    --section-space: 4.8rem;
    --display: clamp(3.25rem, 15vw, 5.2rem);
    --heading: clamp(2.45rem, 11vw, 3.8rem);
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .brand-name {
    max-width: 9.5rem;
    font-size: 0.82rem;
  }

  .brand::before {
    width: 2.55rem;
    height: 2.55rem;
  }

  .site-nav {
    right: 1rem;
    left: 1rem;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-signature {
    margin-top: 2.8rem;
  }

  .hero-visual {
    width: 95%;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 90%;
    margin: -2.5rem auto 0;
  }

  .hero-scroll-note {
    display: none;
  }

  .impact-grid article {
    padding-inline: 1rem;
  }

  .about-visual {
    width: 92%;
  }

  .about-stamp {
    bottom: -1rem;
    left: -1rem;
    width: 7.5rem;
    height: 7.5rem;
  }

  .ministry-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .ministry-card {
    min-height: auto;
  }

  .ministry-icon {
    margin-bottom: 3.5rem;
  }

  .book-cover {
    width: 80%;
  }

  .book-cover img {
    width: 100%;
    height: auto;
  }

  .book-points {
    gap: 0.45rem;
  }

  .event-card {
    grid-template-columns: 4.3rem 1fr;
    gap: 1rem;
  }

  .event-card time {
    min-height: 4.5rem;
  }

  .social-collage {
    min-height: 31rem;
  }

  .social-photo-main {
    width: 66%;
    height: 25rem;
  }

  .social-photo-secondary {
    width: 63%;
    height: 21rem;
    border-width: 0.4rem;
  }

  .social-badge {
    right: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .social-post blockquote {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .social-actions {
    display: grid;
  }

  .request-shell {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  .request-steps li {
    grid-template-columns: 2.4rem 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
