:root {
    --forest: #243f33;
    --forest-deep: #172b23;
    --terracotta: #b86a45;
    --sand: #f4eadb;
    --cream: #fffaf2;
    --ink: #2b2119;
    --muted: #776a5d;
    --pool: #4d9aa6;
    --line: rgba(43, 33, 25, 0.12);
    --shadow: 0 24px 70px rgba(36, 63, 51, 0.16);
    --radius-lg: 34px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(184, 106, 69, 0.16), transparent 32rem),
        linear-gradient(180deg, var(--cream), #f8f0e4 52%, var(--sand));
    font-family: "Nunito Sans", "Trebuchet MS", sans-serif;
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    width: min(1180px, calc(100% - 32px));
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.86);
    box-shadow: 0 14px 45px rgba(36, 63, 51, 0.12);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 999px;
    background: var(--forest);
    padding: 0.25rem;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 1.4rem);
}

.main-nav a {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--forest);
}

.language-switch {
    display: inline-flex;
    gap: 0.25rem;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(36, 63, 51, 0.08);
}

.language-switch button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--forest);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.42rem 0.6rem;
}

.language-switch button.active {
    background: var(--forest);
    color: var(--cream);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 4.2rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.hero-media {
    position: relative;
    min-height: 650px;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(23, 43, 35, 0.62));
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 2;
    padding: 1.2rem;
    border-radius: 26px;
    background: rgba(255, 250, 242, 0.86);
    backdrop-filter: blur(14px);
}

.hero-card span,
.eyebrow {
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-card strong {
    display: block;
    color: var(--forest);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.98;
}

.hero-copy {
    padding: clamp(0.5rem, 3vw, 2rem);
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.98;
}

h1 {
    max-width: 680px;
    margin: 0.7rem 0 1rem;
    color: var(--forest-deep);
    font-size: clamp(3.2rem, 8vw, 7.2rem);
    letter-spacing: -0.06em;
}

h2 {
    margin: 0.6rem 0 1rem;
    color: var(--forest-deep);
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    letter-spacing: -0.045em;
}

h3 {
    color: var(--forest);
    font-size: 1.55rem;
}

.hero-lead {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.site-footer,
.feature-list,
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--forest);
    color: var(--cream);
    box-shadow: 0 14px 35px rgba(36, 63, 51, 0.2);
}

.btn.ghost,
.btn.map {
    border: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.78);
    color: var(--forest);
}

.btn.text-link {
    min-height: auto;
    padding-inline: 0.3rem;
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.hero-facts {
    margin-top: 1.2rem;
}

.hero-facts span,
.feature-list span {
    border: 1px solid rgba(36, 63, 51, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.72);
    color: var(--forest);
    font-weight: 800;
    padding: 0.45rem 0.8rem;
}

.intro-strip,
.section {
    width: min(1180px, calc(100% - 32px));
    margin: 2rem auto 0;
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.intro-strip article,
.contact-card,
.faq-card,
.mood-card,
.location-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, 0.74);
    box-shadow: 0 18px 55px rgba(36, 63, 51, 0.1);
}

.intro-strip article {
    padding: 1.3rem;
}

.intro-strip span {
    color: var(--terracotta);
    font-weight: 900;
}

.intro-strip h2 {
    font-size: 2rem;
}

.intro-strip p,
.section-copy p,
.mood-card p,
.location-section p,
.contact-card p,
.faq-card p,
.price-section p,
.extras-section p {
    color: var(--muted);
}

.split-section,
.location-section,
.contact-section,
.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2rem;
    align-items: center;
    padding-top: 4rem;
}

.image-stack {
    position: relative;
    min-height: 520px;
}

.image-main,
.image-small {
    position: absolute;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-main {
    inset: 0 8% 10% 0;
    width: 78%;
    height: 88%;
    border-radius: 38px;
}

.image-small {
    right: 0;
    bottom: 0;
    width: 46%;
    height: 42%;
    border: 8px solid var(--sand);
    border-radius: 30px;
}

.mood-section {
    padding: 4rem 0 1rem;
}

.price-section {
    padding-top: 4rem;
}

.price-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
    align-items: stretch;
    padding-top: 1rem;
}

.rate-card,
.price-note-card,
.extras-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, 0.78);
    box-shadow: 0 18px 55px rgba(36, 63, 51, 0.1);
}

.rate-card,
.price-note-card {
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.rate-card {
    display: grid;
    align-content: start;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(184, 106, 69, 0.15), transparent 16rem),
        rgba(255, 250, 242, 0.86);
}

.rate-card span,
.calc-result span {
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rate-card strong {
    color: var(--forest-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
}

.rate-card em {
    color: var(--muted);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 900;
}

.discount-list {
    display: grid;
    gap: 0.45rem;
}

.discount-list span {
    border-radius: 999px;
    background: rgba(184, 106, 69, 0.11);
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 900;
    padding: 0.45rem 0.75rem;
}

.price-note-card {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.airbnb-examples {
    display: grid;
    gap: 0.65rem;
}

.airbnb-examples span {
    border: 1px solid rgba(36, 63, 51, 0.1);
    border-radius: 18px;
    background: rgba(36, 63, 51, 0.06);
    color: var(--forest);
    font-weight: 900;
    padding: 0.75rem 0.9rem;
}
.mood-card {
    padding: clamp(1.6rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, rgba(36, 63, 51, 0.92), rgba(23, 43, 35, 0.96)),
        url("../public/terrasse.png") center/cover;
}

.mood-card h2,
.mood-card p {
    max-width: 780px;
    color: var(--cream);
}

.mood-card .eyebrow {
    color: #f2c69d;
}

.gallery-section {
    padding-top: 4rem;
}

.section-heading {
    max-width: 760px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-auto-rows: 230px;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 12px 38px rgba(36, 63, 51, 0.12);
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(4) {
    grid-row: span 2;
}

.location-card {
    overflow: hidden;
    padding: 0.8rem;
}

.inline-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--forest);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.location-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.location-card .btn {
    margin: 0.9rem;
}

.contact-section {
    padding: 4rem 0;
}

.extras-section {
    padding-top: 4rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.extras-grid article {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    padding: 1.35rem;
}

.extras-grid small {
    color: var(--muted);
    font-size: 0.78rem;
}

.contact-card,
.faq-card {
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.contact-card {
    background:
        radial-gradient(circle at top right, rgba(77, 154, 166, 0.18), transparent 18rem),
        rgba(255, 250, 242, 0.82);
}

details {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
}

summary {
    color: var(--forest);
    cursor: pointer;
    font-weight: 900;
}

.site-footer {
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 1rem auto 2rem;
    padding: 1.3rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer strong,
.site-footer a {
    color: var(--forest);
    font-weight: 900;
    text-decoration: none;
}

.site-footer div {
    display: grid;
    gap: 0.15rem;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        border-radius: 28px;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.15rem;
    }

    .hero,
    .split-section,
    .location-section,
    .contact-section,
    .price-layout,
    .extras-grid,
    .intro-strip {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        min-height: 440px;
    }
}

@media (max-width: 720px) {
    .site-header,
    .hero,
    .intro-strip,
    .section,
    .site-footer {
        width: min(100% - 22px, 1180px);
    }

    .brand span {
        display: none;
    }

    .hero {
        margin-top: 2rem;
    }

    h1 {
        font-size: clamp(3rem, 18vw, 4.6rem);
    }

    .hero-copy {
        padding: 0;
    }

    .hero-actions .btn,
    .contact-card .btn {
        width: 100%;
    }

    .image-stack {
        min-height: 420px;
    }

    .image-main {
        width: 86%;
    }

    .image-small {
        width: 58%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-grid img:first-child,
    .gallery-grid img:nth-child(4) {
        grid-row: span 1;
    }
}
