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

:root {
    --forest: #2C3E2D;
    --forest-deep: #1E2B1F;
    --sage: #5B7C5E;
    --sage-light: #7A9E7E;
    --sage-muted: #93AB95;
    --gold: #C4A265;
    --gold-light: #D4B97A;
    --cream: #F7F4EF;
    --cream-dark: #EDE8DF;
    --white: #FFFFFF;
    --text: #2C3E2D;
    --text-light: #5A6B5B;
    --leaf: #E8EDE9;
}

html { scroll-behavior: auto; overflow-x: clip; }
body { overflow-x: clip; }

/* Cross-document View Transitions keep the fixed header intact while the
   page content cross-fades. Falls back to a normal load in unsupported
   browsers. */
@view-transition { navigation: auto; }

/* Only .site-nav carries the shared-element name — view-transition-name
   must be unique per snapshot, so the overlay is deliberately left out. */
.site-nav {
    view-transition-name: site-header;
}
::view-transition-old(site-header),
::view-transition-new(site-header) {
    animation: none;
    mix-blend-mode: normal;
}
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 280ms;
}

/* Same-document fade (anchor-jump within one page) keeps the nav fixed and
   fades the content children below it. */
#site > *:not(.site-nav):not(.nav-overlay) {
    transition: opacity 260ms ease;
}
body.is-fading > #site > *:not(.site-nav):not(.nav-overlay) {
    opacity: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ── Hero ── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 2rem;
    color: var(--cream);
    background:
        radial-gradient(ellipse at 18% 8%, rgba(91,124,94,0.38) 0%, transparent 52%),
        radial-gradient(ellipse at 85% 92%, rgba(196,162,101,0.22) 0%, transparent 55%),
        linear-gradient(178deg, #1E2B1F 0%, #2F4431 46%, #46603F 100%);
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-art {
    position: relative;
    flex: 0 0 auto;
    width: min(420px, 44%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-halo {
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at center, rgba(196,162,101,0.28) 0%, rgba(196,162,101,0.08) 35%, transparent 65%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}

.hero-picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(10, 18, 10, 0.28));
}

.hero-tagline {
    flex: 1 1 auto;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: var(--cream);
    margin: 0;
    max-width: 520px;
    text-align: left;
    text-wrap: balance;
}

@media (max-width: 820px) {
    .hero {
        padding: 2.25rem 1.5rem;
    }
    .hero-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero-art {
        width: min(300px, 70%);
        margin: 0 auto;
    }
    .hero-tagline {
        max-width: 560px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.25rem;
    }
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-muted);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--sage-muted);
}

.tagline-band {
    background: var(--forest);
    padding: 2.4rem 1.5rem;
    text-align: center;
}

.tagline-band-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
    color: var(--cream);
    margin: 0 auto;
    max-width: 1100px;
    line-height: 1.55;
}


.mobile-break { display: none; }
.desktop-break { display: inline; }
@media (max-width: 680px) {
    .desktop-break { display: none; }
}

.hero-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    color: var(--sage-muted);
    animation: float 2.5s ease-in-out infinite;
    cursor: pointer;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ── Section Base ── */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media (max-width: 680px) {
    .container { padding: 0 1.25rem; }
}

.section-label {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--forest);
    text-wrap: balance;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 820px;
    line-height: 1.8;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Divider ── */
.divider {
    width: 60px;
    height: 1px;
    background: var(--sage-muted);
    margin: 0 auto;
    opacity: 0.4;
}

/* ── About ── */
.about { background: var(--white); }

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* A single "Read more" CTA sits below the whole pillars row (see
   .pillars-cta below) — individual pillars no longer carry their own
   Read more button. */

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(44,62,45,0.18);
}
.pillar:hover .pillar-icon {
    color: var(--forest);
}

/* Each tile hovers to its own colour within the palette: sage green for
   Roots, warm yellow for Finding Your Place, earthy orange for Resourced.
   Mirrors the pill chip colours on the programme pages. */
.pillars .pillar:nth-child(1):hover {
    background: #BEDBBB;
    border-color: var(--sage-muted);
}
.pillars .pillar:nth-child(2):hover {
    background: #E4C66A;
    border-color: var(--gold);
}
.pillars .pillar:nth-child(3):hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-deep);
}
.pillars .pillar:nth-child(3):hover h3,
.pillars .pillar:nth-child(3):hover .pillar-subtitle,
.pillars .pillar:nth-child(3):hover p,
.pillars .pillar:nth-child(3):hover .pillar-list li {
    color: var(--forest-deep);
}
.pillars .pillar:nth-child(3):hover .pillar-icon {
    color: var(--forest-deep);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    color: var(--sage);
    margin: 0 auto 1.25rem;
    display: block;
}

.pillar h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--forest);
}

.pillar-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.85rem;
}

.pillar p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

.pillar .pillar-list {
    text-align: left;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.pillar-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0.2rem 0 0.2rem 1.1rem;
    position: relative;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sage);
}

/* ── Patron ── */
.patron { background: var(--cream); }

.patron-card {
    margin-top: 2.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--cream-dark);
}

.patron-portrait {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.patron-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.patron-role {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.patron-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.patron-credits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--cream-dark);
}

.patron-credits::before {
    content: "Selected credits";
    flex: 0 0 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    opacity: 0.72;
    margin-bottom: 0.5rem;
}

.credit-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    padding: 0.45rem 0.95rem;
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--sage-muted);
    border-radius: 999px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.credit-tag:hover {
    background: var(--sage);
    color: var(--cream);
    border-color: var(--sage);
}

/* ── Event ── */
.event {
    background: var(--forest-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(91,124,94,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.event .container { position: relative; z-index: 1; }

.event .section-label { color: var(--gold); }
.event .section-title { color: var(--cream); }

.event-details {
    margin: 2.5rem auto 0;
    max-width: 560px;
}

.event-date {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.event-venue {
    font-size: 1.05rem;
    color: var(--sage-muted);
    margin-bottom: 0.4rem;
}

.event-venue-sub {
    font-size: 0.85rem;
    color: rgba(147,171,149,0.7);
    margin-bottom: 2rem;
}

.event-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.event-map-link:hover { color: var(--gold); }

.event-desc {
    font-size: 1rem;
    color: rgba(247,244,239,0.75);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.ticket-btn {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.ticket-btn:hover { background: var(--gold-light); }

.event-more-link {
    display: inline-block;
    color: rgba(247, 244, 239, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid rgba(247, 244, 239, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.event-more-link:hover {
    color: var(--cream);
    border-bottom-color: var(--cream);
}

.event-more {
    overflow: visible;
}

.event-more-inner {
    padding-top: 3rem;
    max-width: 580px;
    margin: 0 auto;
    text-align: left;
}

.event-more-heading {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
}

.event-more-heading:first-child {
    margin-top: 0;
}
#support-us {
    scroll-margin-top: 88px;
}

.event-more-inner p {
    font-size: 0.95rem;
    color: rgba(247,244,239,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.event-list li {
    font-size: 0.95rem;
    color: rgba(247,244,239,0.75);
    line-height: 1.7;
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
}

.event-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-muted);
}

.event-list.leaf-list li::before {
    content: '🌿';
    background: none;
    width: auto;
    height: auto;
    top: 0.35rem;
    font-size: 0.85rem;
}

.event-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.04);
    border-radius: 0 8px 8px 0;
}

.event-quote p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(247,244,239,0.85);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.event-quote cite {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-closing {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.15rem !important;
    font-style: italic;
    color: var(--sage-muted) !important;
    text-align: center;
    margin-top: 1.5rem;
}

.event-more-inner .ticket-btn {
    margin-top: 2.5rem;
}

/* ── Photography ── */
.photography { background: var(--white); }

.photo-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.photo-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.photo-note p strong {
    color: var(--forest);
}

/* ── Instagram ── */
.instagram { background: var(--cream); text-align: center; }

.insta-grid {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.insta-grid blockquote.instagram-media {
    margin: 0 !important;
    max-width: 340px !important;
    min-width: 280px !important;
}

.insta-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding: 0.85rem 2rem;
    background: var(--forest);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.15s ease;
}

.insta-follow:hover { background: var(--sage); }
.insta-follow:active { transform: scale(0.97); }

/* ── Photo Banners ── */
.photo-banner {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
    line-height: 0;
    font-size: 0;
}

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

@media (max-width: 768px) {
    .photo-banner { height: 240px; }
}

.insta-follow svg {
    width: 18px;
    height: 18px;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 200;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ── Nav ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(30,43,31,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 2rem;
    transform: translateY(0);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    white-space: nowrap;
}

.nav-brand-logo {
    height: 46px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 1.55rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a[aria-current="page"] {
    color: var(--cream);
    position: relative;
}
.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.mobile-nav-link[aria-current="page"] {
    color: var(--gold);
}

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 201;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--cream);
    margin: 6px 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 1.25px;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    z-index: 199;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--sage-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.nav-close:hover { color: var(--cream); }

.nav-overlay a {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-overlay a:hover,
.nav-overlay a:focus,
.nav-overlay a:focus-visible { color: var(--gold); outline: none; }
.nav-overlay a:active { color: var(--gold); }

.nav-hamburger,
.nav-close { -webkit-tap-highlight-color: transparent; }
.nav-close:focus,
.nav-close:focus-visible { outline: none; color: var(--cream); }

.nav-overlay .mobile-donate {
    margin-top: 1rem;
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
}

.nav-overlay .mobile-donate:hover { color: var(--forest-deep); background: var(--gold-light); }

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}

@media (min-width: 961px) {
    .nav-overlay { display: none !important; }
}

/* ── Team ── */
.team { background: var(--cream); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--forest);
}

.team-card .team-role {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ── */
footer {
    background: var(--forest-deep);
    color: var(--sage-muted);
    text-align: center;
    padding: 3rem 2rem;
}

.logo {
    display: block;
    margin: 0 auto 2rem;
}

.logo img {
    width: 220px;
    height: auto;
}

.footer-logo {
    display: block;
    margin: 0 auto 1rem;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ── Contact Button ── */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--forest);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.15s ease;
}

.contact-btn:hover { background: var(--sage); }
.contact-btn:active { transform: scale(0.97); }

/* ── Urgency Banner ── */
.urgency-banner {
    background: var(--gold);
    text-align: center;
    padding: 0.75rem 1rem;
    margin-top: 76px;
}

.urgency-banner .banner-messages {
    text-align: center;
}

.urgency-banner a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-deep);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.urgency-banner a:hover {
    text-decoration: underline;
}

.banner-sep {
    margin: 0 0.75rem;
    color: var(--forest-deep);
    opacity: 0.4;
}

@media (max-width: 700px) {
    .urgency-banner {
        padding: 0.55rem 0.85rem;
    }
    .urgency-banner .banner-messages {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }
    .urgency-banner a {
        font-size: 0.82rem;
        line-height: 1.35;
        text-decoration: none;
    }
    .urgency-banner a::after {
        content: " ›";
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        margin-left: 0.1rem;
    }
    .banner-sep {
        display: none;
    }
    .banner-extra {
        display: none;
    }
}

/* ── Scroll Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Photo banners fill their layout box, so the translateY leaves a
   visible cream gap above the image before the observer fires. Skip
   the translate and let opacity alone fade them in. */
.photo-banner.fade-up { transform: none; }

/* Footer social icons row: Instagram + email, centred */
.footer-socials {
    display: inline-flex;
    gap: 1.25rem;
    align-items: center;
}
.footer-socials a:hover {
    color: var(--cream) !important;
}

/* ── Contact page ── */
.contact-body {
    background: var(--cream);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-lead {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.contact-lead p { margin: 0; }

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.contact-actions .contact-btn,
.contact-actions .insta-follow {
    margin: 0;
}

.contact-body .insta-grid {
    margin: 0 auto 1.5rem;
    max-width: 540px;
}

.contact-body .insta-follow {
    margin: 0 auto;
}

/* ── Contact form (legacy, unused — keep styling available) ── */

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
}

.form-row input,
.form-row textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--forest);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(91, 124, 94, 0.15);
}

.form-row textarea {
    resize: vertical;
    min-height: 140px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-submit {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest-deep);
    background: var(--gold);
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 2.25rem;
    cursor: pointer;
    align-self: start;
    margin-top: 0.5rem;
    transition: background 200ms ease, transform 200ms ease;
}

.form-submit:hover {
    background: var(--gold-light);
}

.form-submit:active {
    transform: scale(0.98);
}

.contact-direct {
    max-width: 640px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
    text-align: center;
}

.contact-direct p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.contact-meta {
    max-width: 640px;
    margin: 2.5rem auto 0;
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

.contact-meta p { margin: 0.15rem 0; }

/* Patrons list section: cream body under the white page-header, matches
   the /why/ and /team/ split. Each .patron-card stacks full-width, no
   inner card box — content flows straight on the cream background. */
.patrons-list {
    background: var(--cream);
    padding: 4.5rem 2rem;
}
.patrons-list .patron-card {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.patrons-list .patron-card + .patron-card {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid var(--cream-dark);
}

/* ── Patron pull-quote (editorial style, oversized opening mark) ── */
.patron-quote {
    position: relative;
    margin: 1.75rem 0 2rem;
    padding: 0 0 0 2.75rem;
    background: transparent;
    border: 0;
}
.patron-quote::before {
    content: "\201C";
    position: absolute;
    top: -2.25rem;
    left: -0.4rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 7rem;
    font-style: italic;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    pointer-events: none;
}
.patron-quote p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    font-style: italic;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.65;
    margin: 0 0 1.1rem;
    text-align: left;
}
.patron-quote cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    padding-top: 0.35rem;
    border-top: 1px solid var(--cream-dark);
    width: fit-content;
}
@media (max-width: 600px) {
    .patron-quote { padding-left: 1.75rem; }
    .patron-quote::before { font-size: 5rem; top: -1.5rem; left: -0.2rem; }
}

/* ── Responsive YouTube / video embeds ── */
.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 820px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--forest-deep);
    box-shadow: 0 14px 36px rgba(30, 43, 31, 0.22);
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* When a video sits inside a patron card, give it extra spacing above
   and widen to fill the info column. */
.patron-info .video-embed {
    margin-top: 1.75rem;
    max-width: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }

    #about {
        padding-top: 1rem;
        padding-bottom: 2.5rem;
    }
    #about .vp-nav { margin-bottom: 1rem; }

    .mobile-break { display: inline !important; }

    .patron-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .patron-portrait {
        width: 120px;
        height: 120px;
    }

    .patron-portrait svg {
        width: 48px;
        height: 48px;
    }

    .patron-credits {
        justify-content: center;
    }

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

/* ── Mobile Bio Collapse ── */
@media (max-width: 768px) {
    .bio-collapsible {
        max-height: 12rem;
        overflow: hidden;
        position: relative;
        transition: max-height 0.5s ease;
    }

    .bio-collapsible::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4rem;
        background: linear-gradient(transparent, var(--cream));
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .bio-collapsible.expanded {
        max-height: 200rem;
    }

    .bio-collapsible.expanded::after {
        opacity: 0;
    }

    .bio-toggle {
        display: inline-block;
        margin-top: 1rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--sage);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        letter-spacing: 0.03em;
    }
}

@media (min-width: 769px) {
    .bio-toggle { display: none; }
}

@media (max-width: 480px) {
    .ticket-btn { padding: 0.85rem 2rem; }
}

/* ── Ultra-wide screens ── */
@media (min-width: 1440px) {
    .hero-img {
        max-height: 300px;
    }
}

/* ── Bio credentials ── */
.bio-credentials {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    margin-top: -0.6rem;
    margin-bottom: 1.5rem;
}

/* ── Bio links (pills) ── */
.bio-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.bio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--cream);
    border: 1px solid var(--forest);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.bio-link:hover,
.bio-link:focus-visible {
    background: var(--forest);
    color: var(--cream);
}

.bio-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Why section ── */
.why { background: var(--white); }

.why .section-title {
    margin-bottom: 1.5rem;
}

.why-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 760px;
}

.why-text p:last-child { margin-bottom: 0; }

.why-block {
    margin-top: 3.5rem;
}

.why-heading {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .why-block { margin-top: 2.5rem; }
    .why-text p { font-size: 0.95rem; }
}

/* ── Sub-page shared layout (Pass 3) ── */
.page-header {
    padding: 7rem 2rem 3.5rem;
    background: var(--white);
    text-align: center;
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header .section-label {
    margin-bottom: 0.5rem;
}

.page-header h1 {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.page-header .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.prose {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.prose p + p { margin-top: 1.25rem; }

.prose h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--forest);
    margin: 2.5rem 0 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.team-member img {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1.5rem;
}

.team-member h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.team-member .credentials {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.team-member .bio {
    text-align: left;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-member .bio p + p { margin-top: 1rem; }

.team-member .bio-links {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

.cta-card {
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: #3F5640;
    color: var(--cream);
    border-radius: 16px;
    max-width: 820px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1rem;
    color: rgba(247,244,239,0.82);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

a.btn,
.cta-card a.btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

a.btn:hover,
.cta-card a.btn:hover { background: var(--gold-light); }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.back-link:hover { color: var(--forest); }

.back-link::before { content: "←"; }

/* Pillar cards as anchor links (Pass 3) */
a.pillar {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* Legacy a.pillar::after "Read more" removed — a single CTA sits below
   the pillars row (see .pillars-cta) and the whole tile is clickable. */

/* ── Pass 2+4: About split (Vision | Purpose side-by-side) ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 820px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ── Pass 2: Team home teaser (side-by-side photos + short bios) ── */
.team-home {
    padding: 5rem 0;
    background: var(--cream);
}
.team-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
@media (max-width: 820px) {
    .team-home-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
.team-home-member {
    text-align: center;
}
.team-home-member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
}
.team-home-member h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--forest-deep);
}
.team-home-member .bio-credentials {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: var(--sage);
    margin: 0 auto 1rem;
    max-width: 34ch;
    line-height: 1.5;
    text-wrap: balance;
}
.team-home-member p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 34ch;
    margin: 0 auto;
}
.team-home-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid var(--sage);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.team-home-cta:hover {
    color: var(--forest-deep);
    border-color: var(--gold);
}

/* ── Pass 4: Offerings dark-green callout ── */
.offerings {
    padding: 5rem 0;
    background: #3F5640;
    color: var(--cream);
}
.offerings .section-label {
    color: var(--gold);
}
.offerings .section-title {
    color: var(--cream);
}
.offerings .pillar {
    background: var(--cream);
    color: var(--text);
}
.offerings a.pillar:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.pillar p + p { margin-top: 0.9rem; }

/* Emphasised who-it's-for tag: semi-bold inline, inherits colour so it
   reads naturally inside subtitles, leads and body copy. */
.age-tag {
    font-weight: 600;
    font-style: normal;
    color: inherit;
}
.pillar-subtitle .age-tag {
    color: var(--forest);
}

/* Third pillar hovers to gold — push the age-tag to forest-deep so it
   reads cleanly as a bolder shade of the surrounding text on gold bg. */
.pillars .pillar:nth-child(3):hover .age-tag {
    color: var(--forest-deep);
}

/* Single "Read more" CTA beneath the pillars row */
.pillars-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.pillars-cta a {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest-deep);
    background: var(--cream);
    border: 1.5px solid var(--cream);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pillars-cta a:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

/* ── Contact section — centered ── */
#contact { text-align: center; }
#contact .section-text { margin-left: auto; margin-right: auto; }

/* ── Larger kickers (section-label) — applies across home + sub-pages ── */
.section-label {
    font-size: clamp(1.35rem, 1.9vw, 1.7rem);
    letter-spacing: 0.015em;
}
.page-header .section-label {
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

/* ── Home page: Vision/Purpose section takes the same dark treatment
   as the "Coming Up" event band ── */
body.home #about {
    background: var(--forest);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
body.home #about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(122,158,126,0.22) 0%, transparent 60%);
    pointer-events: none;
}
body.home #about .container { position: relative; z-index: 1; }
body.home #about .section-title { color: var(--cream); }
body.home #about .section-text { color: rgba(247,244,239,0.88); }
body.home #about .offerings-pill {
    border-color: rgba(247,244,239,0.22);
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(255,255,255,0.04));
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.06);
}
body.home #about .offerings-chip {
    box-shadow:
        0 2px 3px rgba(0, 0, 0, 0.22),
        0 8px 18px -6px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
body.home #about .offerings-segment { color: var(--sage-muted); }
body.home #about .offerings-segment.is-active { color: var(--forest-deep); }
body.home #about .offerings-segment:not(.is-active):hover { color: var(--cream); }

/* Our Vision → Roots-to-Rise sage. Our Purpose → yellow. Both chip
   + title colour-shift as you switch between the two. */
body.home #about .offerings-pill[data-active="0"] .offerings-chip { background: #BEDBBB; }
body.home #about .offerings-pill[data-active="1"] .offerings-chip { background: #E4C66A; }

body.home #about .vp-panel[data-vp="vision"] .section-title { color: #BEDBBB; }
body.home #about .vp-panel[data-vp="purpose"] .section-title { color: #E4C66A; }

/* ── Home page: centred content across every section ── */
.home section > .container > .fade-up,
.home .section-label,
.home .section-title,
.home .why-text,
.home .why-text p,
.home .section-text,
.home .patron-card,
.home .about-content,
.home .mission-copy,
.home .who-copy,
.home .vision-copy,
.home .team-summary,
.home .team-bio,
.home .event-body,
.home .contact-body {
    text-align: center;
}
.home .why-text p,
.home .section-text,
.home .about-content p,
.home .mission-copy p,
.home .vision-copy p,
.home .team-bio p {
    margin-left: auto;
    margin-right: auto;
}

/* Body paragraphs stay left-aligned inside the centred container so
   they read as prose; kickers and titles remain centred. */
.home .why-text p,
.home .why-text ul,
.home .why-text ol,
.home .team-bio p,
.home .team-home-member p,
.home .mission-copy p,
.home .vision-copy p {
    text-align: left;
}

/* ── Programme pages: top segmented pill nav + panel transition ── */
.offerings-nav {
    padding: 6.25rem 1.5rem 1.25rem;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 10;
}
.offerings-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.offerings-nav-label {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}
.offerings-pill {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, rgba(237,232,223,0.55), rgba(247,244,239,0.2));
    padding: 4px;
    border: 1px solid var(--cream-dark);
    border-radius: 999px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow:
        inset 0 1px 2px rgba(30, 43, 31, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.6);
}
.offerings-chip {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / 3);
    background: var(--cream-dark);
    border-radius: 999px;
    transition: transform 680ms cubic-bezier(0.32, 0.72, 0, 1),
                box-shadow 480ms ease;
    z-index: 1;
    box-shadow:
        0 1px 1px rgba(30, 43, 31, 0.06),
        0 4px 12px -4px rgba(30, 43, 31, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(30, 43, 31, 0.05);
}
.offerings-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}
.offerings-pill[data-active="0"] .offerings-chip { transform: translateX(0); }
.offerings-pill[data-active="1"] .offerings-chip { transform: translateX(100%); }
.offerings-pill[data-active="2"] .offerings-chip { transform: translateX(200%); }
.offerings-segment {
    position: relative;
    z-index: 2;
    padding: 0.55rem 1rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.015em;
    color: var(--sage);
    text-align: center;
    text-decoration: none;
    transition: color 560ms cubic-bezier(0.32, 0.72, 0, 1);
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}
.offerings-segment .seg-last { display: inline; }
.offerings-segment.is-active {
    color: var(--forest-deep);
    cursor: default;
}
.offerings-segment:not(.is-active):hover {
    color: var(--forest);
}
@media (max-width: 680px) {
    .offerings-nav { padding: 4.75rem 1rem 0.9rem; }
    .offerings-nav-label { font-size: 0.92rem; margin-bottom: 0.55rem; }
    .offerings-pill { max-width: 100%; }
    .offerings-segment {
        padding: 0.5rem 0.3rem;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.2;
    }
    .offerings-pill:not(.is-two) .offerings-segment .seg-last { display: block; }
    .offerings-pill.is-two .offerings-segment {
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
        white-space: nowrap;
    }
}

/* ── Home: Vision / Purpose pill navigator ── */
.vp-nav {
    text-align: center;
    margin-bottom: 2.5rem;
}
.offerings-pill.is-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 440px;
}
.offerings-pill.is-two .offerings-chip {
    width: calc((100% - 8px) / 2);
}
.offerings-pill.is-two[data-active="1"] .offerings-chip {
    transform: translateX(100%);
}
button.offerings-segment {
    background: transparent;
    border: 0;
}
.vp-panels {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.vp-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 620ms;
}
.vp-panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0s;
}
@media (max-width: 680px) {
    .offerings-pill.is-two .offerings-chip {
        width: calc((100% - 8px) / 2);
    }
}

/* Programme page: reduced page-header top padding (nav above handles spacing) */
.programme-page .page-header {
    padding-top: 1.25rem;
}

/* Each programme tab carries its colour on the pill navigator chip
   + matches the same colour on the body of the page (below the white
   top section). */
.offerings-nav .offerings-pill[data-active="0"] .offerings-chip { background: #BEDBBB; }
.offerings-nav .offerings-pill[data-active="1"] .offerings-chip { background: #E4C66A; }
.offerings-nav .offerings-pill[data-active="2"] .offerings-chip { background: var(--gold); }

/* Programme page bodies keep the cream background site-wide; colour
   lives only on the pill navigator chip and on the home pillar tiles. */

/* Programme page switch: a ghost snapshot of the old panel is placed on top
   of the swapped-in new panel, then fades out while the new panel does a
   gentle fade-up beneath. Kept tight so the cream bg never shows through. */
.programme-page { position: relative; }

.programme-panel {
    opacity: 1;
    transition: opacity 220ms ease-out;
}
.programme-panel.is-entering { opacity: 0.85; }

.programme-ghost {
    position: absolute;
    margin: 0;
    pointer-events: none;
    z-index: 20;
    opacity: 1;
    transition: opacity 360ms ease-out;
    will-change: opacity;
}
.programme-ghost.is-gone { opacity: 0; }

/* Upcoming notice strip — soft gold tint to echo the Resourced
   programme colour and the urgency banner, without being heavy. */
.upcoming-notice {
    width: 100%;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: #F1E3BD;
    border-top: 1px solid #E4D3A4;
    border-bottom: 1px solid #E4D3A4;
}

.upcoming-notice > * {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-notice .notice-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.upcoming-notice .notice-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.upcoming-notice .notice-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 0.9rem;
    line-height: 1.6;
}

.upcoming-notice a {
    display: inline-block;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 162, 101, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.upcoming-notice a:hover {
    color: var(--forest);
    border-bottom-color: var(--forest);
}

@media (max-width: 768px) {
    .upcoming-notice { padding: 1.5rem 1.25rem; }
    .upcoming-notice .notice-title { font-size: 1.2rem; }
}

/* ── Mobile overflow guards ── */
@media (max-width: 480px) {
    .insta-grid blockquote.instagram-media {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .contact-btn {
        padding: 0.9rem 1rem;
        font-size: 0.75rem;
        gap: 0.55rem;
        max-width: 100%;
        white-space: nowrap;
        letter-spacing: 0.02em;
    }
    .contact-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    .instagram .section-title {
        font-size: 1.75rem;
        overflow-wrap: anywhere;
    }
    .insta-follow {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        white-space: nowrap;
        letter-spacing: 0.02em;
        max-width: 100%;
    }
    .insta-follow svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    .contact-body .insta-follow {
        padding: 0.85rem 1rem;
    }
}

/* ── Mobile pillar colours ──
   Desktop hovers each tile to its pillar colour. On mobile there's no
   hover, so colour them in by default so each section pops. */
@media (max-width: 768px) {
    .pillars .pillar:nth-child(1) {
        background: #BEDBBB;
        border-color: var(--sage-muted);
    }
    .pillars .pillar:nth-child(2) {
        background: #E4C66A;
        border-color: var(--gold);
    }
    .pillars .pillar:nth-child(3) {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--forest-deep);
    }
    .pillars .pillar:nth-child(3) h3,
    .pillars .pillar:nth-child(3) .pillar-subtitle,
    .pillars .pillar:nth-child(3) p,
    .pillars .pillar:nth-child(3) .pillar-list li,
    .pillars .pillar:nth-child(3) .pillar-icon {
        color: var(--forest-deep);
    }
    .pillars .pillar:nth-child(1) .pillar-icon,
    .pillars .pillar:nth-child(2) .pillar-icon {
        color: var(--forest);
    }
}
