:root {
    --green-base: #f3efe7;
    --green-dark: #1e5a44;
    --green-soft: #2c5b4b;
    --green-text: #264b3f;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: system-ui;
    background: var(--green-base);
}

/* NAVBAR */
.navbar-shell {
    position: relative;
}

.navbar-top {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(30,90,68,0.18);
    box-shadow: 0 12px 26px rgba(18,60,45,0.1);
}

.logo-amodo {
    width: 180px;
}

/* HOME GRID */
.home-shell {
    display: grid;
    gap: 26px;
    margin-bottom: 26px;
}

/* HERO */
.home-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.home-hero-main {
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(243,239,231,0.96), rgba(220,231,221,0.9));
    border: 1px solid rgba(30,90,68,0.22);
    padding: 34px 20px;
    text-align: center;
}

.home-kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-soft);
}

.home-logo {
    width: min(280px, 75vw);
    display: block;
    margin: 14px auto 10px;
}

.home-title {
    margin: 0;
    font-family: "Didot", "Bodoni MT", serif;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1.04;
    color: #123c2d;
}

.home-subtitle {
    margin: 9px 0 0;
    color: var(--green-soft);
    font-size: clamp(18px, 3vw, 28px);
}

.home-copy {
    max-width: 700px;
    margin: 14px auto 0;
    line-height: 1.62;
    color: var(--green-text);
}

/* BUTTONS */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    border: 1px solid rgba(18,60,45,0.3);
}

.home-btn.main {
    background: #1e5a44;
    color: #fff;
}

.home-btn.alt {
    background: #fff;
    color: #1e5a44;
}

/* RAIL */
.home-hero-rail {
    display: grid;
    grid-template-rows: repeat(2, minmax(150px, 1fr));
    gap: 12px;
}

.hero-rail-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(30,90,68,0.2);
    background: #f5f1e8;
}

.hero-rail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* QUOTE */
.quote-block {
    text-align: center;
    background: #fff;
}

.quote-block p {
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.3;
    margin: 0;
    font-family: "Didot", serif;
    color: #16503d;
}

/* MENU CIRCLE */
.section-title {
    margin: 0 0 12px;
    font-family: "Didot", serif;
    font-size: clamp(28px, 4vw, 44px);
}

.home-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 14px;
}

.menu-circle-card {
    text-align: center;
    padding: 12px;
}

.menu-circle-card img {
    width: min(320px, 90%);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    object-fit: cover;
    border: 5px solid #f2ece1;
}

.menu-circle-card h4 {
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* SPLIT STORY */
.split-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(30,90,68,0.2);
    background: #f6f2e9;
}

.split-story.alt {
    background: #e6eee6;
}

.split-copy {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-copy p {
    line-height: 1.6;
}

.split-media {
    min-height: 320px;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NEWSLETTER */
.newsletter-box {
    background: #f7f0e4;
    text-align: center;
    border-radius: 14px;
    padding: 34px 18px;
    border: 1px solid rgba(30,90,68,0.2);
}

.newsletter-box .big {
    display: block;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1;
    font-weight: 700;
    color: #1e5a44;
    margin: 10px 0;
}

/* SOCIAL GRID */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 10px;
}

.social-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

/* GALLERY */
.home-gallery-wrap {
    position: relative;
    overflow: hidden;
}

.home-gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0 12px;
}

.home-gallery-track .section-img {
    flex: 0 0 300px;
    flex-basis: min(300px, 78vw);
    width: min(300px, 78vw);
    max-width: 300px;
    scroll-snap-align: start;
}

.gallery-arrow {
    position: absolute;
    top: calc(50% - 8px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #123c2d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 3;
}

.gallery-arrow.left { left: -8px; }
.gallery-arrow.right { right: -8px; }

/* CONTACTS */
.contacts-shell {
    background: #fff;
    border: 1px solid rgba(30,90,68,0.2);
    border-radius: 16px;
    padding: 20px;
}

.contacts-toggle {
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: #1e5a44;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.contacts-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px;
}

.contact-item {
    background: #f9f6ef;
    border: 1px solid rgba(30,90,68,0.16);
    border-radius: 10px;
    padding: 10px 12px;
}

.contact-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #34604f;
    margin-bottom: 4px;
}

.contact-value,
.contact-value a {
    color: #17392f;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.contact-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-chip {
    display: inline-flex;
    text-decoration: none;
    border-radius: 999px;
    background: #2f6a55;
    color: #fff;
    padding: 8px 12px;
    font-weight: 700;
}

/* HERO TITLE IMAGE SIZES */
.hero-title-image.small { max-width: 220px; }
.hero-title-image.medium { max-width: 420px; }
.hero-title-image.large { max-width: 680px; }
.hero-title-image.full { width: 100%; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-hero-grid,
    .split-story,
    .split-story.alt,
    .home-menu-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .home-hero-rail {
        grid-template-rows: repeat(2, minmax(180px, 1fr));
    }

    .split-media {
        min-height: 220px;
    }
}