/* ===== styles.css ===== */
  /* =========================================================
     MOBILE-FIRST: Base styles target small screens (< 640px).
     Larger screens layer in via min-width queries.
     ========================================================= */

  :root {
    --gold: #C9A84C;
    --gold-bright: #e3b72d;
    --charcoal: #1A1A1A;
    --grey: #999999;
    --grey-soft: #d4d4d4;
    --black: #000000;
    --white: #FFFFFF;
    --cream: #f6f2ea;
    --cream-deep: #ede5d4;

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Lora', 'Georgia', serif;

    --max: 1280px;
    --gutter: 1.25rem;            /* mobile gutter */
    --section-pad: 4rem;          /* mobile section padding */
    --tap: 44px;                  /* min tap target */
  }

  *, *::before, *::after { box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
  }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
  }
  body.menu-open { overflow: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

  /* ---------- TYPOGRAPHY (mobile baseline) ---------- */
  .display {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 400;
  }
  .eyebrow {
    font-family: var(--font-display);
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .lede {
    font-size: 1.05rem;
    color: #2a2a2a;
    line-height: 1.6;
  }

  /* ---------- LAYOUT ---------- */
  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  section { position: relative; }
  .section { padding: var(--section-pad) 0; }
  .section--dark { background: var(--charcoal); color: var(--cream); }
  .section--black { background: var(--black); color: var(--cream); }
  .section--cream { background: var(--cream); color: var(--charcoal); }
  .section--white { background: var(--white); color: var(--charcoal); }
  .section--dark .eyebrow,
  .section--black .eyebrow { color: var(--gold); }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.4rem;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 0;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
    line-height: 1;
    min-height: var(--tap);
  }
  .btn-primary { background: var(--gold); color: var(--charcoal); }
  .btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
  }
  .section--dark .btn-ghost,
  .section--black .btn-ghost { color: var(--cream); border-color: var(--cream); }
  .btn-ghost:hover { background: var(--charcoal); color: var(--cream); }
  .section--dark .btn-ghost:hover { background: var(--cream); color: var(--charcoal); }
  .btn .arrow { transition: transform 0.25s ease; }
  .btn:hover .arrow { transform: translateX(4px); }
  .micro {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--grey);
    margin-top: 0.75rem;
    line-height: 1.5;
  }
  .section--dark .micro,
  .section--black .micro { color: var(--grey-soft); opacity: 0.8; }
  .text-link {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: color 0.25s ease;
    display: inline-block;
    min-height: var(--tap);
    line-height: calc(var(--tap) - 8px);
  }
  .text-link:hover { color: var(--gold); }

  /* ---------- NAV ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.85rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-brand {
    font-family: var(--font-display);
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    color: var(--cream);
    white-space: nowrap;
  }
  .nav-brand span { color: var(--gold); }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-cta {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    text-transform: uppercase;
    transition: background 0.25s ease;
    min-height: var(--tap);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-bright); }
  .nav-cta .full { display: none; }
  .nav-cta .short { display: inline; }

  /* HAMBURGER */
  .hamburger {
    width: var(--tap);
    height: var(--tap);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    position: relative;
    z-index: 101;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.35s cubic-bezier(.6,.05,.28,.95), opacity 0.25s ease, background 0.3s ease;
    transform-origin: center;
  }
  .hamburger:hover span { background: var(--gold); }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

  /* OVERLAY MENU */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 5rem var(--gutter) 2rem;
    overflow-y: auto;
  }
  .menu-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05), transparent 50%);
    pointer-events: none;
  }
  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .menu-inner {
    position: relative;
    margin: auto 0;
    width: 100%;
    max-width: 50rem;
  }
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .menu-list li {
    border-bottom: 1px solid rgba(201,168,76,0.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .menu-overlay.open .menu-list li { opacity: 1; transform: none; }
  .menu-overlay.open .menu-list li:nth-child(1) { transition-delay: 0.1s; }
  .menu-overlay.open .menu-list li:nth-child(2) { transition-delay: 0.18s; }
  .menu-overlay.open .menu-list li:nth-child(3) { transition-delay: 0.26s; }
  .menu-overlay.open .menu-list li:nth-child(4) { transition-delay: 0.34s; }
  .menu-overlay.open .menu-list li:nth-child(5) { transition-delay: 0.42s; }

  .menu-list a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 8vw, 3.5rem);
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: 0.02em;
    line-height: 1.05;
    transition: color 0.3s ease, transform 0.3s ease;
    min-height: var(--tap);
  }
  .menu-list a:hover,
  .menu-list a:focus { color: var(--gold); transform: translateX(8px); }
  .menu-num {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.22em;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.5rem;
  }
  .menu-foot {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--grey-soft);
    font-size: 0.85rem;
  }
  .menu-foot .btn { align-self: flex-start; }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 100svh;
    background-color: var(--charcoal);
    background-image:
      linear-gradient(180deg,
        rgba(20,20,20,0.78) 0%,
        rgba(20,20,20,0.55) 35%,
        rgba(20,20,20,0.55) 70%,
        rgba(20,20,20,0.85) 100%),
      url('hero-family.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem;
  }
  /* Subtle gold accent atmospherics, tuned down so the photo reads first */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.09), transparent 55%),
      radial-gradient(ellipse at 10% 100%, rgba(201,168,76,0.05), transparent 50%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
  }
  .hero-tag {
    font-family: var(--font-display);
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .hero-headline {
    font-size: 2.4rem;
    line-height: 0.98;
    margin: 1rem 0 1.25rem;
  }
  .hero-headline .gold { color: var(--gold); }
  .hero-value {
    font-size: 1rem;
    color: var(--grey-soft);
    margin-bottom: 1.75rem;
    line-height: 1.55;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
  .hero-portrait {
    aspect-ratio: 4 / 5;
    background:
      linear-gradient(180deg, rgba(201,168,76,0.18) 0%, rgba(26,26,26,0.6) 70%),
      repeating-linear-gradient(45deg, rgba(201,168,76,0.04) 0 2px, transparent 2px 12px);
    border: 1px solid rgba(201,168,76,0.35);
    position: relative;
    display: none; /* hidden on small mobile, revealed at md */
    align-items: flex-end;
    padding: 1.25rem;
    overflow: hidden;
  }
  .hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  }
  .hero-portrait-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    letter-spacing: 0.24em;
    font-size: 0.68rem;
    color: var(--grey-soft);
  }
  .hero-portrait-label span { color: var(--gold); }
  .hero-portrait-bp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(201,168,76,0.18);
    line-height: 0.85;
  }
  .hero-scroll { display: none; }

  /* ---------- HEADLINES ---------- */
  .h-xl {
    font-size: 2.4rem;
    margin: 0.5rem 0 1.25rem;
  }
  .h-lg {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
  }

  /* ---------- TWO COL ---------- */
  .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }
  .body-stack p { margin: 0 0 1rem; }
  .body-stack p:last-child { margin-bottom: 0; }

  /* ---------- FAITH ---------- */
  .faith { background: var(--charcoal); color: var(--cream); position: relative; overflow: hidden; }
  .faith::before {
    content: "✦";
    position: absolute;
    font-size: 18rem;
    color: rgba(201,168,76,0.04);
    top: -6rem;
    right: -3rem;
    pointer-events: none;
  }

  /* ---------- MEET ---------- */
  .meet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  .meet-photo {
    aspect-ratio: 4 / 5;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
    background: var(--cream-deep);
    border: 1px solid rgba(26,26,26,0.1);
    position: relative;
    overflow: hidden;
  }
  .meet-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.7s ease;
  }
  .meet-photo:hover img { transform: scale(1.03); }

  /* FAITH SECTION photo + text grid */
  .faith-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  .faith-photo {
    aspect-ratio: 2 / 3;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
    background: var(--charcoal);
    border: 1px solid rgba(26,26,26,0.1);
    position: relative;
    overflow: hidden;
  }
  .faith-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s ease;
  }
  .faith-photo:hover img { transform: scale(1.03); }
  .meet-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin: 0 0 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
  }
  .meet-roles span:nth-child(2),
  .meet-roles span:nth-child(4) { color: var(--gold); }

  /* ---------- ROOMS ---------- */
  .rooms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .room-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    color: var(--cream);
  }
  .room-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .room-tag {
    font-family: var(--font-display);
    letter-spacing: 0.24em;
    font-size: 0.72rem;
    color: var(--gold);
  }
  .room-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    color: var(--cream);
  }
  .room-card p { margin: 0; color: var(--grey-soft); font-size: 0.95rem; }
  .room-meta {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--gold);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding-top: 0.85rem;
  }
  .room-card .btn { align-self: flex-start; }
  .room-card .micro { color: var(--grey-soft); opacity: 0.75; }

  /* ---------- STEPS ---------- */
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .step {
    border-top: 1px solid rgba(26,26,26,0.15);
    padding-top: 1.25rem;
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.85rem;
  }
  .step h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
    line-height: 1.15;
  }
  .step p { margin: 0; color: #3a3a3a; font-size: 0.92rem; }

  /* ---------- STATS ---------- */
  .stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.2);
    margin-top: 2.5rem;
  }
  .stat {
    background: var(--charcoal);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.3s ease;
  }
  .stat:hover { background: #232323; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    line-height: 0.9;
    color: var(--gold);
  }
  .stat-label {
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--cream);
    text-transform: uppercase;
  }
  .stat-body {
    color: var(--grey-soft);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .testi {
    background: var(--white);
    border: 1px solid rgba(26,26,26,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testi:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(26,26,26,0.2); }
  .testi-media {
    aspect-ratio: 9 / 16;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }
  .testi-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .testi-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }
  .testi-name {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    color: var(--charcoal);
    text-transform: uppercase;
  }
  .testi-sub { font-style: italic; color: var(--gold); font-size: 0.95rem; }
  .testi-text { color: #3a3a3a; font-size: 0.92rem; margin: 0.4rem 0 0; }
  .placeholder-flag {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 0.7rem;
    background: #fff5d6;
    border: 1px dashed #b88f00;
    color: #856200;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    font-size: 0.66rem;
    text-transform: uppercase;
  }
  .testi--placeholder { border-style: dashed; }

  /* ---------- ECOSYSTEM ---------- */
  .brands {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .brand {
    background: var(--cream);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border: 1px solid rgba(26,26,26,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  .brand:hover { transform: translateY(-4px); border-color: var(--gold); }
  .brand-mark {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
  }
  .brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    color: var(--charcoal);
  }
  .brand p { margin: 0; color: #3a3a3a; flex: 1; font-size: 0.93rem; }

  /* ---------- PODCAST ---------- */
  .podcast-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  .pod-frame {
    aspect-ratio: 16 / 9;
    background: var(--black);
    border: 1px solid rgba(201,168,76,0.3);
    position: relative;
    order: -1;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
  }
  .pod-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 1.75rem;
  }
  .topic-tag {
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: var(--cream);
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(201,168,76,0.4);
    text-transform: uppercase;
  }

  /* ---------- RESOURCES ---------- */
  .resources {
    background: var(--cream-deep);
    padding: 2.5rem 0;
  }
  .resources-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .resources h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0.4rem 0 0.5rem;
    line-height: 1.1;
  }
  .resources p { margin: 0; color: #3a3a3a; font-size: 0.95rem; }

  /* ---------- FAQ ---------- */
  .faqs { margin-top: 2rem; max-width: 60rem; }
  .faq { border-bottom: 1px solid rgba(26,26,26,0.12); }
  .faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
    min-height: var(--tap);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary:hover { color: var(--gold); }
  .faq summary::after {
    content: "+";
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
  }
  .faq[open] summary::after { content: "−"; }
  .faq p {
    margin: 0 0 1.25rem;
    color: #3a3a3a;
    font-size: 0.95rem;
  }

  /* ---------- FINAL CTA ---------- */
  .final {
    background: var(--black);
    color: var(--cream);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.18), transparent 60%),
      radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1), transparent 50%);
    pointer-events: none;
  }
  .final-inner { position: relative; max-width: 50rem; margin: 0 auto; }
  .final h2 {
    font-size: 2.75rem;
    line-height: 0.95;
    margin: 1rem 0 1.25rem;
  }
  .final h2 .gold { color: var(--gold); }
  .final p {
    font-size: 1rem;
    color: var(--grey-soft);
    margin: 0 auto 1.5rem;
  }
  .final p + p { margin-bottom: 2rem; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--charcoal);
    color: var(--grey);
    padding: 2rem var(--gutter);
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-row {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.8rem;
    text-align: center;
  }
  .footer-brand {
    font-family: var(--font-display);
    letter-spacing: 0.22em;
    color: var(--cream);
    font-size: 0.95rem;
  }
  .footer-brand span { color: var(--gold); }

  /* ---------- REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .menu-list li { opacity: 1 !important; transform: none !important; }
  }

  .gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
  }

  /* =========================================================
     SM: 480px+ (large phones)
     ========================================================= */
  @media (min-width: 480px) {
    :root { --gutter: 1.5rem; }
    body { font-size: 16.5px; }
    .hero-headline { font-size: 2.85rem; }
    .h-xl { font-size: 2.85rem; }
    .h-lg { font-size: 2.4rem; }
    .nav-cta .full { display: inline; }
    .nav-cta .short { display: none; }
    .nav-cta { padding: 0.65rem 1rem; font-size: 0.74rem; }
    .nav-brand { font-size: 1.05rem; }
    .stat-num { font-size: 3.25rem; }
    .footer-row { flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: left; }
  }

  /* =========================================================
     MD-SM: 600px+ (small tablets)
     ========================================================= */
  @media (min-width: 600px) {
    :root { --section-pad: 5.5rem; }
    body { font-size: 17px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .testis { grid-template-columns: 1fr 1fr; }
    .resources-row { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
    .hero-headline { font-size: 3.4rem; }
    .h-xl { font-size: 3.25rem; }
    .h-lg { font-size: 2.75rem; }
    .final h2 { font-size: 4rem; }
    .final p { font-size: 1.1rem; }
    .meet-roles { font-size: 1.85rem; gap: 0.5rem 1.75rem; }
  }

  /* =========================================================
     MD: 880px+ (tablets / small laptops)
     - Two-column layouts kick in
     - Hero portrait reveals
     ========================================================= */
  @media (min-width: 880px) {
    :root { --gutter: 2rem; --section-pad: 7rem; }
    .nav { padding: 1rem var(--gutter); }
    .nav-brand { font-size: 1.15rem; letter-spacing: 0.22em; }
    .nav-cta { padding: 0.7rem 1.1rem; font-size: 0.78rem; letter-spacing: 0.16em; }
    .nav-actions { gap: 0.85rem; }

    .hero { padding: 7rem 0 4rem; }
    .hero {
      background-image:
        linear-gradient(100deg,
          rgba(20,20,20,0.88) 0%,
          rgba(20,20,20,0.7) 30%,
          rgba(20,20,20,0.35) 60%,
          rgba(20,20,20,0.2) 100%),
        url('hero-family.jpg');
      background-position: center center;
    }
    .hero-grid { grid-template-columns: minmax(0, 620px); gap: 3.5rem; }
    .hero-portrait { display: none; }
    .hero-portrait-bp { font-size: 11rem; }
    .hero-headline { font-size: 4rem; max-width: 18ch; }
    .hero-value { font-size: 1.15rem; max-width: 38rem; }
    .hero-scroll {
      display: flex;
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      letter-spacing: 0.3em;
      font-size: 0.7rem;
      color: var(--grey);
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .hero-scroll::after {
      content: "";
      width: 1px;
      height: 36px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scroll-pulse 2.2s ease-in-out infinite;
    }
    @keyframes scroll-pulse {
      0%, 100% { transform: scaleY(1); opacity: 0.8; }
      50% { transform: scaleY(0.4); opacity: 0.3; }
    }

    .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .meet-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
    .meet-photo { max-width: none; }
    .faith-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
    .faith-photo { max-width: none; }
    .rooms { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .room-card { padding: 2.25rem; gap: 1.25rem; }
    .room-card h3 { font-size: 1.65rem; }
    .h-xl { font-size: 4rem; }
    .h-lg { font-size: 3rem; }
    .lede { font-size: 1.15rem; }
    .meet-roles { font-size: 2.25rem; gap: 0.5rem 2rem; }
    .step h4 { font-size: 1.15rem; }
    .step-num { font-size: 2.25rem; }
    .stat { padding: 2.25rem 1.75rem; }
    .stat-num { font-size: 4rem; }
    .testi-body { padding: 1.75rem; }
    .brand { padding: 2rem; }
    .brand h3 { font-size: 1.65rem; }
    .podcast-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .pod-frame { order: 0; }
    .final { padding: 7rem 0; }
    .final h2 { font-size: 5.25rem; }
    .faq summary { font-size: 1.2rem; padding: 1.5rem 0; }
    .resources { padding: 3.5rem 0; }
    .resources h3 { font-size: 1.85rem; }

    /* Bigger menu items on tablets */
    .menu-list a { font-size: 3rem; padding: 1.1rem 0; gap: 1.5rem; }
    .menu-num { font-size: 0.85rem; }
    .menu-overlay { padding: 6rem var(--gutter) 3rem; }
  }

  /* =========================================================
     LG: 1100px+ (desktops)
     ========================================================= */
  @media (min-width: 1100px) {
    :root { --gutter: 3rem; --section-pad: 9rem; }
    .stats { grid-template-columns: repeat(5, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .testis { grid-template-columns: repeat(4, 1fr); }
    .brands { grid-template-columns: repeat(3, 1fr); }
    .hero-headline { font-size: 5rem; }
    .h-xl { font-size: 5rem; max-width: 22ch; }
    .h-lg { font-size: 3.4rem; max-width: 24ch; }
    .hero-portrait-bp { font-size: 13rem; }
    .stat-num { font-size: 4.5rem; }
    .final h2 { font-size: 6.5rem; }
    .menu-list a { font-size: 3.5rem; }
  }

  /* =========================================================
     XL: 1280px+
     ========================================================= */
  @media (min-width: 1280px) {
    .hero-headline { font-size: 5.5rem; max-width: 18ch; }
  }

