:root {
    --bg-main: #F9F6F0;
    --bg-white: #FFFFFF;
    --bg-dark-green: #5D6855;
    --bg-light-olive: #A8B3A0;
    --bg-footer: #E8DFC9;
    --text-dark: #2C2C2C;
    --text-gray: #757575;
    --accent-badge: #E8DFC9;
    --border-soft: #CCCCCC;
    --radius-card: 24px;
    --radius-button: 40px;
}

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

body {
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.image-placeholder {
    width: 100%;
    background: #D9D9D9;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: calc(24px + env(safe-area-inset-top));
    padding-top: calc(24px + constant(safe-area-inset-top));
    padding-bottom: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-circle img {
    height: 70%;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 32px;
    font-size: 15px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--bg-light-olive);
}

.header-contacts-btn {
    background: var(--bg-light-olive);
    color: #FFFFFF;
    border-radius: var(--radius-button);
    padding: 20px 24px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* ===== ENRICHMENT SECTION ===== */
.enrichment-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.enrichment-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 700px;
}

.enrichment-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.enrichment-photo-item {
    text-align: center;
}

.enrichment-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 10px;
}

.enrichment-label {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
}

.section-pretitle {
    font-size: 14px;
    color: var(--bg-light-olive);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* DEVELOPING CARD */
.developing-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.06);
}

.developing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.developing-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F5F2EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.tag:hover {
    background: #e9e3d6;
}

.tag:focus-visible {
    outline: 2px solid var(--bg-light-olive);
    outline-offset: 2px;
}

.tag-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200;
}

.tag-modal.is-open {
    display: flex;
}

.tag-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.tag-modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    background: var(--bg-white);
    border-radius: 18px;
    padding: 28px 24px 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
}

.tag-modal__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.tag-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-gray);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.tag-modal__close:hover {
    background: #f2efe8;
    color: var(--text-dark);
}

.tag-modal__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-gray);
}


/* ===== HERO SECTION ===== */
.hero-section {
    padding: 40px 0 60px;
}

.hero-card {
    background: var(--bg-footer);
    border-radius: 32px;
    padding: 56px 56px;
}

.hero-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hero-card-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.hero-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.hero-card-sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.hero-card-image {
    border-radius: 24px;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 60px 0;
}

.badge-tag {
    display: inline-block;
    background: var(--accent-badge);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-tag--outline {
    background: transparent;
    border: 1px solid var(--border-soft);
}

.badge-tag--green {
    background: var(--bg-light-olive);
    color: #FFFFFF;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading--wide {
    max-width: 700px;
}

.subsection-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--text-dark);
}

.body-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.body-text--muted {
    color: var(--text-gray);
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.two-col-layout--reverse {
    grid-template-columns: 2fr 3fr;
}

.col-side {
    position: sticky;
    top: 100px;
}

.side-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.side-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.side-image--walk img {
    aspect-ratio: 1 / 1;
}

/* ===== INFO CARD ===== */
.info-card {
    background: var(--bg-footer);
    border-radius: 20px;
    padding: 28px;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* ===== STACKED IMAGES ===== */
.col-images-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stacked-image {
    border-radius: 20px;
    overflow: hidden;
}

.stacked-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0;
}

/* ===== EQUIPMENT SECTION ===== */
.equipment-section {
    padding: 40px 0 60px;
}

.equipment-card {
    background: var(--bg-footer);
    border-radius: 32px;
    padding: 56px;
}

.equipment-intro {
    max-width: 900px;
    margin-bottom: 40px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.equipment-col .subsection-heading {
    margin-top: 0;
}

/* ===== CALLOUT ===== */
.equipment-callout {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.callout-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.callout-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ===== RITUALS ===== */
.rituals-intro {
    max-width: 900px;
    margin-bottom: 40px;
}

.rituals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.ritual-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #F0F0F0;
}

.ritual-card .subsection-heading {
    margin-top: 0;
    margin-bottom: 16px;
}

.rituals-banner {
    background: var(--bg-light-olive);
    border-radius: 24px;
    padding: 48px 56px;
}

.rituals-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.rituals-banner-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.rituals-banner-text:last-child {
    margin-bottom: 0;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: 40px 0 0;
}

.final-cta-card {
    background: var(--bg-footer);
    border-radius: 32px;
    padding: 64px;
    text-align: center;
}

.final-cta-icon {
    margin: 0 auto 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.final-cta-btn {
    background: var(--bg-light-olive);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-button);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* ===== FOOTER ===== */
.footer-wrapper {
    background: var(--bg-footer);
    margin-top: 80px;
}

.footer {
    padding-block: 60px 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-block {
    max-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #D9D9D9;
}

.footer-logo-text {
    font-weight: 700;
}

.footer-description {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 16px;
    line-height: 1.5;
}

.footer-column-title {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #D9D9D9;
}

.footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
}
.detail-hero-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 260px;
    background: #D9D9D9;
    margin-bottom: 24px;
}
.detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .container {
        padding: 0 24px;
    }

    .hero-card-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 40px;
    }

    .two-col-layout,
    .two-col-layout--reverse {
        grid-template-columns: 1fr;
    }

    .col-side {
        position: static;
    }

    .equipment-card {
        padding: 40px;
    }

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

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

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 20px;
    }

    .header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-card-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 26px;
    }

    .equipment-card {
        padding: 28px;
    }

    .equipment-callout {
        flex-direction: column;
        padding: 24px;
    }

    .rituals-banner {
        padding: 32px 24px;
    }

    .final-cta-card {
        padding: 40px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .stacked-image img {
        height: 200px;
    }
    
}
