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

:root {
    --green-dark: #1a472a;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #b7e4c7;
    --cream: #f5f0e8;
    --earth: #8b6f47;
    --earth-light: #c9a96e;
    --sky: #87ceeb;
    --white: #ffffff;
    --shadow: rgba(26, 71, 42, 0.15);
}

/* Self-hosted type — no Google Fonts / third-party CDN. Licenses in
   assets/fonts/ (Permanent Marker · Apache-2.0, Zilla Slab · SIL OFL 1.1). */
@font-face {
    font-family: 'Permanent Marker';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/permanent-marker-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Zilla Slab';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/zilla-slab-latin-500.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Zilla Slab';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/zilla-slab-latin-600.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Zilla Slab';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/zilla-slab-latin-700.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: 125px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--cream);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes cloudDrift {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

@keyframes butterfly {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0; }
    10% { opacity: 1; }
    25% { transform: translate(30px, -40px) rotate(10deg) scale(1.1); }
    50% { transform: translate(-20px, -80px) rotate(-5deg) scale(1); }
    75% { transform: translate(40px, -40px) rotate(8deg) scale(0.9); }
    90% { opacity: 1; }
    100% { transform: translate(60px, 0) rotate(0deg) scale(0); opacity: 0; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes borderDance {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes badgeShine {
    0% { transform: translateX(-180%) skewX(-20deg); }
    55% { transform: translateX(280%) skewX(-20deg); }
    100% { transform: translateX(280%) skewX(-20deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAV */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 2rem;
    animation: slideDown 0.6s ease;
    transition: box-shadow 0.3s, padding 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow);
    padding: 0 1.5rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--green-pale);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-light) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--sky) 0%, #a8d8ea 40%, var(--green-pale) 60%, var(--green-mid) 100%);
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    filter: blur(3px);
}

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud span {
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 140px;
    height: 46px;
    top: 10%;
    animation: cloudDrift 60s linear infinite;
}

.cloud-1::before {
    width: 58px;
    height: 58px;
    top: -28px;
    left: 24px;
}

.cloud-1::after {
    width: 80px;
    height: 80px;
    top: -38px;
    left: 52px;
}

.cloud-1 span {
    width: 48px;
    height: 48px;
    top: -22px;
    left: 88px;
}

.cloud-2 {
    width: 180px;
    height: 58px;
    top: 20%;
    animation: cloudDrift 80s linear infinite;
    animation-delay: -20s;
}

.cloud-2::before {
    width: 68px;
    height: 68px;
    top: -34px;
    left: 32px;
}

.cloud-2::after {
    width: 92px;
    height: 92px;
    top: -44px;
    left: 60px;
}

.cloud-2 span {
    width: 56px;
    height: 56px;
    top: -26px;
    left: 110px;
}

.cloud-3 {
    width: 120px;
    height: 40px;
    top: 5%;
    animation: cloudDrift 65s linear infinite;
    animation-delay: -40s;
}

.cloud-3::before {
    width: 52px;
    height: 52px;
    top: -24px;
    left: 18px;
}

.cloud-3::after {
    width: 68px;
    height: 68px;
    top: -32px;
    left: 42px;
}

.cloud-3 span {
    width: 40px;
    height: 40px;
    top: -18px;
    left: 74px;
}

.cloud-4 {
    width: 160px;
    height: 52px;
    top: 30%;
    animation: cloudDrift 90s linear infinite;
    animation-delay: -50s;
}

.cloud-4::before {
    width: 62px;
    height: 62px;
    top: -30px;
    left: 28px;
}

.cloud-4::after {
    width: 84px;
    height: 84px;
    top: -40px;
    left: 56px;
}

.cloud-4 span {
    width: 50px;
    height: 50px;
    top: -24px;
    left: 98px;
}

.cloud-5 {
    width: 100px;
    height: 34px;
    top: 14%;
    animation: cloudDrift 75s linear infinite;
    animation-delay: -30s;
}

.cloud-5::before {
    width: 44px;
    height: 44px;
    top: -20px;
    left: 14px;
}

.cloud-5::after {
    width: 60px;
    height: 60px;
    top: -28px;
    left: 34px;
}

.cloud-5 span {
    width: 36px;
    height: 36px;
    top: -16px;
    left: 62px;
}

.hero-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.grass-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.dandelion-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75), -1px -1px 0 rgba(0, 0, 0, 0.75), 1px -1px 0 rgba(0, 0, 0, 0.75), -1px 1px 0 rgba(0, 0, 0, 0.75);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.35) 60%,
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-180%) skewX(-20deg);
    animation: badgeShine 4s ease-in-out infinite;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(4.0rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero h1 span {
    display: inline-block;
    background: linear-gradient(90deg, var(--green-light), var(--earth-light), var(--green-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero p {
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    color: var(--white);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.55;
    animation: fadeInUp 1s ease 0.9s both;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.45);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-primary {
    background: var(--green-light);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(82, 183, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 2rem;
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* AR SAFARI SPLASH */
#safari {
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 55%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

#safari::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
    pointer-events: none;
}

.safari-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.safari-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-dark);
    color: var(--green-pale);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

#safari h2 {
    font-family: 'Zilla Slab', 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

#safari h2 span {
    color: var(--green-mid);
}

.safari-intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.safari-transience {
    font-size: 1.02rem;
    color: #6b5b4a;
    max-width: 640px;
    margin: -1.5rem auto 3rem;
    line-height: 1.65;
    font-style: italic;
}

.safari-creatures {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.safari-creature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.safari-creature-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    border: 2px dashed rgba(62, 122, 78, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 4s ease-in-out infinite;
}

.safari-creature-img::after {
    content: '?';
    position: absolute;
    top: 20px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--green-pale);
    font-family: 'Permanent Marker', cursive;
    font-size: 1.05rem;
    line-height: 26px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(26, 71, 42, 0.35);
}

.safari-creature:nth-child(2) .safari-creature-img { animation-delay: -0.8s; }
.safari-creature:nth-child(3) .safari-creature-img { animation-delay: -1.6s; }
.safari-creature:nth-child(4) .safari-creature-img { animation-delay: -2.4s; }
.safari-creature:nth-child(5) .safari-creature-img { animation-delay: -3.2s; }

.safari-creature-img:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 30px var(--shadow);
    animation-play-state: paused;
}

.safari-creature-img img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: brightness(0) drop-shadow(0 6px 10px rgba(26, 71, 42, 0.25));
    opacity: 0.85;
}

.safari-creature-name {
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    color: var(--green-mid);
    line-height: 1.2;
}

.rusty-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.rusty-portrait {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.rusty-portrait img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: var(--white);
    border: 2px dashed rgba(62, 122, 78, 0.35);
    box-shadow: 0 8px 22px var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.rusty-name {
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    color: var(--earth);
    line-height: 1.2;
}

.rusty-row .rusty-quote {
    position: relative;
    margin: 0;
    padding: 1.1rem 1.5rem;
    background: #fff9ec;
    border: 1px solid rgba(26, 71, 42, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 22px var(--shadow);
    text-align: left;
}

.rusty-row .rusty-quote::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: inherit;
    border-left: 1px solid rgba(26, 71, 42, 0.12);
    border-bottom: 1px solid rgba(26, 71, 42, 0.12);
    transform: translateY(-50%) rotate(45deg);
}

.safari-creatures .rusty-quote,
#safari .rusty-quote {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.15rem;
    color: var(--earth);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.safari-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.safari-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.15);
    border-radius: 50px;
    padding: 0.6rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-dark);
    box-shadow: 0 4px 14px var(--shadow);
}

.safari-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.safari-btn {
    border: none;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.safari-btn .safari-lock {
    color: var(--green-pale);
    flex-shrink: 0;
}

.safari-soon {
    display: inline-block;
    background: var(--earth-light);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.18rem 0.65rem;
    border-radius: 50px;
    margin-left: 0.25rem;
    animation: pulse 2.5s ease-in-out infinite;
}

.safari-wink {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.05rem;
    color: var(--earth);
    margin: 0;
    animation: fadeInUp 0.5s ease;
}

/* ABOUT */
#about {
    background: var(--white);
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.about-image-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-image-caption {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 12px;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.about-feature .icon {
    font-size: 1.3rem;
}

/* FEATURED CAMPAIGNS */
#campa
aigns {
    background: var(--cream);
}

.headline-campaign {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.headline-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.headline-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--green-pale);
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-badge .dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.headline-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.headline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green-light), var(--earth-light));
    border-radius: 10px;
    width: 68%;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

.headline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}

.visual-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: borderDance 10s linear infinite;
}

.visual-circle .emoji-large {
    font-size: 6rem;
    animation: float 4s ease-in-out infinite;
}

.campaigns-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.campaign-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--green-light), var(--earth-light), var(--green-mid));
    background-size: 200% 200%;
    animation: borderDance 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.campaign-card:hover::before {
    opacity: 1;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.card-image-1 { background: linear-gradient(135deg, #e8d5b7, #c9a96e); }
.card-image-2 { background: linear-gradient(135deg, #b7e4c7, #52b788); }
.card-image-3 { background: linear-gradient(135deg, #87ceeb, #4a9bd9); }

.card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-urgent { background: #ff6b6b; color: white; }
.status-active { background: var(--green-light); color: white; }
.status-new { background: var(--earth-light); color: white; }

.card-body {
    padding: 1.5rem;
}

.card-body h4 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.card-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-mid);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s, color 0.3s;
}

.card-link:hover {
    gap: 0.8rem;
    color: var(--green-dark);
}

/* OUR PROMISES */
#meadow {
    padding-bottom: 2rem;
}

#promises {
    background: var(--cream);
    padding-top: 2rem;
}

.promise-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.promise-card {
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 8px 22px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.promise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px var(--shadow);
}

.promise-card .promise-icon {
    display: block;
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 0.9rem;
}

.promise-card h3 {
    color: var(--green-dark);
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.promise-card p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

#promises .rusty-row {
    margin-top: 3rem;
    margin-bottom: 0;
}

/* DAILY CHECK-IN */
#standing {
    background: var(--cream);
    padding: 4.5rem 2rem 5rem;
}

.standing-box {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.12);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 8px 22px var(--shadow);
}

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

.standing-icon {
    font-size: 1.9rem;
    line-height: 1;
}

.standing-head h2 {
    color: var(--green-dark);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.standing-head p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.5;
    margin: 0;
}

.standing-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.5rem 1.4rem;
    margin-bottom: 1.1rem;
}

.standing-list li {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.3rem;
    position: relative;
}

.standing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 700;
}

.standing-fresh {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0 0 0.6rem;
}

.standing-fresh[hidden] {
    display: none;
}

.standing-fresh::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--green-light);
}

.standing-fresh.standing-ok {
    color: var(--green-dark);
    font-weight: 600;
}

.standing-fresh.standing-neutral {
    color: #777;
}

.standing-fresh.standing-neutral::before {
    background: var(--earth-light);
}

.standing-next {
    font-size: 0.86rem;
    color: #777;
    line-height: 1.4;
    margin: 0 0 0.6rem;
}

.standing-next[hidden] {
    display: none;
}

.standing-more {
    margin: 0;
}

.standing-more a {
    color: var(--green-light);
    font-weight: 600;
    text-decoration: none;
}

.standing-more a:hover {
    text-decoration: underline;
}

/* GET INVOLVED / CONTACT */
#get-involved {
    background: linear-gradient(180deg, var(--green-dark) 0%, #0d2818 100%);
    position: relative;
    overflow: hidden;
}

#get-involved .section-header h2 {
    color: var(--white);
}

#get-involved .section-header p {
    color: var(--green-pale);
}

#get-involved .section-header .tag {
    background: var(--green-light);
}

.butterflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    font-size: 1.5rem;
    animation: butterfly 8s ease-in-out infinite;
}

.butterfly:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.butterfly:nth-child(2) { left: 30%; animation-delay: -3s; animation-duration: 12s; }
.butterfly:nth-child(3) { left: 60%; animation-delay: -6s; animation-duration: 9s; }
.butterfly:nth-child(4) { left: 80%; animation-delay: -2s; animation-duration: 11s; }

.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 10;
}

.involve-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 12px 30px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.involve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px var(--shadow);
}

.involve-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

.involve-card h3 {
    color: var(--green-dark);
    font-size: 1.25rem;
    line-height: 1.3;
}

.involve-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.involve-card .btn-primary {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--green-pale);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

/* ============================================================================
   Custom "What's this about?" dropdown — on-brand, on the meadow
   ========================================================================== */
.field-select {
    position: relative;
}

.field-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.field-select-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.field-select-btn:focus-visible,
.field-select-btn[aria-expanded="true"] {
    border-color: var(--green-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

.field-select-btn.is-chosen {
    color: var(--green-pale);
}

.field-select-chevron {
    flex-shrink: 0;
    color: var(--green-light);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.field-select-btn[aria-expanded="true"] .field-select-chevron {
    transform: rotate(180deg);
}

.field-select-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    background: #fffdf6;
    border: 1px solid rgba(26, 71, 42, 0.12);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(26, 71, 42, 0.22);
}

.field-select-opt {
    padding: 0.7rem 0.9rem;
    border-radius: 9px;
    color: var(--green-dark);
    font-size: 0.97rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.field-select-opt::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 2px solid rgba(26, 71, 42, 0.25);
    flex-shrink: 0;
}

.field-select-opt:hover,
.field-select-opt[aria-selected="true"] {
    background: rgba(82, 183, 136, 0.12);
}

.field-select-opt.selected::before {
    background: var(--green-light);
    border-color: var(--green-light);
}

.field-select-opt.selected {
    font-weight: 700;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.captcha-box.success {
    border-color: var(--green-light);
    background: rgba(82, 183, 136, 0.1);
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.captcha-checkbox.checked {
    background: var(--green-light);
    border-color: var(--green-light);
}

.captcha-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: 900;
    font-size: 1rem;
}

.captcha-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.captcha-text strong {
    color: var(--green-light);
}

.captcha-math {
    background: rgba(82, 183, 136, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    color: var(--green-light);
    font-size: 0.95rem;
}

.captcha-input-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.captcha-input-row input {
    width: 70px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.captcha-input-row input:focus {
    border-color: var(--green-light);
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.form-submit:hover::before {
    width: 400px;
    height: 400px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(82, 183, 136, 0.3);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.form-success .check {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--green-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--green-pale);
}

/* FOOTER */
footer {
    background: #0a1f13;
    color: var(--green-pale);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    animation: float 3s ease-in-out infinite;
}

.footer-brand span {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--green-pale);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(183, 228, 199, 0.5);
}
.footer-suppliers {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(183, 228, 199, 0.4);
    margin: 8px 0 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        background: rgba(26, 71, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        overflow: hidden;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .headline-campaign {
        grid-template-columns: 1fr;
    }

    .headline-visual {
        padding: 2rem;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .safari-creatures {
        gap: 1rem;
    }

    .safari-creature-img {
        width: 100px;
        height: 100px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1.25rem;
    }

    .footer-links {
        gap: 0.9rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .safari-creature-img {
        width: 84px;
        height: 84px;
    }

    .safari-creature-name {
        font-size: 0.9rem;
    }

    .rusty-row {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .rusty-row .rusty-quote {
        text-align: center;
    }

    .rusty-row .rusty-quote::before {
        left: 50%;
        top: -8px;
        border-left: none;
        border-bottom: none;
        border-right: 1px solid rgba(26, 71, 42, 0.12);
        border-top: 1px solid rgba(26, 71, 42, 0.12);
        transform: translateX(-50%) rotate(45deg);
    }

    .rusty-portrait img {
        width: 96px;
        height: 96px;
    }
}
/* Honeypot field — hidden from people, invisible to bots' target-ability */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* ============================================================================
   FIELD PAGES — /fields/ hub + /fields/<slug>/ (rendered by fields.php)
   Neutralises the homepage's full-bleed `section` padding and gives the field
   pages their own consistent, centred rhythm.
   ========================================================================== */

body.field-page section {
    padding: 0;
}

body.field-page .section-header {
    margin-bottom: 0;
}

/* Active nav item on field pages ("Fields"). */
.nav-active {
    color: var(--green-light) !important;
    font-weight: 700;
}

/* The main column. */
.fp-main {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

/* Header — clears the fixed nav. */
.fp-header {
    padding-top: 6.5rem;
    text-align: center;
}

.fp-breadcrumb {
    margin: 0 0 1.2rem;
    color: #777;
    font-size: 0.9rem;
}

.fp-breadcrumb a {
    color: inherit;
}

.fp-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--green-dark);
    line-height: 1.15;
    margin: 0 0 0.5rem;
}

.fp-town {
    color: var(--green-mid);
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.fp-story {
    color: #333;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
}

/* Blocks. */
.fp-block {
    margin-top: 3.25rem;
}

.fp-block h2 {
    color: var(--green-dark);
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 0.5rem;
}

.fp-lead {
    color: #555;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    text-align: center;
    line-height: 1.6;
}

/* Feature chips (walk practicalities). */
.fp-chips {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0 0 1.6rem;
}

.fp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.12);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    box-shadow: 0 4px 14px var(--shadow);
}

/* Threat callout. */
.fp-threat-card {
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-left: 4px solid #c98a3b;
    border-radius: 14px;
    padding: 1.5rem 2rem;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 8px 22px var(--shadow);
}

.fp-threat-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a5a3b;
    background: rgba(201, 138, 59, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}

.fp-threat-card p {
    color: #444;
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;
}

.fp-ref {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-mid);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 71, 42, 0.3);
    padding-bottom: 1px;
}

a.fp-ref:hover {
    border-bottom-color: var(--green-mid);
}

/* Planning-ref flag — a small badge that flags a non-portal document link
   (red ✕) or explains what a ref links to (info "i"). Tooltip is pure CSS
   (attr(data-tooltip)), so it's CSP-safe — no inline JS. */
.fp-ref-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
}

.fp-flag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    cursor: help;
    vertical-align: middle;
    transform: translateY(1px);
}

.fp-flag-warn {
    background: #c0392b;
    color: #fff;
}

.fp-flag-info {
    background: rgba(26, 71, 42, 0.14);
    color: var(--green-dark);
}

.fp-flag::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(3px);
    background: var(--green-dark);
    color: #f4f0e6;
    font-size: 0.78rem;
    font-weight: 400;
    font-style: normal;
    font-family: inherit;
    line-height: 1.45;
    text-align: left;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    white-space: normal;
    width: max-content;
    max-width: 240px;
    box-shadow: 0 6px 18px var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 20;
}

.fp-flag::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--green-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 20;
}

.fp-flag:hover::after,
.fp-flag:focus::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fp-flag:hover::before,
.fp-flag:focus::before {
    opacity: 1;
}

/* Where it is (OSM link from registry coords). */
.fp-where {
    text-align: center;
    color: #555;
    margin-top: 1.5rem;
    font-size: 0.98rem;
}

.fp-where a {
    color: var(--green-mid);
    font-weight: 700;
}

/* Getting there (from the registry landing). */
.fp-getting p {
    color: #555;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 1rem;
}

/* Make a day of it — community facilities. */
.fp-facility-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.fp-facility-mascot {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.fp-facility-card {
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 8px 22px var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}

.fp-facility-card--featured {
    max-width: 760px;
    border: 2px solid rgba(201, 138, 59, 0.4);
    background: linear-gradient(180deg, #fdf8ec, #fffdf4);
    padding: 1.75rem 2rem;
}

.fp-facility-icon {
    font-size: 1.9rem;
    line-height: 1;
    flex: 0 0 auto;
}

.fp-facility-card--featured .fp-facility-icon {
    font-size: 2.4rem;
}

.fp-facility-kind {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #8a5a3b;
    background: rgba(201, 138, 59, 0.12);
    border-radius: 50px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 0.45rem;
}

.fp-facility-name {
    color: var(--green-dark);
    font-size: 1.15rem;
    margin: 0 0 0.35rem;
}

.fp-facility-card--featured .fp-facility-name {
    font-size: 1.35rem;
}

.fp-facility-note {
    color: #555;
    line-height: 1.65;
    margin: 0 0 0.5rem;
}

.fp-facility-map {
    color: var(--green-mid);
    font-weight: 700;
    font-size: 0.92rem;
}

.fp-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
    max-width: 760px;
    margin: 1.25rem auto 0;
}

.fp-facility-grid .fp-facility-card {
    margin: 0;
}

.fp-lookafter {
    max-width: 720px;
    margin: 2.25rem auto 0;
    color: #6b6b63;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
    padding: 0 0.5rem;
}

/* How-you-can-help. */
.fp-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.25rem;
}

.fp-help-card {
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 8px 22px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fp-help-card h4 {
    color: var(--green-dark);
    font-size: 1.05rem;
    margin: 0;
}

.fp-help-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.fp-help-card .card-link {
    align-self: flex-start;
    font-weight: 700;
    color: var(--green-mid);
    text-decoration: none;
}

.fp-help-card .card-link:hover {
    text-decoration: underline;
}

/* Closer + back-to-hub. */
.fp-closer {
    text-align: center;
    color: #777;
    margin: 3rem 0 0;
}

.fp-back {
    text-align: center;
    margin: 2rem 0 0;
}

/* Hub. */
.fp-hub-count {
    text-align: center;
    margin: 1.75rem 0 2.5rem;
}

.fp-hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.14);
    border-radius: 50px;
    padding: 0.55rem 1.3rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green-dark);
    box-shadow: 0 4px 14px var(--shadow);
}

/* Mobile. */
@media (max-width: 600px) {
    .fp-main {
        padding: 0 1.1rem 3rem;
    }
    .fp-header {
        padding-top: 5.5rem;
    }
    .fp-block {
        margin-top: 2.5rem;
    }
    .fp-chips {
        gap: 0.5rem;
    }
    .fp-threat-card {
        padding: 1.2rem 1.4rem;
    }
}

/* ============================================================================
   RUSTY'S FIELD DESK — the campaigns section as an in-tray
   ========================================================================== */

/* Evergreen gatherings tease under the safari chips. */
.safari-gather {
    margin: 0.25rem 0 2rem;
    font-size: 0.95rem;
    color: var(--green-mid);
    font-weight: 600;
}

/* Rusty's intro panel */
.desk-rusty {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 22px;
    padding: 2rem 2.5rem;
    box-shadow: 0 14px 34px var(--shadow);
}

.desk-rusty .rusty-portrait {
    flex-shrink: 0;
}

.desk-rusty .rusty-name {
    color: var(--green-pale);
}

.desk-rusty .rusty-mood {
    display: block;
    max-width: 170px;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-style: italic;
    line-height: 1.45;
    color: var(--green-pale);
    opacity: 0.85;
    text-align: center;
}

.desk-rusty-quote {
    flex: 1;
    color: var(--green-pale);
    font-size: 1.1rem;
    line-height: 1.6;
}

.desk-rusty-quote p {
    margin: 0 0 1.1rem;
}

.desk-rusty-quote .btn-primary {
    border: none;
    cursor: pointer;
}

/* A group of desk cards */
.desk-group {
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.desk-group-label {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.desk-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    color: var(--white);
}

.desk-tag-live   { background: var(--green-light); }
.desk-tag-soon   { background: var(--earth-light); }
.desk-tag-desk   { background: var(--green-mid); }
.desk-tag-lost   { background: #8a5a3b; }

.desk-group-note {
    color: #777;
    font-size: 0.9rem;
}

/* Desk cards */
.desk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.desk-card {
    background: var(--white);
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 8px 22px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.desk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px var(--shadow);
}

.desk-card h3 {
    color: var(--green-dark);
    font-size: 1.35rem;
    line-height: 1.25;
}

.desk-card h4 {
    color: var(--green-dark);
    font-size: 1.12rem;
    line-height: 1.3;
}

.desk-card p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.desk-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.desk-status {
    flex-shrink: 1;
    min-width: 0;
    white-space: normal;
    text-align: right;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    background: rgba(26, 71, 42, 0.08);
    color: var(--green-mid);
}

.desk-status-live {
    background: var(--green-light);
    color: var(--white);
}

.desk-card .card-link {
    align-self: flex-start;
    font-weight: 700;
    color: var(--green-mid);
    text-decoration: none;
}

.desk-card .card-link:hover {
    text-decoration: underline;
}

/* Headline (Abbots) card */
.desk-card-headline {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border: none;
}

.desk-card-headline h3,
.desk-card-headline h4 {
    color: var(--white);
}

.desk-card-headline p {
    color: var(--green-pale);
}

.desk-card-headline .desk-status-live {
    background: var(--green-light);
}

.desk-card-headline .card-link {
    color: var(--green-pale);
}

/* Mini (evaluating) cards */
.desk-grid-mini {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.desk-card-mini {
    background: #fbf7ec;
    border-style: dashed;
}

.desk-card-post {
    background: transparent;
    border: 2px dashed var(--green-light);
    justify-content: center;
    text-align: center;
    align-items: center;
}

.desk-card-post h4 {
    color: var(--green-mid);
}

.desk-card-post p {
    font-style: italic;
}

/* Under the diggers band */
.desk-group-dim {
    background: #efe7da;
    border-radius: 18px;
    padding: 1.5rem 2rem;
}

.desk-dim-note {
    color: #6b5236;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 820px;
}

/* Inline planning refs inside the "Under the diggers" note — no block spacing. */
.desk-dim-note .fp-ref {
    margin-top: 0;
}

/* Planning deadline ribbon — pinned directly under the fixed nav */
.plan-deadline-ribbon {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--earth-light), var(--green-mid));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 6px 18px var(--shadow);
}

.plan-deadline-ribbon p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.45;
}

.plan-deadline-ribbon strong { font-weight: 800; }

.plan-deadline-ribbon a {
    color: var(--white);
    font-weight: 800;
    text-decoration: underline;
    white-space: nowrap;
}

/* Deadline call-out inside the Abbots Road headline card */
.desk-deadline {
    background: rgba(201, 169, 110, 0.2);
    border-left: 4px solid var(--earth-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5a4326;
}

@media (max-width: 700px) {
    .plan-deadline-ribbon {
        top: 64px;
        padding: 0.5rem 0.9rem;
    }
    .plan-deadline-ribbon p { font-size: 0.82rem; }
}

/* Local Plan action card */
.desk-action {
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.desk-action-inner {
    background: linear-gradient(135deg, var(--earth-light), var(--green-mid));
    border-radius: 22px;
    padding: 2.4rem 2.8rem;
    color: var(--white);
    box-shadow: 0 14px 34px var(--shadow);
}

.desk-action-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.desk-action-inner p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 1.3rem;
}

.desk-action-inner .btn-primary {
    border: none;
    display: inline-flex;
    text-decoration: none;
}

/* Closing line */
.desk-closer {
    text-align: center;
    color: #777;
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Mobile tidy for the desk */
@media (max-width: 700px) {
    .desk-rusty {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .desk-rusty .desk-rusty-quote .btn-primary {
        margin: 0 auto;
    }
    .desk-group-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .desk-card-head {
        flex-wrap: wrap;
    }
    .desk-action-inner {
        padding: 2rem 1.5rem;
    }
}

/* ===== National front-line map + directory ===== */
.national-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}
.national-map-wrap {
    flex: 1.1;
    min-width: 0;
}
.sof-map {
    height: 460px;
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--green-pale);
    box-shadow: 0 8px 24px var(--shadow);
    background: #eaf3ea;
    z-index: 0;
}
.national-count {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    color: var(--green-mid);
    font-weight: 700;
}
.national-dir {
    flex: 0.9;
    min-width: 0;
}
.national-search-label {
    display: block;
    font-weight: 700;
    color: var(--green-mid);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}
.national-search {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--green-pale);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--green-dark);
    background: var(--white);
    margin-bottom: 1rem;
}
.sof-map-groups {
    max-height: 460px;
    overflow-y: auto;
    padding-right: 0.4rem;
}
.sof-map-region {
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    margin: 1rem 0 0.3rem;
}
.sof-map-county {
    color: var(--earth);
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.5rem 0 0.15rem;
}
.sof-map-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sof-map-list li {
    padding: 0.15rem 0;
    font-size: 0.92rem;
}
.sof-map-list a {
    color: var(--green-mid);
    text-decoration: none;
}
.sof-map-list a:hover { text-decoration: underline; }
.sof-map-chip {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    margin-left: 0.3rem;
    vertical-align: middle;
}
.sof-map-dc { background: #f4e0c8; color: #8a5a2b; }
.sof-map-live { background: var(--green-pale); color: var(--green-dark); }
.sof-map-lost { background: #e6ded0; color: #6b5b4a; }
.sof-map-first { background: var(--green-dark); color: #fff; }
.sof-map-empty { color: var(--earth); }
.national-all { margin-top: 1rem; }

/* Abbots — the first field, always pulled out ahead of everywhere else */
.sof-map-premier {
    background: var(--green-pale);
    border: 1px solid var(--green-mid);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    margin: 0 0 0.6rem;
}
.sof-map-premier .sof-map-region { margin-top: 0; }
.sof-map-premier-item {
    font-weight: 700;
    font-size: 0.98rem;
}

/* ===== Fields hub (national grouping) ===== */
.fp-search {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin-top: 1rem;
}
.fp-search input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--green-pale);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--green-dark);
    background: var(--white);
}
.fp-search button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 10px;
    background: var(--green-mid);
    color: var(--white);
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}
.fp-county {
    font-family: 'Permanent Marker', Georgia, serif;
    color: var(--earth);
    font-size: 1.1rem;
    margin: 1.2rem 0 0.5rem;
}
.fp-meta {
    color: var(--earth);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}
.fp-threat-chip {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: #f4e0c8;
    color: #8a5a2b;
}

@media (max-width: 820px) {
    .national-inner { flex-direction: column; }
    .sof-map { height: 320px; }
    .sof-map-groups { max-height: none; }
}

/* ===== Share ===== */
.fp-share-btn {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--green-pale);
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    background: var(--white);
    color: var(--green-mid);
}
.fp-share-btn:hover { background: var(--green-pale); }
.national-social {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.sof-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(150%);
    background: var(--green-dark);
    color: var(--white);
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
    z-index: 1000;
    max-width: 90vw;
}
.sof-toast.show { transform: translateX(-50%) translateY(0); }

/* ===== Planning ref on the national map ===== */
.sof-map-ref {
    font-size: 0.78rem;
    color: var(--earth);
}
.sof-map-ref a {
    color: var(--earth);
    text-decoration: none;
}
.sof-map-ref a:hover { text-decoration: underline; }
.leaflet-popup-content a { color: var(--green-mid); }

/* ===== Permanent labels on the national map ===== */
.sof-map-label {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--green-pale);
    border-radius: 6px;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}
.sof-map-label.leaflet-tooltip-top:before {
    border-top-color: rgba(255, 255, 255, 0.92);
}
.sof-map-label-premier {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    font-size: 0.82rem;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.sof-map-label-premier.leaflet-tooltip-top:before {
    border-top-color: var(--green-dark);
}

/* ===== Rusty's meadow photo carousel (homepage "From the meadow") ===== */

.gal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.gal-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 28px var(--shadow);
}

.gal-track {
    display: flex;
    transition: transform 0.55s ease;
}

.gal-slide {
    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
    position: relative;
}

.gal-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    background: var(--green-pale);
}

.gal-slide-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 2.2rem 1rem 0.7rem;
    background: linear-gradient(180deg, transparent, rgba(10, 20, 12, 0.75));
    color: var(--cream, #f7f1e3);
    font-family: 'Zilla Slab', Georgia, serif;
    font-size: 1.05rem;
    text-align: left;
}

.gal-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 2px solid var(--green-light);
    border-radius: 50%;
    background: var(--cream, #fff);
    color: var(--green-dark);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gal-arrow:hover {
    background: var(--green-light);
    color: #fff;
}

.gal-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 0.8rem;
    flex-basis: 100%;
}

.gal-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--green-pale);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.gal-dot.active {
    background: var(--green-mid);
    transform: scale(1.25);
}

.gal-caption {
    flex-basis: 100%;
    margin: 0.6rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

@media (max-width: 640px) {
    .gal-slide img { height: 280px; }
    .gal-arrow { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    .gal-track { transition: none; }
}

