:root {
    --bg: #f8f4ee;
    --bg-soft: #f1e7db;
    --text: #2f2924;
    --muted: #6b625b;
    --muted-dark: #4f463e;
    --primary: #ae6d3c;
    --primary-dark: #8f572c;
    --card: #fffdf9;
    --border: #e4d7ca;
    --shadow: 0 16px 40px rgba(47, 41, 36, 0.08);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

code {
    background: rgba(0,0,0,.04);
    padding: .15rem .4rem;
    border-radius: 6px;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow { width: min(760px, calc(100% - 2rem)); }
.center { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(248, 244, 238, 0.86);
    border-bottom: 1px solid rgba(228, 215, 202, 0.8);
}

.nav-wrap,
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand,
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    height: auto;
    display: block;
}

.header-logo {
    width: min(240px, 42vw);
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    width: min(220px, 60vw);
}

.footer-left p {
    margin: 0;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav a {
    color: var(--muted);
    font-weight: 500;
}

.nav a:hover,
.site-footer a:hover {
    color: var(--primary);
}

.hero {
    min-height: 86vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    padding: 6rem 0;
    max-width: 760px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero .eyebrow { color: #f3dbc7; }

h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin: 0 0 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 650px;
    color: rgba(255,255,255,.9);
}

.hero-home {
    min-height: 92vh;
}

.hero-content-home {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
    padding: 7rem 0 6rem;
}

.hero-location {
    margin: 0 0 1.1rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .8rem;
    font-weight: 700;
    color: #f3dbc7;
}

.hero-home h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    margin-bottom: 1.2rem;
}

.hero-home .hero-text {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 780px;
    margin: 0 auto;
}

.hero-info {
    margin: 1.25rem 0 0;
    font-size: 1rem;
    letter-spacing: .04em;
    color: rgba(255,255,255,.92);
}

.hero-home .hero-actions {
    justify-content: center;
    margin-top: 2.2rem;
}

.hero-home .btn-primary {
    padding: 1rem 1.6rem;
    min-width: 160px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    transition: .2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
    border-color: rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.btn-secondary.dark {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255,255,255,.75);
}

.btn-light {
    color: var(--text);
    background: #fff;
    border-color: var(--border);
}

.section { padding: 5rem 0; }
.warm { background: var(--bg-soft); }

.two-cols {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.rounded-image,
.card {
    border-radius: var(--radius);
}

.rounded-image {
    box-shadow: var(--shadow);
}

.welcome-section {
    overflow: hidden;
}

.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    gap: 2.2rem;
    align-items: center;
}

.welcome-content h2 {
    max-width: 11ch;
}

.welcome-content p {
    color: var(--muted);
    max-width: 62ch;
}

.welcome-media {
    position: relative;
}

.welcome-image {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
    background: rgba(255, 253, 249, .96);
    color: var(--text);
    border: 1px solid rgba(228, 215, 202, .92);
    border-radius: 18px;
    padding: .95rem 1.1rem;
    box-shadow: 0 18px 44px rgba(47, 41, 36, 0.14);
}

.price-badge strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.price-badge-label {
    font-size: .92rem;
    color: var(--muted);
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.feature-card {
    background: rgba(255, 253, 249, .85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: .35rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.section-heading.with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: .5rem;
}

.section-heading.with-icon > div {
    text-align: center;
}

.section-favicon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
}

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

.card {
    background: var(--card);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(47, 41, 36, 0.12);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.35rem;
    margin-bottom: .65rem;
}

.card-body p {
    margin: 0;
    color: var(--muted);
}

.card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.intro { color: var(--muted); }

.contact-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #f6eee4;
}

.footer-left p,
.footer-links {
    margin: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.footer-credit {
    color: var(--muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-button {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    color: var(--text);
}

.link-button:hover { color: var(--primary); }

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 100;
}

.modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 20, 17, 0.58);
}

.modal-dialog {
    position: relative;
    width: min(760px, calc(100% - 2rem));
    max-height: calc(100vh - 4rem);
    overflow: auto;
    margin: 2rem auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: .9rem;
    right: 1rem;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
}

.legal-content {
    margin-top: 1rem;
}

.legal-lines {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border-radius: 18px;
    border: 1px solid var(--border);
}

.legal-row {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 1rem 1.5rem;
    align-items: start;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(120, 95, 71, .14);
}

.legal-row:last-child {
    border-bottom: 0;
}

.legal-label {
    font-weight: 700;
    color: var(--text);
}

.legal-value {
    color: var(--muted-dark);
    line-height: 1.65;
}

.legal-value a {
    font-weight: 700;
}

.legal-block,
.cookie-pref-card {
    margin: 0;
    padding: 1rem;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.legal-block {
    margin-top: 1.5rem;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    padding: 1rem 0;
    background: rgba(35, 28, 22, .94);
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,.2);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.cookie-banner p {
    margin: .4rem 0 0;
    color: rgba(255,255,255,.88);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.cookie-pref-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-pref-card h3,
.legal-block h3 {
    margin-bottom: .4rem;
}

.cookie-pref-card p,
.legal-block p {
    margin: 0;
}

.cookie-badge {
    white-space: nowrap;
    border-radius: 999px;
    padding: .45rem .8rem;
    background: #e8dfd4;
    border: 1px solid var(--border);
    font-size: .9rem;
    font-weight: 700;
}

.cookie-badge.active {
    background: #e8efe7;
}

.toggle-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.toggle-wrap input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.toggle {
    width: 58px;
    height: 32px;
    border-radius: 999px;
    background: #d0c3b7;
    position: relative;
    transition: .2s ease;
}

.toggle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    transition: .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.toggle-wrap input:checked + .toggle {
    background: var(--primary);
}

.toggle-wrap input:checked + .toggle::after {
    transform: translateX(26px);
}

.modal-actions {
    margin-top: 1.5rem;
}

.accommodations-section {
    background: var(--bg);
}

.accommodations-intro {
    max-width: 760px;
    margin: 0 auto;
}

.accommodations-list {
    display: grid;
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.lodging-card {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.lodging-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lodging-kicker {
    margin: 0 0 .35rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
}

.lodging-content h3 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: .45rem;
}

.lodging-subtitle {
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text);
}

.lodging-description {
    margin: 0 0 1.15rem;
    color: var(--muted);
    max-width: 60ch;
}

.lodging-accordion {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 1.2rem;
}

.lodging-detail {
    background: rgba(248, 244, 238, 0.72);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.lodging-detail summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
    padding-right: 3rem;
}

.lodging-detail summary::-webkit-details-marker {
    display: none;
}

.lodging-detail summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary);
    font-weight: 700;
}

.lodging-detail[open] summary::after {
    content: '−';
}

.lodging-detail-content {
    padding: 0 1.15rem 1rem;
    border-top: 1px solid rgba(228, 215, 202, 0.9);
}

.lodging-detail-content p {
    margin: .7rem 0 0;
    color: var(--muted);
}

.lodging-detail-content p:first-child {
    margin-top: .9rem;
}

.exterior-section {
    padding-top: 20px;
}

.exterior-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: center;
}

.exterior-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.exterior-content {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.exterior-features {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.exterior-features li {
    position: relative;
    padding-left: 18px;
    color: #4f463e;
}

.exterior-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #b67c52;
    font-size: 20px;
    line-height: 1;
}

.contact-section {
    background: linear-gradient(180deg, rgba(248,244,238,1) 0%, rgba(246,238,228,1) 100%);
}

.contact-intro {
    max-width: 720px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.contact-panel,
.pricing-card,
.highlight-pill {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-main-card {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-lines p {
    margin: 0 0 .95rem;
    color: var(--muted);
}

.contact-lines p:last-child {
    margin-bottom: 0;
}

.contact-lines strong {
    color: var(--text);
}

.contact-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.pricing-grid {
    display: grid;
    gap: 1rem;
}

.pricing-card {
    padding: 1.35rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    justify-content: center;
}

.pricing-card strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    line-height: 1.05;
    color: var(--text);
}

.pricing-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    font-weight: 700;
}

.pricing-card span:last-child {
    color: var(--muted);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(174,109,60,.12), rgba(255,253,249,1));
}

.stay-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-pill {
    padding: .95rem 1.2rem;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 1024px) {
    .cards-4,
    .cards-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .exterior-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .exterior-media img {
        min-height: 280px;
    }

    .exterior-content {
        padding: 24px;
    }

    .exterior-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .two-cols,
    .cards-2,
    .welcome-grid,
    .welcome-features,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .welcome-image {
        min-height: 320px;
    }

    .price-badge {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: fit-content;
        max-width: calc(100% - 2rem);
    }

    .legal-row {
        grid-template-columns: 1fr;
        gap: .25rem;
    }

    .nav-wrap,
    .footer-wrap,
    .cookie-banner-inner,
    .cookie-pref-card {
        flex-direction: column;
    }

    .nav-wrap,
    .footer-wrap {
        align-items: center;
    }

    .brand-logo {
        width: 100%;
        justify-content: center;
    }

    .nav {
        justify-content: center;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-logo-link {
        justify-content: center;
        width: 100%;
    }

    .header-logo,
    .footer-logo {
        width: min(220px, 70vw);
    }

    .section-heading.with-icon {
        flex-direction: column;
        gap: .5rem;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-content-home {
        padding: 6rem 0 5rem;
    }

    .hero-home h1 {
        font-size: clamp(2.7rem, 11vw, 4.3rem);
    }

    .hero-info {
        font-size: .95rem;
    }

    .footer-links {
        align-items: center;
        justify-content: center;
    }

    .modal-dialog {
        padding: 1.25rem;
    }

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

    .lodging-media img {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .lodging-content {
        padding: 1.35rem;
    }
}