@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;700;800&display=swap");

:root {
    --bg: #efe4d2;
    --panel: rgba(255, 250, 242, 0.78);
    --panel-strong: #fff9f0;
    --text: #18312b;
    --muted: #6d6e61;
    --forest: #21453c;
    --forest-deep: #152520;
    --rust: #b86e42;
    --sand: #dfc7a5;
    --line: rgba(24, 49, 43, 0.12);
    --shadow: 0 24px 60px rgba(21, 37, 32, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(184, 110, 66, 0.18), transparent 28%),
        linear-gradient(180deg, #f4ebdd 0%, #eadbc7 100%);
    color: var(--text);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    min-height: 92vh;
    padding: 2rem clamp(1.25rem, 3vw, 3rem) 4rem;
    background-size: cover;
    background-position: center;
    color: #fdf9f2;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 5rem;
}

.brand,
.topbar__links a {
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar__links {
    display: flex;
    gap: 1.5rem;
}

.hero__content {
    max-width: 760px;
    padding: clamp(1rem, 4vw, 3rem) 0;
}

.eyebrow,
.intro-card__kicker,
.booking-teaser__eyebrow,
.calendar-card__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.82;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 600;
    line-height: 0.95;
}

h1 {
    font-size: clamp(3.6rem, 10vw, 7rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.1rem);
    max-width: 14ch;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.hero__lead,
.panel p,
.booking-teaser li,
.booking-form-card p {
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero__lead {
    max-width: 58ch;
    margin: 1.5rem 0 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--rust);
    color: #fff8f2;
}

.button--ghost {
    border-color: rgba(255, 248, 242, 0.56);
    color: #fff8f2;
    background: rgba(255, 248, 242, 0.08);
}

.button--full {
    width: 100%;
}

main {
    padding: 0 clamp(1rem, 3vw, 2rem) 4rem;
}

.panel {
    width: min(1200px, 100%);
    margin: -3rem auto 1.5rem;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-xl);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.panel--intro {
    margin-top: -6rem;
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.intro-grid,
.panel--split,
.booking-layout,
.service-grid,
.contact-grid {
    display: grid;
    gap: 1.25rem;
}

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

.intro-card,
.booking-teaser,
.calendar-card,
.booking-form-card,
.service-card,
.contact-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid var(--line);
}

.intro-card__kicker {
    color: var(--rust);
    opacity: 1;
}

.panel--split,
.booking-layout,
.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    min-height: 100%;
}

.contact-card--accent {
    background:
        linear-gradient(160deg, rgba(184, 110, 66, 0.92), rgba(127, 69, 32, 0.96)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%);
    color: #fff8f1;
}

.contact-label {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-card--accent .contact-label {
    color: rgba(255, 248, 241, 0.72);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-pill {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(33, 69, 60, 0.09);
    color: var(--forest);
    font-weight: 700;
}

.booking-teaser {
    background:
        linear-gradient(160deg, rgba(33, 69, 60, 0.94), rgba(21, 37, 32, 0.96)),
        radial-gradient(circle at top left, rgba(223, 199, 165, 0.15), transparent 32%);
    color: #fff8f1;
}

.booking-teaser ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

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

.gallery-card {
    overflow: hidden;
    min-height: 220px;
    border-radius: 22px;
    background: #ddd0bd;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-card--tall {
    grid-row: span 2;
}

.gallery-card--wide {
    grid-column: span 1;
}

.calendar-stack {
    display: grid;
    gap: 1rem;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.legend {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    display: inline-block;
}

.legend--free {
    background: rgba(33, 69, 60, 0.16);
}

.legend--booked {
    background: rgba(184, 110, 66, 0.82);
}

.legend--past {
    background: rgba(24, 49, 43, 0.08);
}

.calendar-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

.calendar-card__occupancy {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.55rem;
}

.calendar-grid--head {
    margin-bottom: 0.55rem;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calendar-weeks {
    display: grid;
    gap: 0.55rem;
}

.day {
    min-height: 5.5rem;
    padding: 0.55rem;
    border-radius: 18px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.55);
}

.day--free {
    background: rgba(33, 69, 60, 0.08);
}

.day--booked {
    background: rgba(184, 110, 66, 0.18);
    border-color: rgba(184, 110, 66, 0.24);
}

.day--past,
.day--muted {
    background: rgba(24, 49, 43, 0.05);
    color: rgba(24, 49, 43, 0.46);
}

.day--today {
    outline: 2px solid rgba(33, 69, 60, 0.42);
}

.day__number {
    font-weight: 800;
}

.day__status {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-form-card {
    background: var(--panel-strong);
}

.booking-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    gap: 0.45rem;
}

.form-row label {
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(24, 49, 43, 0.14);
    border-radius: 16px;
    background: #fffdf8;
    color: var(--text);
    font: inherit;
}

.messages,
.form-errors,
.field-errors {
    display: grid;
    gap: 0.6rem;
}

.message,
.form-errors ul,
.field-errors ul {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    list-style: none;
}

.message--success {
    background: rgba(33, 69, 60, 0.14);
    color: var(--forest);
}

.message--error,
.form-errors ul,
.field-errors ul {
    background: rgba(184, 110, 66, 0.14);
    color: #7f4520;
}

@media (max-width: 960px) {
    .intro-grid,
    .panel--split,
    .booking-layout,
    .gallery-grid,
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-card--tall {
        grid-row: span 1;
    }
}

@media (max-width: 720px) {
    .topbar,
    .topbar__links,
    .intro-grid,
    .panel--split,
    .booking-layout,
    .gallery-grid,
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: start;
        flex-direction: column;
    }

    .topbar__links {
        display: flex;
        flex-wrap: wrap;
    }

    .panel {
        margin-top: 1rem;
    }

    .panel--intro {
        margin-top: -3rem;
    }

    .calendar-grid {
        gap: 0.35rem;
    }

    .day {
        min-height: 4.8rem;
        padding: 0.45rem;
    }
}
