  :root {
    --canvas-soft: #F2EDE3;
    --bisque: #E6D9C4;
    --sage: #E9E6D8;
    --canvas: #FFFFFF;
    --ink: #2A1F14;
    --ink-deep: #1A1208;
    --body: #5C5448;
    --mute: #9B9285;
    --primary: #874F22;
    --primary-deep: #6E3F1A;
    --primary-pale: #EADBC6;
    --gold: #C9A961;
    --gold-pale: #F3EBD6;
    --forest: #2D4A3A;
    --forest-pale: #DDE5DC;
    --hairline: rgba(42, 31, 20, 0.12);
    --shadow-card: 0 30px 70px -32px rgba(42, 31, 20, 0.22), 0 6px 20px -8px rgba(42, 31, 20, 0.08);
    --shadow-hover: 0 22px 44px -18px rgba(42, 31, 20, 0.28);
  }

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

  html { scroll-behavior: smooth; }

  html, body {
    background: var(--canvas-soft);
    color: var(--ink);
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ─────────────── LIVING TERRAIN CANVAS ─────────────── */
  #terrain {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
  }

  main { position: relative; z-index: 1; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ─────────────── FLOATING CARD SECTIONS ─────────────── */
  .float-card {
    background: var(--canvas);
    border-radius: 40px;
    width: min(1340px, calc(100% - 40px));
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    position: relative;
  }
  .float-card.sage { background: var(--sage); }
  .float-card.bisque { background: var(--bisque); }
  .float-card.forest {
    background: linear-gradient(135deg, #1F3628 0%, #2D4A3A 50%, #3E6650 100%);
    color: var(--canvas-soft);
    position: relative;
    overflow: hidden;
  }
  .float-card.forest::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(201, 169, 97, 0.14) 0%, transparent 55%);
    pointer-events: none;
  }
  .float-card.forest > * { position: relative; }
  .float-card.forest .disclosure-eyebrow,
  .float-card.forest .lockup-eyebrow { color: var(--gold); }
  .float-card.forest .disclosure-headline,
  .float-card.forest .lockup-headline { color: var(--canvas-soft); }
  .float-card.forest .lockup-body { color: rgba(242, 237, 227, 0.82); }
  .float-card.forest .lockup-bullets li { color: rgba(242, 237, 227, 0.82); }
  .float-card.forest .lockup-bullets strong { color: var(--canvas-soft); }
  .float-card.forest .lockup-bullets li::before { background: rgba(201, 169, 97, 0.18); }
  .float-card.forest .lockup-bullets li::after { border-color: var(--gold); }
  .float-card.forest .text-link {
    color: var(--canvas-soft);
    border-bottom-color: var(--gold);
  }
  .float-card.forest .process-card {
    background: rgba(242, 237, 227, 0.94);
    backdrop-filter: blur(4px);
  }
  .float-card.forest .process-num {
    background: var(--gold);
    color: #1F3628;
  }

  /* ─────────────── REVEALS ─────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ─────────────── NAV ─────────────── */
  nav {
    background: rgba(242, 237, 227, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  nav.scrolled {
    border-bottom-color: var(--hairline);
    box-shadow: 0 10px 30px -18px rgba(42, 31, 20, 0.18);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .logo {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-mark {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 15px;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a:not(.btn) {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
  }
  .nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

  /* ─────────────── BUTTONS ─────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    line-height: 1;
  }
  .btn-primary { background: var(--primary); color: #fff; }
  .btn-primary:hover {
    background: var(--primary-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(110, 63, 26, 0.5);
  }
  .btn-secondary { background: rgba(255,255,255,0.5); color: var(--ink); border: 1.5px solid var(--ink); }
  .btn-secondary:hover { background: var(--ink); color: var(--canvas-soft); transform: translateY(-2px); }

  .text-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .text-link:hover { gap: 12px; }

  /* ─────────────── HERO · type sits directly on living terrain ─────────────── */
  .hero { padding: 120px 0 140px; min-height: 88vh; display: flex; align-items: center; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    background: rgba(243, 235, 214, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-deep);
    margin-bottom: 30px;
  }
  .hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }
  .hero-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero-headline em { font-style: italic; font-weight: 500; color: var(--primary); }
  .hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 36px;
    max-width: 500px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-types { display: flex; gap: 10px; flex-wrap: wrap; }
  .type-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(6px);
    border: 1px solid var(--hairline);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .type-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(42,31,20,0.25); }
  .type-pill-dot { width: 7px; height: 7px; border-radius: 50%; }
  .type-pill-dot.clay { background: var(--primary); }
  .type-pill-dot.gold { background: var(--gold); }
  .type-pill-dot.forest { background: var(--forest); }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/5.1;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(150deg, #8B6F47 0%, #A0826D 45%, #C5A878 100%);
    box-shadow: var(--shadow-card);
    will-change: transform;
  }
  .hero-visual-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    text-align: center;
    padding: 24px;
  }
  .hero-visual-tag {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-visual-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--forest); }

  /* ─────────────── WORKING ACROSS ─────────────── */
  .working-across { padding: 46px 48px; margin-top: -36px; z-index: 2; }
  .working-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
  }
  .working-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
    opacity: 0.75;
  }
  .working-logo {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  /* ─────────────── STATS ─────────────── */
  .stats { padding: 110px 0 100px; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .stat {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    background: linear-gradient(90deg, rgba(242,237,227,0.8) 0%, rgba(242,237,227,0) 80%);
  }
  .stat-value {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .stat-label { font-size: 15px; color: var(--body); line-height: 1.45; }

  .section-pad { padding: 92px 56px; }
  .gap-block { padding: 50px 0; }

  /* ─────────────── LOCKUP ─────────────── */
  .lockup { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
  .lockup-eyebrow, .disclosure-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--primary);
    margin-bottom: 18px;
  }
  .lockup-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .lockup-body {
    font-size: 18px;
    line-height: 1.65;
    color: var(--body);
    margin-bottom: 32px;
    max-width: 520px;
  }
  .lockup-bullets { list-style: none; margin-bottom: 36px; }
  .lockup-bullets li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
  }
  .lockup-bullets li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--forest-pale);
  }
  .lockup-bullets li::after {
    content: "";
    position: absolute;
    left: 5px; top: 11px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--forest);
    border-bottom: 2px solid var(--forest);
    transform: rotate(-45deg);
  }
  .lockup-bullets strong { color: var(--ink); font-weight: 600; }

  .lockup-visual {
    aspect-ratio: 5/4;
    border-radius: 32px;
    background: linear-gradient(140deg, #6B8E5A 0%, #8FA876 55%, #B5C9A0 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    will-change: transform;
  }
  .lockup-visual-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    text-align: center;
    padding: 24px;
  }

  /* ─────────────── PROJECTS ─────────────── */
  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .projects-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--ink);
  }
  .projects-controls { display: flex; gap: 10px; }
  .carousel-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.18s ease;
  }
  .carousel-btn:hover { background: var(--ink); color: var(--canvas-soft); transform: translateY(-2px); }
  .carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 6px 16px;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar { display: none; }
  .project-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--canvas);
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .project-visual { height: 200px; position: relative; background: linear-gradient(140deg, #A0826D 0%, #C5A878 100%); overflow: hidden; }
  .project-visual.v2 { background: linear-gradient(140deg, #6B8E5A 0%, #9BB585 100%); }
  .project-visual.v3 { background: linear-gradient(140deg, #4A3528 0%, #7A6048 100%); }
  .project-visual.v4 { background: linear-gradient(140deg, #8B6F47 0%, #B99C6B 100%); }
  .project-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,0.92);
    padding: 6px 13px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
  }
  .project-body { padding: 22px 22px 26px; }
  .project-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .project-meta { font-size: 13.5px; color: var(--mute); margin-bottom: 12px; }
  .project-outcome {
    font-size: 14px;
    line-height: 1.5;
    color: var(--body);
    padding-top: 12px;
    border-top: 1px solid var(--hairline);
  }

  /* ─────────────── DISCLOSURE ─────────────── */
  .disclosure-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .disclosure-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 22px;
  }
  .disclosure-sub { font-size: 18px; line-height: 1.6; color: var(--body); }
  .disclosure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .disclosure-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 26px;
    padding: 34px 30px;
    box-shadow: 0 18px 44px -26px rgba(42,31,20,0.22);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .disclosure-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
  .disclosure-card-num { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
  .disclosure-card-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 23px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .disclosure-card-body { font-size: 15px; line-height: 1.6; color: var(--body); }

  /* ─────────────── PROCESS ─────────────── */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
  .process-card {
    background: var(--bisque);
    border-radius: 26px;
    padding: 30px 26px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
  .process-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold-pale);
    color: var(--ink);
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .process-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .process-body { font-size: 14px; line-height: 1.55; color: var(--body); }

  /* ─────────────── SEGMENT ─────────────── */
  .segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .segment-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(8px);
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 44px -26px rgba(42,31,20,0.22);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .segment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .segment-card-visual { aspect-ratio: 4/3; position: relative; background: linear-gradient(140deg, #A0826D 0%, #C5A878 100%); }
  .segment-card-visual.g { background: linear-gradient(140deg, #6B8E5A 0%, #9BB585 100%); }
  .segment-card-visual.d { background: linear-gradient(140deg, #4A3528 0%, #7A6048 100%); }
  .segment-card-visual.w { background: linear-gradient(140deg, #8B6F47 0%, #B99C6B 100%); }
  .segment-card-arrow {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--canvas);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .segment-card:hover .segment-card-arrow { transform: translate(3px, -3px); }
  .segment-card-body { padding: 20px 22px 26px; }
  .segment-card-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .segment-card-text { font-size: 13.5px; line-height: 1.5; color: var(--body); }

  .partner-band {
    margin-top: 48px;
    background: var(--sage);
    border-radius: 26px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 18px 44px -26px rgba(42,31,20,0.18);
  }
  .partner-band-title { font-family: 'EB Garamond', Georgia, serif; font-weight: 700; font-size: 26px; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 6px; }
  .partner-band-text { font-size: 15px; color: var(--body); max-width: 560px; }

  /* ─────────────── TESTIMONIALS ─────────────── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
  .testimonial {
    background: var(--canvas);
    border-radius: 26px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
  .testimonial-quote-mark { font-family: 'EB Garamond', Georgia, serif; font-size: 52px; line-height: 0.8; color: var(--gold); margin-bottom: 16px; }
  .testimonial-quote {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18.5px;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 26px;
    flex-grow: 1;
    letter-spacing: -0.005em;
  }
  .testimonial-meta { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--hairline); }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 15px;
  }
  .testimonial-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
  .testimonial-loc { font-size: 13px; color: var(--mute); }

  /* ─────────────── GIVING ─────────────── */
  .giving-card {
    background: var(--ink-deep);
    border-radius: 40px;
    padding: 72px 64px;
    color: var(--canvas-soft);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: min(1340px, calc(100% - 40px));
    margin: 0 auto;
    box-shadow: 0 44px 90px -36px rgba(26, 18, 8, 0.55);
  }
  .giving-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(168, 91, 68, 0.18) 0%, transparent 55%);
    pointer-events: none;
  }
  .giving-eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold); margin-bottom: 20px; }
  .giving-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--canvas-soft);
    position: relative;
  }
  .giving-headline em { font-style: italic; font-weight: 500; color: var(--gold); }
  .giving-body {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(242, 237, 227, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
    position: relative;
  }
  .giving-causes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; position: relative; }
  .cause-pill {
    padding: 9px 18px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gold);
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .cause-pill:hover { background: rgba(201, 169, 97, 0.12); transform: translateY(-2px); }
  .giving-card .btn-primary { background: var(--gold); color: var(--ink); position: relative; }
  .giving-card .btn-primary:hover { background: #fff; box-shadow: 0 12px 24px -10px rgba(201,169,97,0.4); }
  .giving-visual {
    aspect-ratio: 4/4.6;
    border-radius: 26px;
    background: linear-gradient(140deg, rgba(168, 91, 68, 0.35) 0%, rgba(201, 169, 97, 0.28) 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    text-align: center;
    padding: 24px;
    position: relative;
    will-change: transform;
  }

  /* ─────────────── RESOURCES ─────────────── */
  .resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
  .resource-card {
    background: var(--bisque);
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  .resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .resource-visual { height: 170px; background: linear-gradient(140deg, #8B6F47 0%, #B99C6B 100%); position: relative; }
  .resource-visual.g { background: linear-gradient(140deg, #6B8E5A 0%, #9BB585 100%); }
  .resource-visual.d { background: linear-gradient(140deg, #4A3528 0%, #7A6048 100%); }
  .resource-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,0.92);
    padding: 6px 13px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
  }
  .resource-body { padding: 22px 24px 28px; }
  .resource-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .resource-text { font-size: 14px; line-height: 1.55; color: var(--body); }

  /* ─────────────── FINAL CTA ─────────────── */
  .final-cta { padding: 130px 0; text-align: center; }
  .final-cta-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-sub {
    font-size: 18px;
    color: var(--body);
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .final-cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
  .final-cta-phone-label { font-size: 12.5px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
  .final-cta-phone {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 27px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  /* ─────────────── FOOTER ─────────────── */
  footer {
    background: var(--ink-deep);
    color: var(--canvas-soft);
    padding: 76px 0 36px;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 1;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
  .footer-brand-logo {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--canvas-soft);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-brand-text { font-size: 14px; line-height: 1.65; color: rgba(242, 237, 227, 0.6); max-width: 320px; margin-bottom: 24px; }
  .footer-contact { font-size: 14px; color: rgba(242, 237, 227, 0.7); line-height: 1.7; }
  .footer-contact strong { color: var(--gold); font-weight: 500; }
  .footer-col-title { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.11em; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { color: rgba(242, 237, 227, 0.7); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
  .footer-links a:hover { color: var(--canvas-soft); }
  .footer-bottom {
    border-top: 1px solid rgba(242, 237, 227, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(242, 237, 227, 0.5);
  }

  /* ─────────────── REDUCED MOTION ─────────────── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  }

  /* ─────────────── RESPONSIVE ─────────────── */
  @media (max-width: 960px) {
    .hero-grid, .lockup, .giving-card { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid, .disclosure-grid, .process-grid, .testimonials-grid, .resources-grid { grid-template-columns: 1fr 1fr; }
    .segment-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .giving-card { padding: 48px 32px; }
    .section-pad { padding: 64px 32px; }
    .working-across { padding: 38px 28px; }
    .hero { min-height: auto; padding: 70px 0 90px; }
  }
  @media (max-width: 620px) {
    .stats-grid, .disclosure-grid, .process-grid, .segment-grid, .testimonials-grid, .resources-grid, .footer-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .hero { padding: 56px 0 70px; }
    .section-pad { padding: 52px 22px; }
    .float-card, .giving-card { border-radius: 28px; width: calc(100% - 24px); }
    .stats { padding: 80px 0 70px; }
    .final-cta { padding: 80px 0; }
    footer { border-radius: 28px 28px 0 0; }
  }

  /* ─────────────── INTERIOR PAGE HERO (coming-soon / form / article pages) ─────────────── */
  .page-hero { padding: 160px 0 40px; text-align: center; }
  .page-hero .logo-mark { width: 46px; height: 46px; font-size: 19px; margin: 0 auto 24px; }

  /* ─────────────── GET YOUR OFFER FORM ─────────────── */
  .offer-form-wrap { padding: 0 0 130px; }
  .offer-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
    max-width: 760px;
    margin: 0 auto;
  }
  .form-field { display: flex; flex-direction: column; gap: 8px; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
  .form-field label .req { color: var(--primary); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--canvas-soft);
    border: 1.5px solid var(--hairline);
    border-radius: 14px;
    padding: 13px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(135, 79, 34, 0.12);
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); line-height: 1.5; }
  .form-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--primary); flex-shrink: 0; }
  .form-note { font-size: 13px; color: var(--mute); margin-top: 16px; text-align: center; }

  /* ─────────────── ARTICLE PAGES ─────────────── */
  .article-hero { padding: 150px 0 0; }
  .article-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .article-eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; color: var(--primary); margin-bottom: 18px; }
  .article-title { font-family: 'EB Garamond', Georgia, serif; font-weight: 700; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 20px; }
  .article-dek { font-size: 18px; color: var(--body); line-height: 1.6; max-width: 640px; margin: 0 auto; }
  .article-cover { aspect-ratio: 16/8; border-radius: 32px; overflow: hidden; max-width: 1000px; margin: 48px auto 0; box-shadow: var(--shadow-card); position: relative; background: linear-gradient(140deg, #A0826D 0%, #C5A878 100%); }
  .article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .article-body { max-width: 700px; margin: 0 auto; padding: 64px 0 40px; }
  .article-body h2 { font-family: 'EB Garamond', Georgia, serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); color: var(--ink); margin: 44px 0 18px; letter-spacing: -0.01em; }
  .article-body p { font-size: 17px; line-height: 1.75; color: var(--body); margin-bottom: 22px; }
  .article-body ul, .article-body ol { margin: 0 0 22px 22px; color: var(--body); font-size: 17px; line-height: 1.75; }
  .article-body li { margin-bottom: 10px; }
  .article-body strong { color: var(--ink); }
  .article-cta { max-width: 700px; margin: 20px auto 0; background: var(--bisque); border-radius: 26px; padding: 36px 40px; }
  .article-cta h3 { font-family: 'EB Garamond', Georgia, serif; font-weight: 700; font-size: 24px; color: var(--ink); margin-bottom: 12px; }
  .article-cta p { font-size: 15px; color: var(--body); margin-bottom: 20px; line-height: 1.6; }

  /* Article sits on its own white card so long-form text isn't fighting the
     terrain lines behind it. */
  .article-card {
    background: var(--canvas);
    border-radius: 40px;
    width: min(1080px, calc(100% - 40px));
    margin: 34px auto 90px;
    box-shadow: var(--shadow-card);
    padding: 20px 72px 72px;
    position: relative;
  }
  .article-card .article-hero { padding: 40px 0 0; }
  .article-card .article-cover { max-width: 100%; }

  .article-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--mute);
    margin-top: 18px;
  }
  .article-kicker span { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

  .article-body > p:first-of-type {
    font-size: 19.5px;
    line-height: 1.68;
    color: var(--ink);
  }
  .article-body h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: var(--gold);
    margin-top: 14px;
  }

  .article-pullquote {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 26px;
    margin: 40px 0;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(22px, 2.4vw, 27px);
    line-height: 1.34;
    font-style: italic;
    color: var(--ink);
  }

  .article-figure { margin: 42px 0 46px; }
  .article-figure-media {
    aspect-ratio: 16/9;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(140deg, #8B6F47 0%, #B99C6B 55%, #DEC197 100%);
    box-shadow: var(--shadow-card);
  }
  .article-figure-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .article-figure figcaption {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: var(--mute);
    text-align: center;
    margin-top: 14px;
  }

  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    text-decoration: none;
    margin-top: 36px;
  }
  .article-back:hover { color: var(--primary); }

  @media (max-width: 860px) {
    .article-card { padding: 12px 30px 52px; border-radius: 30px; width: calc(100% - 24px); margin: 20px auto 60px; }
    .article-card .article-hero { padding: 26px 0 0; }
    .article-body { padding: 44px 0 30px; }
  }
  @media (max-width: 620px) {
    .offer-form { grid-template-columns: 1fr; }
    .article-cta { padding: 28px 22px; }
    .page-hero { padding: 130px 0 30px; }
    .article-hero { padding: 120px 0 0; }
    .article-card { padding: 10px 20px 44px; }
    .article-body > p:first-of-type { font-size: 18px; }
    .article-figure { margin: 32px 0 34px; }
  }

  /* ─────────────── MOBILE NAV ─────────────── */
  .nav-toggle { display: none; }

  @media (max-width: 960px) {
    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0 10px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      height: 1.5px;
      width: 100%;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav-open .nav-links {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(242, 237, 227, 0.98);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-top: 1px solid var(--hairline);
      box-shadow: 0 18px 40px -22px rgba(42, 31, 20, 0.35);
      padding: 8px 24px 22px;
    }
    .nav-open .nav-links a:not(.btn) {
      padding: 15px 0;
      font-size: 17px;
      border-bottom: 1px solid var(--hairline);
    }
    .nav-open .nav-links a:not(.btn)::after { display: none; }
    .nav-open .nav-links .btn {
      margin-top: 18px;
      justify-content: center;
      padding: 15px 24px !important;
      font-size: 15px !important;
    }
  }

  /* ─────────────── RECENT PROJECTS · MOBILE PRESENCE ─────────────── */
  @media (max-width: 760px) {
    /* The track bleeds past the section padding so cards stay large while the
       next one still peeks in, which is what signals "swipe me" on a phone. */
    .carousel {
      gap: 14px;
      margin-left: -22px;
      margin-right: -22px;
      padding-left: 22px;
      padding-right: 22px;
      scroll-padding-left: 22px;
    }
    .project-card { flex: 0 0 78vw; max-width: 330px; }
    .project-visual { height: 240px; }
    .projects-header { margin-bottom: 28px; }
    .project-title { font-size: 22px; }
    .project-body { padding: 20px 20px 24px; }
  }
