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

    :root {
      --white:   #faf8f5;
      --offwhite:#f2ede6;
      --stone1:  #e8e0d4;
      --stone2:  #c9bfb0;
      --stone3:  #9a8f80;
      --stone4:  #6b6055;
      --ink:     #1c1814;
      --ink2:    #2e2820;
      --terra:   #8b4a2f;
      --terra2:  #a55a3a;
      --warm:    #c17f4e;
      --display: 'Barlow Condensed', sans-serif;
      --prose:   'Crimson Pro', Georgia, serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--prose);
      font-size: 18px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ── ANIMATIONS ── */
    @keyframes up { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
    @keyframes in { from { opacity:0; } to { opacity:1; } }
    .au { animation: up 0.8s cubic-bezier(.16,1,.3,1) both; }
    .ai { animation: in 0.9s ease both; }
    .d1 { animation-delay:.1s; } .d2 { animation-delay:.22s; }
    .d3 { animation-delay:.36s; } .d4 { animation-delay:.5s; }

    /* ── SHELL ── */
    .shell { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

    /* ── HEADER ── */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--stone1);
    }
    .header-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2.5rem; height: 68px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
    .brand-logo { height: 38px; width: auto; }
    .brand-wordmark {
      font-family: var(--display); font-weight: 700; font-size: 1.1rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--ink); line-height: 1.15;
    }
    .brand-wordmark span {
      display: block; font-size: 0.6rem; font-weight: 400;
      letter-spacing: 0.18em; color: var(--stone3);
    }
    .site-nav { display: flex; align-items: center; }
    .site-nav a {
      font-family: var(--display); font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--stone4); text-decoration: none;
      padding: 0.5rem 0.9rem; position: relative; transition: color 0.2s;
    }
    .site-nav a::after {
      content: ''; position: absolute;
      bottom: 6px; left: 0.9rem; right: 0.9rem;
      height: 1.5px; background: var(--terra);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s cubic-bezier(.16,1,.3,1);
    }
    .site-nav a:hover { color: var(--ink); }
    .site-nav a:hover::after,
    .site-nav a[aria-current]::after { transform: scaleX(1); }
    .site-nav a[aria-current] { color: var(--ink); }
    .menu-toggle {
      display: none; background: none;
      border: 1.5px solid var(--stone2); color: var(--ink);
      font-family: var(--display); font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 0.4rem 0.9rem; cursor: pointer;
    }

    /* ── PAGE HERO ── */
    .page-hero {
      border-bottom: 1px solid var(--stone1);
      padding: 5rem 2.5rem 4.5rem;
      position: relative; overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 420px; height: 420px; border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(139,74,47,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: end;
      position: relative; z-index: 1;
    }
    .page-hero-breadcrumb {
      font-family: var(--display); font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--stone3); margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .page-hero-breadcrumb a { color: var(--stone3); text-decoration: none; transition: color 0.2s; }
    .page-hero-breadcrumb a:hover { color: var(--terra); }
    .page-hero-breadcrumb span { color: var(--stone2); }
    .page-hero-eyebrow {
      font-family: var(--display); font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .page-hero-eyebrow::before {
      content: ''; display: block;
      width: 28px; height: 1.5px; background: var(--terra); flex-shrink: 0;
    }
    .page-hero-h1 {
      font-family: var(--display);
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 800; text-transform: uppercase;
      line-height: 0.92; letter-spacing: -0.01em;
      color: var(--ink);
    }
    .page-hero-h1 .thin { font-weight: 300; color: var(--stone3); }
    .page-hero-lead {
      font-family: var(--prose); font-size: 1.1rem;
      color: var(--stone4); line-height: 1.85;
    }
    .page-hero-lead strong { color: var(--ink2); font-weight: 600; }

    /* ── SHARED ── */
    .section { padding: 5.5rem 0; }
    .section-alt {
      background: var(--offwhite);
      border-top: 1px solid var(--stone1);
      border-bottom: 1px solid var(--stone1);
    }
    .eyebrow {
      font-family: var(--display); font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .eyebrow::before {
      content: ''; width: 24px; height: 1.5px;
      background: var(--terra); flex-shrink: 0;
    }
    .display-h2 {
      font-family: var(--display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800; text-transform: uppercase;
      line-height: 0.95; letter-spacing: -0.01em;
      color: var(--ink); margin-bottom: 1.25rem;
    }
    .display-h2 .thin { font-weight: 300; color: var(--stone3); }

    /* ── IMAGE PLACEHOLDER ── */
    .img-ph {
      width: 100%;
      background: var(--stone1);
      border: 2px dashed var(--stone2);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.4rem; color: var(--stone3);
      font-family: sans-serif; font-size: 0.72rem; text-align: center;
      padding: 1.5rem;
    }
    .img-ph strong { font-size: 0.7rem; color: var(--stone4); font-weight: 600; }
    .img-ph span   { font-size: 0.64rem; color: var(--stone2); }

    /* ── PASTOR PROFILES ── */
    .pastors-intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: end; margin-bottom: 4rem;
    }
    .pastors-intro-note {
      font-family: var(--prose); font-size: 1rem;
      color: var(--stone4); line-height: 1.85;
      border-left: 3px solid var(--terra);
      padding-left: 1.5rem; font-style: italic;
    }

    /* Pastor card — large horizontal layout */
    .pastor-card {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 0;
      border: 1px solid var(--stone1);
      margin-bottom: 1.5rem;
      position: relative;
      transition: box-shadow 0.25s;
    }
    .pastor-card:last-child { margin-bottom: 0; }
    .pastor-card:hover { box-shadow: 0 6px 28px rgba(28,24,20,0.08); }
    .pastor-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; bottom: 0; width: 4px;
      background: var(--terra);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1);
    }
    .pastor-card:hover::before { transform: scaleY(1); }

    .pastor-photo {
      position: relative; overflow: hidden;
      background: var(--stone1);
      min-height: 320px;
    }
    .pastor-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }

    .pastor-body {
      padding: 2.5rem 2.5rem 2.5rem 2.75rem;
      display: flex; flex-direction: column; justify-content: center;
      border-left: 1px solid var(--stone1);
    }
    .pastor-role {
      font-family: var(--display); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 0.5rem;
    }
    .pastor-name {
      font-family: var(--display); font-size: 2.4rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.01em;
      color: var(--ink); line-height: 0.95; margin-bottom: 1.25rem;
    }
    .pastor-bio {
      font-family: var(--prose); font-size: 1rem;
      color: var(--stone4); line-height: 1.8;
    }

    /* ── HOW WE SHEPHERD ── */
    .shepherding-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: var(--stone1);
      border: 1px solid var(--stone1);
      margin-top: 3.5rem;
    }
    .shepherd-item {
      background: var(--offwhite);
      padding: 2.5rem 2.25rem;
      position: relative; transition: background 0.2s;
    }
    .shepherd-item:hover { background: #ece6dd; }
    .shepherd-item::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: var(--terra);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1);
    }
    .shepherd-item:hover::before { transform: scaleX(1); }
    .shepherd-num {
      font-family: var(--display); font-size: 3.5rem; font-weight: 800;
      line-height: 1; color: var(--stone1); margin-bottom: 0.5rem;
      transition: color 0.3s;
    }
    .shepherd-item:hover .shepherd-num { color: var(--terra); }
    .shepherd-item h3 {
      font-family: var(--display); font-size: 1.3rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--ink); margin-bottom: 0.75rem; line-height: 1.1;
    }
    .shepherd-item p {
      font-family: var(--prose); font-size: 0.95rem;
      color: var(--stone4); line-height: 1.75;
    }

    /* ── DEACON GRID ── */
    .deacons-intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: end; margin-bottom: 3.5rem;
    }
    .deacons-intro p {
      font-family: var(--prose); font-size: 1rem;
      color: var(--stone4); line-height: 1.85;
    }

    .deacons-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: var(--stone1);
      border: 1px solid var(--stone1);
    }
    .deacon-card {
      background: var(--white);
      padding: 0 0 1.75rem 0;
      display: flex; flex-direction: column;
      position: relative; transition: background 0.2s;
      overflow: hidden;
    }
    .deacon-card:hover { background: var(--offwhite); }
    .deacon-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--terra);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1);
    }
    .deacon-card:hover::after { transform: scaleX(1); }

    .deacon-photo {
      width: 100%; aspect-ratio: 1 / 1;
      background: var(--stone1); overflow: hidden;
      margin-bottom: 1.25rem;
    }
    .deacon-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .deacon-photo .img-ph {
      height: 100%; border: none; border-radius: 0;
    }

    .deacon-body { padding: 0 1.5rem; }
    .deacon-role {
      font-family: var(--display); font-size: 0.58rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 0.35rem;
    }
    .deacon-name {
      font-family: var(--display); font-size: 1.25rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.02em;
      color: var(--ink); line-height: 1.05;
    }

    /* open position card */
    .deacon-card-open {
      background: var(--offwhite);
      border: 2px dashed var(--stone2);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 2rem 1.5rem;
      min-height: 280px;
    }
    .deacon-card-open::after { display: none; }
    .deacon-card-open p {
      font-family: var(--display); font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--stone3); margin-top: 0.75rem; line-height: 1.5;
    }

    /* ── QUOTE BAND ── */
    .quote-band {
      background: var(--ink);
      padding: 5rem 2.5rem;
    }
    .quote-band-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: auto 1fr;
      gap: 3.5rem; align-items: start;
    }
    .q-mark {
      font-family: var(--display); font-size: 10rem; font-weight: 800;
      line-height: 0.75; color: rgba(255,255,255,0.06); user-select: none;
    }
    .q-text {
      font-family: var(--prose); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
      font-weight: 300; font-style: italic;
      color: rgba(255,255,255,0.82); line-height: 1.55; margin-bottom: 1.1rem;
    }
    .q-text em { font-style: normal; font-weight: 600; color: var(--warm); }
    .q-ref {
      font-family: var(--display); font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }

    /* ── NEXT STEPS ── */
    .cta-strip {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: var(--stone1); border: 1px solid var(--stone1);
    }
    .cta-strip-item {
      background: var(--white); padding: 2.5rem 2.25rem;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; transition: background 0.2s;
    }
    .cta-strip-item:hover { background: var(--offwhite); }
    .cta-strip-item:hover .cta-arrow { transform: translateX(5px); color: var(--terra); }
    .cta-tag {
      font-family: var(--display); font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 0.75rem;
    }
    .cta-strip-item h3 {
      font-family: var(--display); font-size: 1.4rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.02em;
      color: var(--ink); line-height: 1; margin-bottom: 0.65rem;
    }
    .cta-strip-item p {
      font-family: var(--prose); font-size: 0.9rem;
      color: var(--stone4); line-height: 1.7; flex: 1; margin-bottom: 1.25rem;
    }
    .cta-arrow {
      font-family: var(--display); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--ink); transition: transform 0.2s, color 0.2s; display: inline-block;
    }

    /* ── FOOTER ── */
    .site-footer { background: var(--ink); padding: 5rem 2.5rem 3rem; border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-top {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
      gap: 4rem; padding-bottom: 4rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: 0.8; }
    .footer-brand p {
      font-family: var(--prose); font-size: 0.9rem;
      color: rgba(255,255,255,0.4); margin-top: 1.25rem;
      line-height: 1.75; max-width: 280px;
    }
    .footer-col h4 {
      font-family: var(--display); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--warm); margin-bottom: 1.25rem;
    }
    .footer-col a, .footer-col address, .footer-col p {
      font-family: var(--prose); font-size: 0.9rem;
      color: rgba(255,255,255,0.45); text-decoration: none;
      line-height: 2; display: block; font-style: normal;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto; padding-top: 2.5rem;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p {
      font-family: var(--display); font-size: 0.62rem;
      letter-spacing: 0.12em; color: rgba(255,255,255,0.2); text-transform: uppercase;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .pastors-intro { grid-template-columns: 1fr; gap: 2rem; }
      .pastor-card { grid-template-columns: 220px 1fr; }
      .shepherding-grid { grid-template-columns: 1fr; }
      .deacons-intro { grid-template-columns: 1fr; gap: 1.5rem; }
      .deacons-grid { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .quote-band-inner { grid-template-columns: 1fr; gap: 1rem; }
      .q-mark { display: none; }
    }
    @media (max-width: 680px) {
      .pastor-card { grid-template-columns: 1fr; }
      .pastor-photo { min-height: 260px; }
      .pastor-body { border-left: none; border-top: 1px solid var(--stone1); padding: 2rem; }
      .deacons-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 500px) {
      .site-nav { display: none; }
      .menu-toggle { display: block; }
      .footer-top { grid-template-columns: 1fr; }
    }
