@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
    --color-primary: #558b2f;
    /* Warm Green */
    --color-primary-light: #85bb5c;
    --color-primary-dark: #33691e;
    --color-secondary: #8d6e63;
    /* Earthy Brown */
    --color-accent: #ffa000;
    /* Warm Amber */
    --color-text: #4e342e;
    /* Dark Brown */
    --color-bg: #fdfbf7;
    /* Warm Off-white */
    --color-white: #ffffff;
    --font-base: 'Zen Maru Gothic', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.text-sm {
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-xs {
    font-size: 0.85rem;
    line-height: 1.4;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-500 {
    color: #6b7280;
}

.text-green-800 {
    color: #065f46;
}

.font-bold {
    font-weight: 700;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.mr-2 {
    margin-right: 0.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.rounded-lg {
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bg-white {
    background-color: #ffffff;
}

/* Responsive line break helpers */
.br-only-pc {
    display: none;
}

.br-only-sp {
    display: inline;
}

@media (min-width: 769px) {
    .br-only-pc {
        display: inline;
    }

    .br-only-sp {
        display: none;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.4;
}

.section-title {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.0);
    /* Transparent initially */
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.header-contact i {
    width: 22px;
    height: 22px;
}

.header-contact.is-visible {
    display: inline-flex;
}

.header-contact:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.logo img {
    height: 45px;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
    height: 35px;
}

.nav-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.nav-btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.header-cta {
    display: none;
}

.header-cta.is-visible {
    display: inline-flex;
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.98);
    }

    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .site-header nav {
        gap: 8px;
        flex-shrink: 0;
    }

    .header-contact {
        width: 38px;
        height: 38px;
    }

    .header-contact i {
        width: 18px;
        height: 18px;
    }

    .header-cta {
        font-size: 0.9rem;
        padding: 8px 18px;
        letter-spacing: 0.03em;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
    }

    .logo img {
        height: 40px;
    }

    .site-header.scrolled .logo img {
        height: 32px;
    }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    min-height: 100vh;
    /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight dark overlay for contrast */
    z-index: 1;
}

/* Content Box inside Parallax */
.content-box {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(5px);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.content-box.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.content-box p {
    font-size: 1.1rem;
    color: #5d4037;
    margin-bottom: 1.5rem;
}

/* Hero Specific */
.hero-section {
    align-items: flex-end;
    text-align: center;
    color: white;
    padding-bottom: clamp(60px, 12vh, 140px);
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: clamp(40px, 10vh, 100px);
    }
}

.hero-content {
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    /* Large title */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-title__location {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-title__tagline {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: white;
    padding: 18px 45px 34px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, background-color 0.3s;
}

.hero-cta .cta-main {
    display: inline-flex;
    align-items: center;
    line-height: 1.1;
}

.hero-cta .cta-note {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.hero-cta:hover {
    transform: scale(1.05);
    background-color: #ffb300;
}

@media (max-width: 480px) {
    .hero-cta {
        padding: 16px 26px 30px;
        font-size: 1.1rem;
    }

    .hero-cta .cta-note {
        bottom: 8px;
        font-size: 0.7em;
    }
}

/* Standard Sections (Non-parallax) */
.standard-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.standard-section.pricing-section {
    background-color: #f8f5ef;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Vegetable Grid */
.veg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.veg-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.veg-card:hover {
    transform: translateY(-5px);
}

.veg-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px;
}

/* Vegetable gallery hover card */
.vegetable-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.vegetable-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.vegetable-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vegetable-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: left;
}

.vegetable-card-overlay h3 {
    font-size: 1.3rem;
}

.vegetable-card-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.vegetable-card:hover .vegetable-card-overlay {
    opacity: 1;
}

.vegetable-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.vegetable-card:hover .vegetable-card-title {
    opacity: 0;
}

.photo-gallery-section {
    background-color: #fff;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.photo-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: none;
    padding: 0;
    aspect-ratio: 1 / 1;
}

.photo-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.photo-gallery-item:hover::after {
    opacity: 1;
}

.photo-gallery-item:hover img {
    transform: scale(1.05);
}

.photo-gallery-item:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.photo-gallery__notice {
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
}

.photo-gallery__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f9fafb;
    color: #6b7280;
    font-weight: 600;
}

.planting-visual {
    margin-top: 60px;
    text-align: center;
}

.planting-visual__title {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
}

.planting-visual__image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    position: relative;
}

.planting-visual__image img {
    width: 100%;
    display: block;
}

.planting-visual__image:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.planting-visual__guide {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    display: none;
}

@media (max-width: 768px) {
    .planting-visual__image {
        cursor: zoom-in;
    }

    .planting-visual__guide {
        display: block;
    }
}

.planting-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.planting-modal.is-visible {
    display: flex;
}

.planting-modal__content {
    position: relative;
    max-width: 90vw;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.planting-modal__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.planting-modal__viewport:active {
    cursor: grabbing;
}

.planting-modal__content img {
    width: 180%;
    max-width: none;
    min-width: 900px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.planting-modal__hint {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    text-align: center;
}

.planting-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.planting-modal__close:hover,
.planting-modal__close:focus-visible {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2100;
}

.gallery-modal.is-visible {
    display: flex;
}

.gallery-modal__content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal__image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    object-fit: contain;
}

.gallery-modal__caption {
    margin-top: 15px;
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
}

.gallery-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
    background: rgba(0, 0, 0, 0.9);
}

body.is-gallery-modal-open {
    overflow: hidden;
}

body.is-planting-modal-open {
    overflow: hidden;
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border: 1px solid #eee;
}

.expanding-content .pricing-card {
    color: var(--color-text);
}

.pricing-header {
    background: var(--color-primary);
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-body {
    padding: 30px;
    text-align: center;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 10px 0;
}

.price-sub {
    font-size: 0.9rem;
    color: #888;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0 10px;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--color-primary);
    margin-right: 10px;
}

/* Campaign Box */
.campaign-section {
    margin-top: 50px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(255, 160, 0, 0.2);
    position: relative;
}

.campaign-tag {
    background: #e65100;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}

/* Supporter Membership */
.supporter-section {
    background: #fffaf3;
}

.supporter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 160, 0, 0.12);
    color: #9a5b00;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.supporter-eyebrow-break {
    display: none;
    height: 10px;
}

.supporter-eyebrow-break::before {
    content: "";
    display: block;
}

.supporter-lead {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-weight: 500;
}

.supporter-price-block {
    margin: 12px 0 18px;
}

.supporter-price-display {
    font-size: 2.4rem;
}

.supporter-overview {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
    justify-items: center;
}

.supporter-summary,
.supporter-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f1e6d5;
    box-shadow: 0 12px 30px rgba(85, 139, 47, 0.08);
}

.supporter-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff2d9 100%);
    border-color: #f6d7a8;
}

.supporter-summary {
    width: 100%;
    max-width: 720px;
}

.supporter-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.supporter-checklist {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
}

.supporter-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed #efe4d4;
}

.supporter-checklist i {
    color: var(--color-primary);
    margin-top: 3px;
}

.supporter-note {
    color: #4b5563;
    margin-top: 12px;
}

.supporter-plan {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f7f2e7;
    border: 1px solid #efe3d2;
}

.supporter-plan__label {
    display: inline-block;
    font-size: 0.85rem;
    color: #9a7c64;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.supporter-plan__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 6px 0;
    color: var(--color-primary-dark);
}

.supporter-plan__desc {
    font-size: 0.95rem;
    color: #6b7280;
}

.supporter-card__badge {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 6px 14px rgba(85, 139, 47, 0.25);
}

.supporter-card__list {
    margin: 20px 0;
    padding-left: 20px;
    color: #4b5563;
}

.supporter-card__list li {
    margin-bottom: 8px;
}

.supporter-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(255, 160, 0, 0.3);
    margin-top: 10px;
}

.supporter-cta:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.supporter-cta--large {
    padding: 18px 46px;
    font-size: 1.1rem;
}

.supporter-cta--full {
    width: 100%;
    margin-top: 18px;
}

.supporter-block {
    margin-top: 50px;
}

.supporter-pricing-card {
    margin-top: 40px;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.supporter-return-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.supporter-return-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #f0e5d6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.supporter-return-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f8e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    overflow: hidden;
}

.supporter-return-card__icon i {
    width: 22px;
    height: 22px;
}

.supporter-return-card__media {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f8f2e8;
}

.supporter-return-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.supporter-return-card ul {
    padding-left: 18px;
    color: #4b5563;
}

.supporter-return-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: auto;
}

.supporter-table-wrap {
    border-radius: 18px;
    border: 1px solid #f0e5d6;
    background: #ffffff;
    overflow-x: auto;
}

.supporter-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.supporter-table th,
.supporter-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #f3eadc;
    font-size: 0.98rem;
}

.supporter-table th {
    background: #f7f1e6;
    color: #8a5c42;
    font-weight: 700;
}

.supporter-table tr:last-child td {
    border-bottom: none;
}

.supporter-quote {
    background: #fff2d9;
    border-left: 4px solid var(--color-accent);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(255, 160, 0, 0.18);
}

.supporter-quote__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7a4f00;
    margin-bottom: 12px;
}

.supporter-quote__list {
    margin: 16px 0;
    padding-left: 20px;
    color: #4b5563;
}

.supporter-quote__footer {
    font-weight: 600;
    color: #7a4f00;
}

.supporter-retention-list {
    padding-left: 20px;
    color: #4b5563;
}

.supporter-cta-area {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .supporter-summary {
        padding: 24px;
    }

    .supporter-pricing-card .pricing-body {
        padding: 24px;
    }

    .supporter-pricing-card {
        margin-top: 32px;
    }

    .supporter-price-display {
        font-size: 2rem;
    }

    .supporter-subtitle {
        font-size: 1.4rem;
    }

    .supporter-table {
        min-width: 520px;
    }
}

@media (min-width: 1024px) {
    .supporter-eyebrow-break {
        display: block;
    }
}

/* Access Map */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 400px;
}

/* Footer */
.site-footer {
    background-color: var(--color-primary-dark);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-nav {
    display: inline-flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    position: relative;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-box {
        padding: 40px 25px;
    }
}

/* Flow Section */
.flow-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .flow-step {
        flex-direction: row;
        gap: 40px;
    }

    .flow-step:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.flow-image {
    flex: 1;
    position: relative;
}

.flow-image img {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.flow-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.flow-content {
    flex: 1;
    text-align: left;
}

.flow-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Access Slider */
.access-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

.access-slider-window {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.access-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.access-slider-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.access-slider-figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.access-slider-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.access-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-slider-caption {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    padding: 0 2rem 2rem;
    font-weight: 500;
}

.access-slider-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-primary);
}

.access-slider-button:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.access-slider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.access-slider-button--prev {
    left: -20px;
}

.access-slider-button--next {
    right: -20px;
}

.access-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.access-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-slider-dot[aria-current="true"] {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.access-slider-dot:hover {
    background-color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .access-slider-image {
        height: 250px;
    }

    .access-slider-button {
        width: 2.5rem;
        height: 2.5rem;
    }

    .access-slider-button--prev {
        left: 0;
    }

    .access-slider-button--next {
        right: 0;
    }

    .access-slider-caption {
        font-size: 1rem;
        padding: 0 1rem 1.5rem;
    }
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-trigger:hover {
    background-color: #f9f9f9;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
    max-height: 500px;
    /* Arbitrary large height */
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
}

/* Mobile Fixed Footer */
.mobile-fixed-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: auto;
    background: transparent;
    padding: 16px;
    z-index: 999;
    display: none; /* Desktop hidden */
    pointer-events: none;
}

.mobile-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 56px;
    height: 56px;
    background-color: var(--color-secondary);
    color: white;
    padding: 12px 20px;
    border-radius: 28px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(141, 110, 99, 0.4);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    pointer-events: auto;
    white-space: nowrap;
}

.mobile-footer-btn:hover {
    background-color: #6d5247;
    box-shadow: 0 6px 16px rgba(141, 110, 99, 0.5);
    transform: translateY(-2px);
}

.mobile-footer-btn:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 8px rgba(141, 110, 99, 0.3);
}

.mobile-footer-btn i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-footer-btn span {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-fixed-footer {
        display: none; /* 初期状態は非表示 */
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-right: max(16px, env(safe-area-inset-right));
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-fixed-footer.is-visible {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* 固定ボタンがある分、フッター下部に余白を追加 */
    .site-footer {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }
}

/* Back to Top Button */
.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--color-primary); /* Green to contrast with footer button */
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top-btn i {
    width: 18px;
    height: 18px;
}
