:root {
    --cream: #fff8ea;
    --cream-soft: #f7eddc;
    --linen: #efe2cf;
    --green: #173b28;
    --green-soft: #31583d;
    --copper: #a55d2b;
    --copper-dark: #7f421d;
    --wood: #3b2a1d;
    --ink: #17251c;
    --muted: #6e655c;
    --line: rgba(59, 42, 29, .14);
    --shadow-soft: 0 20px 60px rgba(88, 61, 35, .16);
    --shadow-card: 0 14px 34px rgba(88, 61, 35, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 12%, rgba(216, 167, 111, .2), transparent 28rem),
        linear-gradient(180deg, var(--cream), #fbf1df 58%, #fffaf0);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
p { color: var(--muted); }

.site-nav {
    padding: 16px 0;
    background: rgba(255, 248, 234, .9);
    border-bottom: 1px solid rgba(59, 42, 29, .1);
    backdrop-filter: blur(14px);
    transition: padding .24s ease, box-shadow .24s ease, background .24s ease;
}
.site-nav.is-scrolled {
    padding: 9px 0;
    background: rgba(255, 248, 234, .97);
    box-shadow: 0 10px 26px rgba(58, 40, 24, .08);
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    color: var(--green);
    text-decoration: none;
}
.brand-logo {
    width: clamp(150px, 14vw, 205px);
    height: auto;
    display: block;
}
.nav-link {
    position: relative;
    color: var(--ink);
    font-weight: 600;
    font-size: .95rem;
    padding-inline: .55rem !important;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: .55rem;
    right: .55rem;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after { transform: scaleX(1); }

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 132px 0 128px;
    background: var(--cream-soft);
}
.hero-bg {
    position: absolute;
    inset: 72px 0 0;
    background:
        linear-gradient(90deg, rgba(255,248,234,.96) 0%, rgba(255,248,234,.78) 36%, rgba(255,248,234,.22) 62%, rgba(255,248,234,.08) 100%),
        linear-gradient(0deg, rgba(118,73,31,.18), rgba(255,255,255,0) 42%),
        url('../img/hero-warm.webp') right center / cover no-repeat;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 72px 0 0;
    background: radial-gradient(circle at 3% 36%, rgba(203, 120, 50, .18), transparent 24rem);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-copy { max-width: 700px; }
.eyebrow, .section-kicker {
    margin: 0 0 16px;
    color: var(--copper);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero h1, h2 {
    margin: 0;
    color: var(--green);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: .98;
    letter-spacing: 0;
}
.hero h1 { font-size: clamp(3.2rem, 7.4vw, 6.9rem); }
.hero-lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: #20372b;
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.btn {
    min-height: 50px;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 800;
    box-shadow: none !important;
}
.btn-primary {
    --bs-btn-bg: var(--copper);
    --bs-btn-border-color: var(--copper);
    --bs-btn-hover-bg: var(--copper-dark);
    --bs-btn-hover-border-color: var(--copper-dark);
    --bs-btn-active-bg: var(--copper-dark);
    --bs-btn-active-border-color: var(--copper-dark);
}
.btn-outline {
    color: var(--green);
    border: 1px solid rgba(23,59,40,.55);
    background: rgba(255,248,234,.64);
}
.btn-outline:hover {
    color: var(--cream);
    border-color: var(--green);
    background: var(--green);
}

.hero-stat-section {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    padding-bottom: 42px;
}
.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(121, 78, 39, .12);
    border-radius: 34px;
    background: rgba(255, 250, 239, .92);
    box-shadow: 0 18px 48px rgba(82, 55, 31, .16);
    backdrop-filter: blur(12px);
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 20px 24px;
    border-right: 1px solid rgba(121, 78, 39, .1);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat strong { display: block; color: var(--green); font-size: 1.02rem; }
.hero-stat span:last-child { color: var(--ink); font-size: .94rem; line-height: 1.45; }
.stat-icon, .feature-icon {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    color: var(--copper);
}
.stat-icon { width: 42px; height: 42px; }
.stat-icon svg, .feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section { padding: 92px 0; }
.soft-band { background: rgba(239, 226, 207, .56); }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 4vw, 4.1rem); }
.section-heading { max-width: 790px; margin-bottom: 42px; }
.section-heading.compact { margin-bottom: 28px; }

.intro-section { padding-top: 58px; }
.check-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 600;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .38em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
}
.check-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: .72em;
    width: 6px;
    height: 10px;
    border: solid var(--cream);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.warm-image-composition {
    position: relative;
    padding: 0 0 72px 56px;
}
.composition-main {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
.composition-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(44%, 330px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 10px solid #fff7e9;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transform: rotate(3deg);
}

.nature-section { padding-top: 58px; }
.nature-card {
    height: 100%;
    text-align: center;
}
.nature-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}
.nature-card h3 {
    margin: 18px 0 4px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 800;
}
.nature-card p { margin: 0; font-size: .92rem; }

.feature-side-image {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 0 22px 22px 0;
    box-shadow: var(--shadow-soft);
}
.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.feature-item {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(121,78,39,.12);
    border-radius: 18px;
    background: rgba(255, 248, 234, .72);
    box-shadow: 0 10px 24px rgba(89, 64, 39, .08);
}
.feature-icon { width: 36px; height: 36px; margin-bottom: 20px; }
.feature-item h3 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 1rem;
    font-weight: 800;
}
.feature-item p { margin: 0; font-size: .92rem; }

.location-banner {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    background: var(--linen);
}
.location-banner picture,
.location-banner-img {
    width: 100%;
    height: 100%;
}
.location-banner-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
}
.location-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,248,234,.94), rgba(255,248,234,.74) 42%, rgba(255,248,234,.12));
}
.location-card {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 60px;
}
.location-card p { color: #4d463f; }
.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.location-pills span {
    padding: 10px 14px;
    border: 1px solid rgba(23,59,40,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
    color: var(--green);
    font-weight: 800;
    font-size: .9rem;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: var(--linen);
    box-shadow: var(--shadow-card);
    text-decoration: none;
}
.gallery-item picture,
.gallery-item img { width: 100%; height: 100%; }
.gallery-item img {
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.04);
}

.cta-section { padding-top: 78px; }
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 54px;
    border: 1px solid rgba(121,78,39,.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 18%, rgba(165,93,43,.14), transparent 19rem),
        linear-gradient(135deg, #fff6e7, #eedbc1);
    box-shadow: var(--shadow-soft);
}
.cta-panel h2 { margin-bottom: 16px; }
.cta-panel p { max-width: 720px; margin-bottom: 0; }
.contact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 24px;
    font-weight: 800;
}
.contact-lines a { color: var(--copper-dark); text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines span { color: var(--green); }

.site-footer {
    padding: 30px 0;
    color: rgba(255,248,234,.78);
    background: var(--green);
    font-size: .92rem;
}

@media (max-width: 1199.98px) {
    .hero-stat { padding: 18px 16px; }
    .feature-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    html { scroll-padding-top: 76px; }
    .site-nav { padding: 10px 0; }
    .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 248, 234, .98);
    }
    .nav-link::after { display: none; }
    .hero {
        min-height: 720px;
        padding: 118px 0 112px;
    }
    .hero-bg {
        background:
            linear-gradient(90deg, rgba(255,248,234,.96), rgba(255,248,234,.76) 55%, rgba(255,248,234,.24)),
            url('../img/hero-warm.webp') center / cover no-repeat;
    }
    .hero-stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 24px; }
    .hero-stat { border-bottom: 1px solid rgba(121, 78, 39, .1); }
    .hero-stat:nth-child(2n) { border-right: 0; }
    .hero-stat:last-child { grid-column: 1 / -1; justify-content: center; border-bottom: 0; }
    .section { padding: 72px 0; }
    .intro-section { padding-top: 46px; }
    .warm-image-composition { padding-left: 0; }
    .composition-main { min-height: 380px; }
    .feature-side-image { min-height: 360px; border-radius: 22px; }
    .location-card { padding: 42px; }
    .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-panel { align-items: flex-start; flex-direction: column; padding: 40px; }
}

@media (max-width: 575.98px) {
    .brand-text strong { font-size: .98rem; }
    .hero { min-height: 650px; padding-bottom: 96px; }
    .hero h1 { font-size: clamp(2.7rem, 12.4vw, 3.65rem); }
    .hero-actions .btn { width: 100%; }
    .hero-stat-section { margin-top: -48px; }
    .hero-stat-row { grid-template-columns: 1fr; }
    .hero-stat, .hero-stat:nth-child(2n), .hero-stat:last-child {
        grid-column: auto;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(121, 78, 39, .1);
    }
    .hero-stat:last-child { border-bottom: 0; }
    h2 { font-size: 2.35rem; }
    .section { padding: 58px 0; }
    .composition-main { min-height: 300px; }
    .composition-card { width: 58%; border-width: 7px; }
    .nature-img { height: 210px; }
    .feature-icon-grid, .gallery-strip { grid-template-columns: 1fr; }
    .feature-item { min-height: auto; }
    .location-banner { min-height: 650px; border-radius: 20px; }
    .location-banner::after { background: rgba(255,248,234,.86); }
    .location-card { padding: 30px; }
    .cta-panel { padding: 30px; border-radius: 22px; }
    .contact-lines { display: grid; }
}
