:root {
    --forest-950: #102a22;
    --forest-900: #173f32;
    --forest-800: #20513f;
    --forest-700: #2f6a52;
    --forest-500: #628f77;
    --sage-200: #dfe8df;
    --sage-100: #edf3ed;
    --cream: #f7f1e8;
    --cream-deep: #eee2d2;
    --warm-white: #fffdf9;
    --gold: #c6a468;
    --gold-dark: #9f7b3e;
    --ink: #1a2923;
    --muted: #66736c;
    --border: rgba(30, 70, 54, .12);
    --shadow-sm: 0 16px 45px rgba(24, 55, 43, .09);
    --shadow-lg: 0 30px 90px rgba(21, 48, 38, .16);
    --radius-lg: 36px;
    --radius-md: 24px;
    --font-heading: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--warm-white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); }

.topbar {
    color: rgba(255,255,255,.78);
    background: var(--forest-950);
    font-size: 12px;
    padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,.78); text-decoration: none; }
.topbar a:hover { color: #fff; }

.main-navbar {
    padding: 11px 0;
    background: rgba(255,253,249,.94);
    border-bottom: 1px solid rgba(23,63,50,.08);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, padding .25s ease;
}
.main-navbar.scrolled { box-shadow: 0 10px 35px rgba(22,55,43,.09); padding: 8px 0; }
.navbar-brand,
.footer-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.site-logo { width: 112px; height: 50px; object-fit: contain; object-position: center; }
.footer-logo { width: 126px; height: 55px; object-fit: contain; filter: brightness(0) invert(1); opacity: .94; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy small { margin-top: 0; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.navbar-nav { gap: 2px; }
.navbar .nav-link {
    position: relative;
    padding: 10px 11px !important;
    color: #52625a;
    font-size: 12px;
    font-weight: 800;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 3px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--forest-900); }
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: 0; box-shadow: none !important; }
.btn-call {
    display: inline-flex;
    align-items: center;
    border-radius: 15px;
    border: 1px solid rgba(23,63,50,.12);
    background: var(--forest-900);
    color: #fff;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 800;
}
.btn-call:hover { background: var(--forest-950); color: #fff; }
.btn-call span { display: flex; flex-direction: column; line-height: 1.15; }
.btn-call small { color: rgba(255,255,255,.58); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }

.btn {
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-luxury {
    color: #fff;
    background: linear-gradient(135deg, var(--forest-800), var(--forest-950));
    border: 1px solid var(--forest-900);
    box-shadow: 0 14px 35px rgba(23,63,50,.2);
}
.btn-luxury:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(23,63,50,.26); }
.btn-outline-luxury {
    color: var(--forest-900);
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(23,63,50,.18);
}
.btn-outline-luxury:hover { color: var(--forest-950); background: #fff; transform: translateY(-2px); }
.text-link { color: var(--forest-800); font-weight: 800; text-decoration: none; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(5px); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(198,164,104,.17), transparent 28%),
        linear-gradient(135deg, #fbf7f0 0%, #f2eee6 48%, #e8efe8 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 155px;
    background: linear-gradient(to top, var(--warm-white), transparent);
    pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.hero-glow-one { width: 340px; height: 340px; right: 2%; top: 5%; background: rgba(198,164,104,.13); }
.hero-glow-two { width: 260px; height: 260px; left: -90px; bottom: 60px; background: rgba(47,106,82,.12); }
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(47,106,82,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.68);
}
.hero h1,
.section-heading,
.contact-info-panel h2 {
    font-family: "Newsreader", Georgia, serif;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: .98;
}
.hero h1 { max-width: 740px; margin: 22px 0 24px; font-size: clamp(50px, 6vw, 78px); }
.hero h1 span { color: var(--forest-700); }
.hero-lead { max-width: 620px; margin-bottom: 31px; color: #5e6d65; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-visual { position: relative; max-width: 610px; margin-left: auto; }
.hero-photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.02 / 1;
    border-radius: 46% 46% 28px 28px;
    border: 9px solid rgba(255,255,255,.72);
    box-shadow: var(--shadow-lg);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 225px;
    padding: 14px 16px;
    border: 1px solid rgba(23,63,50,.1);
    border-radius: 17px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}
.floating-card-top { right: -18px; top: 18%; }
.floating-card-bottom { left: -25px; bottom: 10%; }
.floating-icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; color: var(--forest-800); background: var(--sage-100); }
.floating-card div { display: flex; flex-direction: column; line-height: 1.3; }
.floating-card strong { font-size: 12px; }
.floating-card small { color: var(--muted); font-size: 9px; }
.benefit-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 72px;
    padding: 22px 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-sm);
}
.benefit-strip article { display: flex; align-items: center; gap: 14px; padding: 6px 25px; border-right: 1px solid var(--border); }
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip article > span { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 15px; display: grid; place-items: center; color: var(--forest-800); background: linear-gradient(135deg, var(--sage-100), #f4eadb); }
.benefit-strip article div { display: flex; flex-direction: column; }
.benefit-strip strong { font-size: 13px; }
.benefit-strip small { color: var(--muted); font-size: 10px; }

.section { padding: 105px 0; }
.section-white { background: var(--warm-white); }
.section-heading { margin: 12px 0 24px; font-size: clamp(39px, 4.7vw, 58px); }
.section-copy { color: var(--muted); font-size: 15px; line-height: 1.85; }
.section-head { max-width: 820px; }
.about-collage { position: relative; min-height: 570px; padding: 0 80px 60px 0; }
.about-main-image { width: 100%; height: 510px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow-lg); }
.about-secondary-image { position: absolute; right: 0; bottom: 0; width: 245px; height: 270px; object-fit: cover; border: 8px solid var(--warm-white); border-radius: 28px; box-shadow: var(--shadow-sm); }
.location-badge { position: absolute; left: 30px; bottom: 30px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(23,63,50,.1); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); }
.location-badge > i { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: var(--gold-dark); background: #f7ead8; }
.location-badge div { display: flex; flex-direction: column; }
.location-badge strong { font-size: 11px; }
.location-badge span { color: var(--muted); font-size: 9px; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px 22px; margin: 30px 0; }
.check-grid div { display: flex; gap: 10px; font-size: 12px; font-weight: 800; }
.check-grid i { color: var(--gold-dark); margin-top: 5px; }

.services-section { background: linear-gradient(180deg, #f4eee5 0%, #eef3ee 100%); }
.service-card {
    position: relative;
    height: 100%;
    min-height: 238px;
    padding: 23px 21px;
    border: 1px solid rgba(23,63,50,.11);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.88);
    box-shadow: 0 8px 25px rgba(20,49,38,.035);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.service-card.featured { color: #fff; background: linear-gradient(145deg, var(--forest-800), var(--forest-950)); border-color: transparent; }
.service-label { position: absolute; right: 14px; top: 14px; padding: 5px 8px; border-radius: 999px; color: #f4e5c8; background: rgba(255,255,255,.09); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px; color: var(--forest-800); background: linear-gradient(135deg, var(--sage-100), #f5e9d7); font-size: 17px; }
.featured .service-icon { color: #f2dcae; background: rgba(255,255,255,.1); }
.service-card h3 { margin-bottom: 9px; font-size: 16px; font-weight: 800; }
.service-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.featured h3 { color: #fff; }
.featured p { color: rgba(255,255,255,.7); }

.rooms-section { background: var(--forest-950); color: rgba(255,255,255,.73); }
.rooms-section .section-kicker { color: #d7bd8a; }
.rooms-section .section-heading { color: #fff; }
.rooms-section .section-copy { color: rgba(255,255,255,.68); }
.rooms-lead strong { color: #fff; }
.room-feature-list { display: grid; gap: 14px; margin-top: 30px; }
.room-feature-list article { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.055); }
.room-feature-list article > span { width: 47px; height: 47px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: #f1d7a6; background: rgba(255,255,255,.08); }
.room-feature-list article div { display: flex; flex-direction: column; }
.room-feature-list strong { color: #fff; font-size: 12px; }
.room-feature-list small { color: rgba(255,255,255,.55); font-size: 9px; }
.room-mosaic { display: grid; grid-template-columns: 1.35fr .85fr; grid-template-rows: repeat(2, 235px); gap: 16px; }
.room-photo { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 24px; background: #253f34; cursor: zoom-in; }
.room-photo-large { grid-row: 1 / span 2; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.room-photo:hover img { transform: scale(1.045); }

.gallery-section { background: var(--warm-white); }
.gallery-tabs { gap: 8px; }
.gallery-tabs .nav-link { padding: 10px 15px; border: 1px solid var(--border); border-radius: 999px; color: var(--forest-800); background: #fff; font-size: 11px; font-weight: 800; }
.gallery-tabs .nav-link.active { color: #fff; background: var(--forest-900); border-color: var(--forest-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.gallery-grid-five { grid-template-columns: repeat(5, minmax(0,1fr)); }
.gallery-grid-four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gallery-item { position: relative; overflow: hidden; min-height: 285px; padding: 0; border: 0; border-radius: 20px; background: var(--sage-100); cursor: zoom-in; }
.gallery-grid-five .gallery-item { min-height: 340px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-item > span { position: absolute; inset: auto 14px 14px auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: rgba(16,42,34,.78); opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.92); }
.gallery-item:hover > span { opacity: 1; transform: none; }
.gallery-modal .modal-content { overflow: hidden; border: 0; border-radius: 22px; background: #101712; }
.gallery-modal .modal-header { color: #fff; background: var(--forest-950); border-bottom: 1px solid rgba(255,255,255,.1); }
.gallery-modal .modal-title { color: #fff; }
.gallery-modal .btn-close { filter: invert(1); }
.gallery-modal-image { display: block; width: 100%; max-height: 80vh; object-fit: contain; background: #101712; }

.conditions-section { padding-top: 30px; background: var(--warm-white); }
.conditions-shell { position: relative; overflow: hidden; padding: 62px; border-radius: 34px; color: rgba(255,255,255,.75); background: linear-gradient(140deg, #1f513f 0%, #102a22 70%); box-shadow: var(--shadow-lg); }
.conditions-shell::before { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -170px; border-radius: 50%; background: rgba(198,164,104,.1); }
.section-kicker.light { color: #e2c997; }
.conditions-shell p { max-width: 780px; }
.conditions-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 34px; }
.conditions-steps div { display: flex; flex-direction: column; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.05); }
.conditions-steps span { color: #e4c993; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.conditions-steps strong { margin-top: 8px; color: #fff; font-size: 12px; }
.conditions-steps small { color: rgba(255,255,255,.53); font-size: 9px; }
.conditions-card { position: relative; padding: 31px; border-radius: 24px; color: var(--ink); background: #fff; box-shadow: 0 25px 60px rgba(5,20,14,.22); }
.conditions-icon { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 17px; color: var(--gold-dark); background: #f5ead9; font-size: 21px; }
.conditions-card h3 { font-size: 20px; font-weight: 800; }
.conditions-card p { color: var(--muted); font-size: 12px; }

.reviews-section {
    position: relative;
    overflow: hidden;
    padding-top: 68px;
    padding-bottom: 68px;
    background:
        radial-gradient(circle at 88% 12%, rgba(198,164,104,.16), transparent 24%),
        linear-gradient(180deg, var(--warm-white) 0%, #f2ebdf 100%);
}
.reviews-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}
.reviews-heading-row > div { max-width: 720px; }
.reviews-heading-row .section-heading { margin-bottom: 8px !important; font-size: clamp(31px, 3vw, 43px); }
.reviews-heading-row .section-copy { max-width: 650px; font-size: 13px; }
.reviews-heading-row .section-kicker i { color: #4285f4; font-size: 14px; }
.reviews-google-button { flex: 0 0 auto; padding: 11px 17px; font-size: 10px; }
.reviews-summary-card {
    display: grid;
    grid-template-columns: auto auto minmax(170px,1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    padding: 16px 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
    color: rgba(255,255,255,.7);
    background:
        radial-gradient(circle at 86% 0, rgba(198,164,104,.2), transparent 34%),
        linear-gradient(145deg, var(--forest-800), var(--forest-950));
    box-shadow: 0 17px 42px rgba(9,31,23,.16);
}
.review-source-mark {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #4285f4;
    background: #fff;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}
.review-rating-label {
    display: block;
    color: rgba(255,255,255,.54);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.review-rating-number {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-family: "Newsreader", Georgia, serif;
    font-size: 32px;
    line-height: .95;
}
.review-rating-number span { color: rgba(255,255,255,.42); font-size: 14px; }
.reviews-summary-meta .review-stars { margin: 0 0 4px; }
.reviews-summary-meta p { margin: 0; color: rgba(255,255,255,.56); font-size: 9px; }
.reviews-summary-card .text-link { color: #f2d69d; white-space: nowrap; font-size: 9px; }
.reviews-api-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 13px;
    margin-top: 15px;
}
.review-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(23,63,50,.1);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(198,164,104,.11), transparent 32%),
        rgba(255,255,255,.94);
    box-shadow: 0 10px 25px rgba(23,63,50,.07);
}
.review-api-card { display: flex; flex-direction: column; }
.review-card-top { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--forest-700), var(--forest-950));
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
}
.review-avatar-photo { object-fit: cover; background: #e9eee9; }
.review-card-top strong,
.review-author { display: block; color: var(--ink); font-size: 11px; font-weight: 800; text-decoration: none; }
.review-author:hover { color: var(--gold-dark); }
.review-card-top span { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; }
.review-quote-icon { margin-left: auto; color: rgba(198,164,104,.38); font-size: 18px; }
.review-stars { display: flex; gap: 2px; margin: 11px 0 8px; color: #e6ad2c; font-size: 10px; }
.review-card blockquote {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: #34483f;
    font-family: "Newsreader", Georgia, serif;
    font-size: 14px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
.review-google-link {
    margin-top: auto;
    color: var(--forest-700);
    font-size: 8px;
    font-weight: 800;
    text-decoration: none;
}
.review-google-link:hover { color: var(--gold-dark); }
.reviews-empty-state,
.reviews-setup-state {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 20px;
    border: 1px solid rgba(23,63,50,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-sm);
}
.reviews-empty-state > i,
.reviews-setup-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #4285f4;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23,63,50,.08);
    font-size: 18px;
}
.reviews-empty-state h3,
.reviews-setup-state h3 { margin: 0 0 4px; font-family: "Newsreader", Georgia, serif; font-size: 20px; }
.reviews-empty-state p,
.reviews-setup-state p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.reviews-setup-state .btn { flex: 0 0 auto; margin-left: auto; }
.reviews-setup-state code { color: var(--forest-800); font-size: 9px; }
.reviews-source-note { margin: 13px 4px 0; color: #75817b; font-size: 8px; }

.video-section { background: linear-gradient(180deg, #edf2ed 0%, var(--warm-white) 100%); }
.video-card { display: block; height: 100%; overflow: hidden; border: 1px solid rgba(23,63,50,.11); border-radius: 24px; color: inherit; background: #fff; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.video-card:hover { color: inherit; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 4.6; background: #15251d; }
.portrait-video-frame { background: #101712; }
.video-frame img,
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.portrait-video-frame video { object-fit: contain; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,35,27,.58), transparent 65%); }
.video-play { position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--forest-950); background: rgba(255,255,255,.92); transform: translate(-50%,-50%); box-shadow: 0 15px 40px rgba(0,0,0,.22); }
.video-card-body { padding: 24px; }
.video-card-body > span { color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.video-card-body h3 { margin: 8px 0 8px; font-family: "Newsreader", Georgia, serif; font-size: 25px; line-height: 1.05; }
.video-card-body p { margin: 0; color: var(--muted); font-size: 11px; }

.contact-section { padding-top: 40px; background: linear-gradient(180deg, var(--warm-white), var(--cream)); }
.contact-shell { overflow: hidden; border: 1px solid var(--border); border-radius: 32px; background: #fff; box-shadow: var(--shadow-lg); }
.contact-info-panel { height: 100%; padding: 55px 46px; color: rgba(255,255,255,.73); background: linear-gradient(145deg, var(--forest-800), var(--forest-950)); }
.contact-info-panel h2 { margin: 12px 0 22px; color: #fff; font-size: clamp(37px,4vw,53px); }
.contact-info-panel p { font-size: 13px; }
.contact-list { list-style: none; padding: 0; margin: 36px 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 19px; }
.contact-list li > span { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: #f5dfb4; background: rgba(255,255,255,.09); }
.contact-list li div { display: flex; flex-direction: column; }
.contact-list small { color: rgba(255,255,255,.49); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-list a,
.contact-list strong { color: #fff; font-size: 13px; text-decoration: none; }
.privacy-note { display: flex; align-items: center; gap: 8px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.contact-form-panel { padding: 55px 50px; }
.form-label { color: var(--ink); font-size: 11px; font-weight: 800; }
.form-control,
.form-select { min-height: 52px; padding: 13px 15px; border: 1px solid rgba(23,63,50,.14); border-radius: 13px; background: #fbfcfa; font-size: 13px; }
textarea.form-control { min-height: 145px; resize: vertical; }
.form-control:focus,
.form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .22rem rgba(198,164,104,.14); background: #fff; }
.form-footnote { color: var(--muted); font-size: 10px; }
.honeypot { position: absolute; left: -9999px; }
.alert { border: 0; border-radius: 13px; font-size: 12px; }

.site-footer { padding: 68px 0 20px; color: rgba(255,255,255,.67); background: #0e261e; }
.site-footer .brand-copy small { color: rgba(255,255,255,.48); }
.footer-intro { max-width: 350px; margin: 21px 0; font-size: 12px; }
.footer-social { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.footer-social:hover { background: rgba(255,255,255,.15); }
.footer-title { margin-bottom: 19px; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-links,
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a,
.footer-contact a { color: rgba(255,255,255,.68); font-size: 12px; text-decoration: none; }
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 12px; }
.footer-contact i { width: 16px; margin-top: 5px; color: #d5b87c; }
.footer-note { color: rgba(255,255,255,.43); font-size: 11px; }
.footer-bottom { margin-top: 48px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.footer-bottom a { color: rgba(255,255,255,.62); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
    .navbar .nav-link { padding-inline: 8px !important; }
    .hero { padding-top: 72px; }
    .conditions-shell { padding: 50px 42px; }
    .gallery-grid-five,
    .gallery-grid-four { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 991.98px) {
    html { scroll-padding-top: 78px; }
    .main-navbar { padding: 9px 0; }
    .navbar-collapse { margin-top: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
    .navbar-nav { align-items: stretch !important; }
    .btn-call { justify-content: center; margin-top: 12px; }
    .hero { padding-top: 55px; }
    .hero-visual { margin: 10px auto 0; }
    .benefit-strip { grid-template-columns: 1fr; gap: 12px; margin-top: 45px; }
    .benefit-strip article { border-right: 0; border-bottom: 1px solid var(--border); padding: 10px 4px 16px; }
    .benefit-strip article:last-child { border-bottom: 0; }
    .section { padding: 82px 0; }
    .about-collage { margin-bottom: 35px; }
    .room-mosaic { margin-top: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .gallery-grid-five,
    .gallery-grid-four { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .conditions-steps { grid-template-columns: 1fr; }
    .conditions-card { margin-top: 15px; }
    .reviews-api-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        padding: 2px 2px 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .review-card { flex: 0 0 min(330px, 78vw); scroll-snap-align: start; }
    .reviews-summary-card { grid-template-columns: auto auto 1fr; }
    .reviews-summary-card .text-link { grid-column: 2 / -1; }
    .mobile-call {
        position: fixed;
        z-index: 1040;
        right: 18px;
        bottom: 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 999px;
        color: #fff;
        background: var(--forest-900);
        box-shadow: 0 15px 35px rgba(23,63,50,.3);
        font-size: 11px;
        font-weight: 800;
        text-decoration: none;
    }
}

@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .site-logo { width: 96px; height: 44px; }
    .brand-copy small { font-size: 7px; }
    .hero { padding-top: 42px; }
    .hero h1 { font-size: 47px; }
    .hero-lead { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-photo-wrap { aspect-ratio: .92 / 1; border-radius: 34% 34% 22px 22px; }
    .floating-card { min-width: 190px; padding: 11px 13px; }
    .floating-card-top { right: -8px; top: 8%; }
    .floating-card-bottom { left: -8px; bottom: 5%; }
    .benefit-strip { padding: 17px; border-radius: 17px; }
    .section { padding: 70px 0; }
    .section-heading { font-size: 39px; }
    .about-collage { min-height: 470px; padding-right: 35px; }
    .about-main-image { height: 410px; }
    .about-secondary-image { width: 185px; height: 205px; }
    .location-badge { left: 15px; bottom: 18px; }
    .check-grid { grid-template-columns: 1fr; }
    .room-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 170px; }
    .room-photo-large { grid-column: 1 / span 2; grid-row: auto; }
    .gallery-tabs { justify-content: flex-start; }
    .gallery-grid,
    .gallery-grid-five,
    .gallery-grid-four { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .gallery-item,
    .gallery-grid-five .gallery-item { min-height: 260px; }
    .conditions-shell { padding: 37px 22px; border-radius: 25px; }
    .reviews-section { padding-top: 54px; padding-bottom: 54px; }
    .reviews-heading-row { align-items: flex-start; flex-direction: column; gap: 14px; }
    .reviews-google-button { width: auto; }
    .reviews-api-grid {
        display: flex;
        gap: 11px;
        margin-right: -12px;
        padding-right: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .review-card { flex: 0 0 min(300px, 82vw); padding: 17px; scroll-snap-align: start; }
    .reviews-summary-card { grid-template-columns: auto 1fr; gap: 13px; padding: 16px; }
    .reviews-summary-meta { grid-column: 1 / -1; }
    .reviews-summary-card .text-link { grid-column: 1 / -1; }
    .reviews-setup-state { align-items: flex-start; flex-direction: column; }
    .reviews-setup-state .btn { width: 100%; margin-left: 0; }
    .contact-info-panel,
    .contact-form-panel { padding: 38px 24px; }
    .site-footer { padding-bottom: 88px; }
}

@media (max-width: 479.98px) {
    .hero h1 { font-size: 40px; }
    .section-heading { font-size: 35px; }
    .floating-card { transform: scale(.89); }
    .gallery-grid,
    .gallery-grid-five,
    .gallery-grid-four { grid-template-columns: 1fr; }
    .gallery-item,
    .gallery-grid-five .gallery-item { min-height: 340px; }
    .room-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 270px); }
    .room-photo-large { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* v3.1 — corrected photo distribution */
.about-story-panel {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    border: 1px solid rgba(23, 63, 50, .12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 15%, rgba(198, 164, 104, .24), transparent 30%),
        linear-gradient(145deg, #f8f2e9 0%, #edf3ed 55%, #dfe9df 100%);
    box-shadow: var(--shadow-lg);
}
.about-story-panel::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -115px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(23, 63, 50, .12);
    border-radius: 50%;
}
.about-story-brand {
    position: relative;
    z-index: 1;
    width: 210px;
    padding: 14px 18px;
    border: 1px solid rgba(23, 63, 50, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 35px rgba(20, 49, 38, .08);
}
.about-story-brand img { display: block; width: 100%; height: auto; }
.about-story-copy { position: relative; z-index: 1; max-width: 470px; margin: 62px 0 42px; }
.about-story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.about-story-copy h3 { margin-bottom: 18px; font-size: clamp(30px, 3.3vw, 44px); line-height: 1.08; }
.about-story-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.about-story-facts {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.about-story-facts article {
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid rgba(23, 63, 50, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
}
.about-story-facts i { margin-bottom: 16px; color: var(--gold-dark); font-size: 18px; }
.about-story-facts strong { color: var(--forest-950); font-size: 12px; }
.about-story-facts span { margin-top: 3px; color: var(--muted); font-size: 9px; }

.room-feature-list-horizontal { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
.room-gallery-grid { gap: 18px; }
.room-gallery-grid .gallery-item { border: 1px solid rgba(255, 255, 255, .09); background: #1d3a2f; }
.room-gallery-grid .gallery-item > span { background: rgba(198, 164, 104, .88); }

.gallery-tabs .nav-link { display: inline-flex; align-items: center; gap: 8px; }
.gallery-tabs .nav-link > span {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    color: var(--forest-900);
    background: var(--sage-100);
    font-size: 8px;
}
.gallery-tabs .nav-link.active > span { color: var(--forest-950); background: #f0dcb6; }
.gallery-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.video-link-cover {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    isolation: isolate;
}
.video-link-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .22), transparent 24%),
        linear-gradient(145deg, #456f5b 0%, #193d31 62%, #102920 100%);
}
.video-link-cover-inside::before {
    background:
        radial-gradient(circle at 22% 18%, rgba(240, 212, 164, .22), transparent 27%),
        linear-gradient(145deg, #8b6a49 0%, #493d31 55%, #1c2d27 100%);
}
.video-link-cover::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -80px;
    top: -70px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}
.video-cover-mark {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    color: #f0d9ad;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    font-size: 25px;
}
.video-cover-copy {
    max-width: 220px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.05;
}

@media (max-width: 1199.98px) {
    .room-feature-list-horizontal { grid-template-columns: 1fr; }
    .about-story-panel { min-height: 520px; padding: 38px; }
    .about-story-copy { margin: 42px 0 30px; }
}

@media (max-width: 991.98px) {
    .about-story-panel { min-height: auto; }
    .room-feature-list-horizontal { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
    .gallery-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .about-story-panel { padding: 30px; border-radius: 26px; }
    .about-story-brand { width: 180px; }
    .about-story-copy { margin: 36px 0 26px; }
    .about-story-facts { grid-template-columns: 1fr; }
    .about-story-facts article { min-height: 105px; }
    .room-feature-list-horizontal { grid-template-columns: 1fr; }
    .gallery-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
    .gallery-grid-three { grid-template-columns: 1fr; }
    .video-cover-copy { font-size: 24px; }
}

/* v3.8 — legal pages, privacy and cookie management */
.footer-legal-links a,
.footer-cookie-settings {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    text-decoration: none;
    transition: color .2s ease;
}
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible { color: #fff; }
.footer-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
}

.privacy-note a { color: #f0d6a6; font-weight: 700; }
.privacy-consent-check {
    padding: 15px 17px 15px 42px;
    border: 1px solid rgba(23, 63, 50, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .7);
}
.privacy-consent-check .form-check-input {
    width: 19px;
    height: 19px;
    margin-top: 3px;
    margin-left: -27px;
    border-color: rgba(23, 63, 50, .3);
}
.privacy-consent-check .form-check-input:checked { border-color: var(--forest-800); background-color: var(--forest-800); }
.privacy-consent-check .form-check-label { color: var(--muted); font-size: 11px; line-height: 1.55; }
.privacy-consent-check .form-check-label a { color: var(--forest-800); font-weight: 800; }
.privacy-consent-check .form-check-input.is-invalid { border-color: #b43b3b; }
.privacy-consent-check .invalid-feedback { margin-top: 7px; font-size: 10px; }

.legal-page { background: #fbf8f2; }
.legal-main { min-height: 70vh; }
.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 72px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(213, 179, 117, .2), transparent 24%),
        radial-gradient(circle at 8% 86%, rgba(116, 155, 132, .18), transparent 26%),
        linear-gradient(135deg, #102a22 0%, #173f32 58%, #234f3e 100%);
}
.legal-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}
.legal-hero .container { position: relative; z-index: 1; max-width: 1120px; }
.legal-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.58); font-size: 11px; }
.legal-breadcrumb a { color: rgba(255,255,255,.78); text-decoration: none; }
.legal-breadcrumb a:hover { color: #fff; }
.legal-hero .section-kicker { color: #e3c58f; }
.legal-hero h1 {
    max-width: 850px;
    margin: 12px 0 18px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.02;
}
.legal-hero > .container > p { max-width: 790px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }
.legal-meta { margin-top: 25px; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.legal-content-section { padding: 72px 0 100px; }
.legal-content-section .container { max-width: 1220px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 42px; align-items: start; }
.legal-toc {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 22px;
    border: 1px solid rgba(23, 63, 50, .1);
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 16px 50px rgba(23, 63, 50, .06);
}
.legal-toc strong { margin: 0 0 10px 8px; color: var(--forest-950); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { padding: 8px 10px; border-radius: 10px; color: #68756e; font-size: 10px; font-weight: 700; line-height: 1.35; text-decoration: none; }
.legal-toc a:hover { color: var(--forest-900); background: var(--sage-100); }

.legal-document {
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid rgba(23, 63, 50, .09);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 26px 85px rgba(23, 63, 50, .08);
}
.legal-document section { scroll-margin-top: 120px; }
.legal-document section + section { margin-top: 44px; padding-top: 42px; border-top: 1px solid rgba(23, 63, 50, .09); }
.legal-document h2 { margin: 0 0 18px; color: var(--forest-950); font-family: var(--font-heading); font-size: clamp(26px, 3vw, 36px); font-weight: 600; line-height: 1.15; }
.legal-document h3 { margin: 25px 0 9px; color: var(--forest-800); font-size: 14px; font-weight: 800; }
.legal-document p { margin: 0 0 16px; color: #59675f; font-size: 13px; line-height: 1.88; }
.legal-document p:last-child { margin-bottom: 0; }
.legal-document a { color: var(--forest-700); font-weight: 700; text-underline-offset: 3px; }
.legal-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    align-items: start;
    margin-bottom: 44px;
    padding: 22px;
    border: 1px solid rgba(198, 164, 104, .25);
    border-radius: 19px;
    background: linear-gradient(135deg, #fbf5e9, #f4eee4);
}
.legal-highlight i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--forest-900); background: #e8d0a3; }
.legal-highlight p { margin: 0; color: #405048; font-size: 12px; font-weight: 600; line-height: 1.7; }
.legal-list { margin: 12px 0 18px; padding: 0; list-style: none; }
.legal-list li { position: relative; margin-bottom: 11px; padding-left: 24px; color: #59675f; font-size: 13px; line-height: 1.75; }
.legal-list li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(198,164,104,.13); }
.legal-table-wrap { overflow-x: auto; margin: 22px 0; border: 1px solid rgba(23, 63, 50, .1); border-radius: 18px; }
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.legal-table th { padding: 15px 17px; color: #fff; background: var(--forest-900); font-size: 10px; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.legal-table td { padding: 17px; border-top: 1px solid rgba(23, 63, 50, .08); color: #5e6b64; background: #fff; font-size: 11px; line-height: 1.65; vertical-align: top; }
.legal-table tr:nth-child(even) td { background: #faf8f3; }
.legal-table code { color: #764f22; font-size: 10px; }
.legal-contact-box { margin-top: 50px; padding: 28px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, var(--forest-900), var(--forest-950)); }
.legal-contact-box h2 { color: #fff; font-size: 29px; }
.legal-contact-box p { color: rgba(255,255,255,.72); }
.legal-contact-box a { color: #efd19a; }

.cookie-category-cards { display: grid; gap: 14px; }
.cookie-category-card { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 20px; border: 1px solid rgba(23,63,50,.1); border-radius: 18px; background: #fbfaf6; }
.cookie-category-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--forest-900); background: var(--sage-200); }
.cookie-category-card h3 { margin: 0 0 6px; color: var(--forest-950); font-family: var(--font-heading); font-size: 22px; }
.cookie-category-card p { margin-bottom: 10px; font-size: 11px; }
.cookie-status { display: inline-flex; padding: 5px 9px; border-radius: 999px; color: #805f2d; background: #f6e7c9; font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.cookie-status-required { color: var(--forest-800); background: var(--sage-200); }

.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1090;
    width: min(760px, calc(100% - 44px));
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}
.cookie-consent.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-consent__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 21px;
    border: 1px solid rgba(218, 184, 121, .34);
    border-radius: 22px;
    color: #fff;
    background: rgba(15, 41, 33, .98);
    box-shadow: 0 26px 80px rgba(5, 23, 17, .36);
    backdrop-filter: blur(16px);
}
.cookie-consent__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #f2d39c; background: rgba(255,255,255,.08); font-size: 18px; }
.cookie-consent__copy strong { display: block; margin-bottom: 4px; font-family: var(--font-heading); font-size: 20px; }
.cookie-consent__copy p { margin: 0 0 4px; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.55; }
.cookie-consent__copy a { color: #e4c38a; font-size: 9px; font-weight: 800; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; gap: 7px; }
.cookie-consent__actions .btn { min-width: 108px; padding: 10px 12px; border-radius: 11px; font-size: 10px; }
.cookie-consent__settings { border: 1px solid rgba(255,255,255,.19); color: #fff; background: transparent; }
.cookie-consent__settings:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.cookie-consent__necessary,
.cookie-consent__accept { border: 1px solid #d8b77c; color: #163a2e; background: #e5c78f; }
.cookie-consent__necessary:hover,
.cookie-consent__accept:hover { color: #102a22; background: #efd8ae; }

.cookie-settings-modal .modal-content { overflow: hidden; border: 0; border-radius: 27px; box-shadow: 0 35px 110px rgba(15, 41, 33, .25); }
.cookie-settings-modal .modal-header { padding: 25px 28px 19px; border-bottom: 1px solid rgba(23,63,50,.09); }
.cookie-modal-kicker { display: block; margin-bottom: 3px; color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cookie-settings-modal .modal-title { color: var(--forest-950); font-family: var(--font-heading); font-size: 31px; }
.cookie-settings-modal .modal-body { padding: 25px 28px; }
.cookie-modal-intro { margin-bottom: 20px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.cookie-setting-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 19px 0; border-top: 1px solid rgba(23,63,50,.09); }
.cookie-setting-title { display: flex; align-items: center; gap: 10px; color: var(--forest-950); }
.cookie-setting-title i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--forest-800); background: var(--sage-100); }
.cookie-setting-copy p { margin: 7px 0 0 44px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.cookie-unavailable { display: block; margin: 6px 0 0 44px; color: #9b7440; font-size: 9px; }
.cookie-settings-modal .form-switch .form-check-input { width: 49px; height: 25px; border-color: rgba(23,63,50,.25); cursor: pointer; }
.cookie-settings-modal .form-switch .form-check-input:checked { border-color: var(--forest-800); background-color: var(--forest-800); }
.cookie-modal-note { margin: 20px 0 0; padding: 14px 16px; border-radius: 13px; color: #68756e; background: #f7f3eb; font-size: 9px; line-height: 1.6; }
.cookie-modal-note a { color: var(--forest-800); font-weight: 800; }
.cookie-settings-modal .modal-footer { justify-content: space-between; padding: 18px 28px 25px; border-top: 1px solid rgba(23,63,50,.09); }
.btn-cookie-essential,
.btn-cookie-save { border: 1px solid var(--forest-900); color: #fff; background: var(--forest-900); }
.btn-cookie-essential:hover,
.btn-cookie-save:hover { color: #fff; background: var(--forest-950); }

@media (max-width: 991.98px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .legal-toc strong { grid-column: 1 / -1; }
    .cookie-consent__inner { grid-template-columns: auto 1fr; }
    .cookie-consent__actions { grid-column: 1 / -1; }
    .cookie-consent__actions .btn { flex: 1; }
}

@media (max-width: 767.98px) {
    .legal-hero { padding: 52px 0 50px; }
    .legal-hero h1 { font-size: 42px; }
    .legal-hero > .container > p { font-size: 13px; }
    .legal-content-section { padding: 34px 0 72px; }
    .legal-document { padding: 25px 20px; border-radius: 23px; }
    .legal-document section + section { margin-top: 34px; padding-top: 32px; }
    .legal-document h2 { font-size: 28px; }
    .legal-document p,
    .legal-list li { font-size: 12px; }
    .legal-toc { grid-template-columns: 1fr; padding: 17px; }
    .legal-highlight { grid-template-columns: 1fr; }
    .cookie-consent { right: 11px; bottom: 78px; width: calc(100% - 22px); }
    .cookie-consent__inner { gap: 13px; padding: 17px; border-radius: 18px; }
    .cookie-consent__icon { width: 42px; height: 42px; }
    .cookie-consent__copy strong { font-size: 18px; }
    .cookie-consent__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .cookie-consent__actions .btn { min-width: 0; }
    .cookie-consent__accept { grid-column: 1 / -1; }
    .cookie-settings-modal .modal-dialog { margin: 10px; }
    .cookie-settings-modal .modal-header,
    .cookie-settings-modal .modal-body,
    .cookie-settings-modal .modal-footer { padding-left: 20px; padding-right: 20px; }
    .cookie-settings-modal .modal-title { font-size: 26px; }
    .cookie-setting-row { gap: 12px; }
    .cookie-setting-copy p,
    .cookie-unavailable { margin-left: 0; }
    .cookie-settings-modal .modal-footer { flex-direction: column-reverse; align-items: stretch; }
    .cookie-settings-modal .modal-footer .btn { width: 100%; }
    .footer-legal-links { row-gap: 8px !important; }
}


/* v3.9 — content, gallery and responsive fixes */
.gallery-mobile-toggle { width: 100%; justify-content: center; }
.gallery-general-grid .gallery-item {
    aspect-ratio: 1 / 1;
    min-height: 0;
    background: #f3eee4;
}
.gallery-general-grid .gallery-item img {
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .gallery-mobile-content { display: block !important; }
}

@media (max-width: 767.98px) {
    .hero .floating-card { display: none; }
    .hero-photo-wrap {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }
    .hero-photo { object-position: center 35%; }

    .gallery-section .row.mb-5 { margin-bottom: 22px !important; }
    .gallery-mobile-content { display: none; }
    .gallery-mobile-content.is-open { display: block; }
    #galleryMobileContent { margin-top: 14px; }
    #galleryMobileContentGrid { margin-top: 18px; }
    .gallery-tabs { gap: 7px; }
    .gallery-tabs .nav-link { padding: 9px 12px; }
    .gallery-general-grid .gallery-item { min-height: 0; }
}


/* v3.10 — hero badge and local video gallery */
@media (min-width: 992px) {
    .hero .floating-card-top {
        top: auto;
        right: 18px;
        bottom: 22px;
    }
}

.video-card-body {
    padding: 18px 20px 20px;
}
.video-card-body h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}


/* v3.12 — compact mobile services, simplified About and room amenities */
@media (max-width: 767.98px) {
    .services-section .row.g-4 {
        --bs-gutter-y: 10px;
    }

    .services-section .service-card {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 11px;
        min-height: 0;
        padding: 12px 13px;
        border-radius: 15px;
    }

    .services-section .service-label {
        display: none;
    }

    .services-section .service-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        width: 36px;
        height: 36px;
        margin: 0;
        border-radius: 10px;
        font-size: 14px;
    }

    .services-section .service-card h3 {
        grid-column: 2;
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
    }

    .services-section .service-card p {
        display: -webkit-box;
        grid-column: 2;
        margin-top: 3px;
        overflow: hidden;
        font-size: 9.5px;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .room-feature-list-horizontal {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .room-feature-list article {
        gap: 9px;
        padding: 11px;
        border-radius: 14px;
    }

    .room-feature-list article > span {
        width: 37px;
        height: 37px;
        border-radius: 11px;
        font-size: 13px;
    }

    .room-feature-list strong {
        font-size: 10px;
        line-height: 1.2;
    }

    .room-feature-list small {
        font-size: 8px;
        line-height: 1.25;
    }
}

@media (max-width: 479.98px) {
    .room-feature-list-horizontal {
        grid-template-columns: 1fr;
    }
}
