@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
    --site-header-h: 76px;
    --charcoal: #1F4037;
    --deep-green: #1F4037;
    --charcoal-2: #172E26;
    --cream: #F7F4ED;
    --gold: #D4A64A;
    --gold-dark: #A57A34;
    --sage: #7A9B8E;
    --white: #ffffff;
    --muted: rgba(31, 64, 55, 0.72);
    --line: rgba(47, 93, 80, 0.14);
    --shadow-soft: 0 18px 50px rgba(31, 64, 55, 0.09);
    --shadow-luxury: 0 26px 70px rgba(15, 24, 20, 0.22);
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--site-header-h) + 16px);
}

body {
    margin: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-sans);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

img,
video,
iframe,
canvas {
    display: block;
    max-width: 100%;
}

video {
    background: var(--charcoal);
}

main,
section,
footer,
.site-header {
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
strong,
span,
summary,
label {
    overflow-wrap: break-word;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container,
.navbar {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
}

.narrow {
    width: min(100% - 2rem, 900px);
    margin-inline: auto;
}

.section {
    padding: 5.5rem 0;
}

.cream {
    background: var(--cream);
}

.white {
    background: var(--white);
}

.soft-green {
    background: rgba(122, 155, 142, 0.14);
}

.dark {
    background: var(--charcoal);
    color: var(--white);
}

.kicker {
    margin: 0 0 0.85rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-serif);
    line-height: 1.05;
}

h1 {
    max-width: 940px;
    font-size: clamp(3.1rem, 8vw, 7.2rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.6rem;
}

p {
    margin: 0;
}

.lead {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    line-height: 1.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.1rem;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--deep-green));
    color: var(--white);
    box-shadow: 0 16px 35px rgba(212, 166, 74, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.btn-quiet {
    border: 1px solid rgba(30, 33, 27, 0.14);
    background: var(--white);
    color: var(--charcoal);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    min-height: var(--site-header-h);
    background: rgba(31, 64, 55, 0.42);
    color: var(--white);
    backdrop-filter: blur(14px);
    transition: background 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
    background: rgba(15, 25, 20, 0.95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.navbar {
    position: relative;
    z-index: 2;
    min-height: var(--site-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1;
}

.brand img {
    display: block;
    max-height: 52px;
    width: auto;
}

.brand span {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 800;
}

.brand small {
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    background: transparent;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    display: inline-flex;
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    padding: 0.85rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1085;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.nav-backdrop[hidden] {
    display: none;
}

.hero,
.page-hero,
.not-found {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.page-hero {
    min-height: 72svh;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--charcoal);
}

@keyframes heroImageReveal {
    to {
        opacity: 1;
    }
}

.hero-parallax .hero-image--parallax {
    position: absolute;
    left: 0;
    right: 0;
    top: -6%;
    width: 100%;
    height: 112%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    animation: heroImageReveal 1100ms ease forwards;
    will-change: transform;
}

.hero--events .hero-image:not(.hero-image--parallax) {
    display: none;
}

.page-hero .hero-image,
.not-found .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: filmFade 1200ms ease forwards;
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 17, 13, 0.78), rgba(30, 33, 27, 0.36) 52%, rgba(30, 33, 27, 0.62)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(30, 33, 27, 0.24), var(--charcoal));
}

.hero-shade--deep {
    background:
        linear-gradient(105deg, rgba(8, 9, 7, 0.92) 0%, rgba(18, 20, 16, 0.72) 38%, rgba(30, 33, 27, 0.45) 62%, rgba(12, 14, 11, 0.55) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(20, 22, 18, 0.35) 45%, rgba(30, 33, 27, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 3rem;
    padding-top: 7.25rem;
    padding-bottom: 3rem;
}

.page-hero .hero-content {
    display: block;
    padding-top: 9rem;
}

.hero-content--events {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 400px);
    align-items: center;
    justify-items: stretch;
}

.hero-copy--events {
    max-width: 640px;
    justify-self: start;
}

.hero-copy--events h1 {
    max-width: 14ch;
}

.hero-copy {
    max-width: 900px;
}

.pill {
    display: inline-flex;
    max-width: 100%;
    margin: 0 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.55rem 1rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-lead {
    max-width: 700px;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
}

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

.center-actions {
    justify-content: center;
}

.booking-card,
.glass-card {
    display: grid;
    gap: 0.85rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    padding: 1.25rem;
    color: var(--charcoal);
    backdrop-filter: blur(18px);
}

.booking-card h2 {
    font-size: 1.7rem;
}

label {
    display: grid;
    gap: 0.45rem;
    color: rgba(30, 33, 27, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 3.1rem;
    border: 1px solid rgba(30, 33, 27, 0.12);
    border-radius: 0.45rem;
    background: var(--white);
    padding: 0.85rem 0.95rem;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    outline: none;
    text-transform: none;
    transition: border 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.15);
}

input[type="checkbox"] {
    width: auto;
    min-height: auto;
    accent-color: var(--gold);
}

label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: none;
}

textarea {
    resize: vertical;
}

.split,
.story-split,
.contact-layout,
.about-layout,
.social-faq-layout,
.booking-layout,
.detail-layout,
.event-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 3.5rem;
}

.section-copy p:not(.kicker),
.section-heading p:not(.kicker) {
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.section-heading {
    width: min(100%, 780px);
    margin: 0 auto 2.7rem;
    text-align: center;
}

.section-heading.light p:not(.kicker),
.dark .lead {
    color: rgba(255, 255, 255, 0.75);
}

.feature-image,
.image-stack img,
.media-frame,
.room-image,
.detail-hero-card {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-luxury);
}

.feature-image,
.image-stack img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.image-stack {
    position: relative;
}

.address-card,
.floating-note {
    position: absolute;
    right: 1.5rem;
    bottom: -1.5rem;
    width: min(320px, calc(100% - 3rem));
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: 1.25rem;
}

.address-card strong,
.floating-note strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.1;
}

.address-card span,
.floating-note span {
    color: var(--muted);
}

.feature-strip,
.mini-grid,
.about-points,
.stats-grid,
.amenities-grid,
.package-grid,
.review-grid,
.faq-grid,
.process-grid {
    display: grid;
    gap: 1rem;
}

.feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.mini-grid,
.about-points,
.stats-grid,
.amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-strip article,
.mini-grid span,
.about-points article,
.stat-card,
.amenity-card,
.package-card,
.process-card,
.review-card,
.policy-card,
.menu-card,
.value-card {
    border: 1px solid rgba(212, 166, 74, 0.2);
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 1.1rem;
}

.feature-strip span,
.process-card span,
.event-card span,
.value-card span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.film-band {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.film-band img,
.film-band-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.film-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 23, 17, 0.88), rgba(21, 23, 17, 0.32), rgba(21, 23, 17, 0.78));
}

.film-band .container {
    position: relative;
    z-index: 1;
}

.film-copy {
    max-width: 760px;
}

.film-copy h2 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.media-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--charcoal);
}

.media-frame.landscape {
    aspect-ratio: 16 / 10;
}

.media-frame.square {
    aspect-ratio: 1;
}

.media-frame img,
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease, opacity 450ms ease;
}

.media-frame::after,
.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.44), transparent 58%);
    pointer-events: none;
}

.media-frame:hover img,
.video-card:hover img {
    transform: scale(1.035);
}

.media-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: var(--white);
    font-weight: 800;
}

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

.room-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 33, 27, 0.08);
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    box-shadow: none;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.room-content {
    padding: 1.5rem;
}

.room-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.room-title strong {
    color: var(--gold);
    white-space: nowrap;
}

.room-content p,
.package-card p,
.review-card p,
.policy-card p,
.menu-card p,
.value-card p {
    margin-top: 0.9rem;
    color: var(--muted);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.tags span,
.filter-btn,
.media-type,
.summary-line {
    border-radius: 999px;
    background: var(--cream);
    padding: 0.45rem 0.7rem;
    color: rgba(30, 33, 27, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 2rem;
}

.filter-btn {
    border: 1px solid rgba(30, 33, 27, 0.1);
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.amenities-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.5rem;
    border-radius: 0.5rem;
    background: var(--charcoal);
    padding: 1rem;
}

.amenities-bar span {
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.9rem;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.amenities-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.amenity-card h3 {
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
}

.amenity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.amenity-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.amenity-card i {
    color: var(--gold);
    font-size: 1.1rem;
    min-width: 20px;
}

.sticky-inquiry,
.booking-summary {
    position: sticky;
    top: 100px;
    align-self: start;
}

.detail-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-gallery .media-frame {
    aspect-ratio: 16 / 11;
}

.detail-gallery .media-frame:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.event-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.event-cards {
    display: grid;
    gap: 1rem;
}

.event-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.event-card p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
}

.events-catering {
    position: relative;
}

.events-catering::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(122, 155, 142, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(212, 166, 74, 0.12), transparent 38%);
    pointer-events: none;
}

.events-catering .container {
    position: relative;
    z-index: 1;
}

.events-catering-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
    margin-bottom: 2rem;
}

.events-catering-intro p:not(.kicker) {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.85;
}

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

.catering-card {
    min-width: 0;
    border: 1px solid rgba(212, 166, 74, 0.22);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.catering-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 166, 74, 0.42);
    box-shadow: var(--shadow-luxury);
}

.catering-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(212, 166, 74, 0.14);
    color: var(--gold-dark);
}

.catering-card h3 {
    color: var(--charcoal);
    font-size: 1.45rem;
}

.catering-card ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
}

.catering-card li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--muted);
    font-weight: 600;
}

.catering-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.catering-pricing {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 1.25rem;
    box-shadow: var(--shadow-luxury);
}

.pricing-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.45rem;
    padding: 1.35rem;
}

.pricing-note h3 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

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

.pricing-options article {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.25rem;
    transition: transform 220ms ease, background 220ms ease;
}

.pricing-options article:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.pricing-options span {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pricing-options strong {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.pricing-options small {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.pricing-options p {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.package-grid,
.review-grid,
.faq-grid,
.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid,
.media-masonry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 235px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border: 0;
    border-radius: 0.5rem;
    background: var(--charcoal);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, opacity 250ms ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
    color: var(--white);
    padding: 3rem 1rem 1rem;
    font-weight: 800;
}

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

.gallery-item.wide {
    grid-column: span 2;
}

/* --- Homepage: executive showcase, events mosaic, menu preview, trust --- */

.room-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(30, 33, 27, 0.08);
}

.room-showcase-visual {
    min-width: 0;
}

.room-showcase-card {
    position: relative;
    border-radius: 0.65rem;
    overflow: hidden;
    background: var(--charcoal);
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(30, 33, 27, 0.06);
}

.room-showcase-card img {
    width: 100%;
    height: clamp(320px, 50vw, 520px);
    object-fit: cover;
    display: block;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-showcase-card:hover img {
    transform: scale(1.04);
}

.room-showcase-copy h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-top: 0.35rem;
}

.room-showcase-points {
    margin: 1.35rem 0 1.75rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.room-showcase-points li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.room-showcase-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.events-premium-cta {
    margin-top: 2.5rem;
}

.events-stagger-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
    grid-template-rows: minmax(220px, 26vw) minmax(220px, 26vw);
    gap: 1.25rem;
    align-items: stretch;
}

.events-stagger-grid > .events-card:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1;
}

.events-stagger-grid > .events-card:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.events-stagger-grid > .events-card:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
}

.events-stagger-grid > .events-card:nth-child(4) {
    grid-row: 2;
    grid-column: 2 / span 2;
}

.events-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.65rem;
    min-height: 200px;
    height: 100%;
    background: var(--charcoal);
    box-shadow: var(--shadow-soft);
}

.events-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition:
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 520ms ease,
        opacity 400ms ease;
}

.events-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 8, 0.75) 0%, rgba(10, 11, 8, 0.15) 55%, transparent 100%);
    pointer-events: none;
    transition: opacity 400ms ease;
}

.events-card-caption {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.events-card:hover {
    box-shadow:
        0 28px 70px rgba(30, 33, 27, 0.18),
        0 0 0 1px rgba(212, 166, 74, 0.22);
}

.events-card:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.05);
}

.restaurant-preview {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.restaurant-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.menu-glass-stack {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.menu-glass-card {
    width: 100%;
    max-width: 420px;
    display: grid;
    gap: 1.1rem;
}

.menu-glass-frame {
    position: relative;
    border-radius: 0.65rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 60px rgba(30, 33, 27, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    padding: 0.65rem;
}

.menu-glass-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(212, 166, 74, 0.12);
    pointer-events: none;
}

.menu-glass-frame img {
    display: block;
    width: 100%;
    height: clamp(360px, 48vw, 520px);
    object-fit: cover;
    border-radius: 0.45rem;
}

.btn-view-menu {
    width: 100%;
    min-height: 3.15rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 166, 74, 0.42);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition:
        transform 220ms ease,
        box-shadow 260ms ease,
        border-color 220ms ease,
        color 220ms ease,
        background 220ms ease;
}

.btn-view-menu:hover,
.btn-view-menu:focus-visible {
    transform: translateY(-3px);
    border-color: var(--gold);
    color: var(--gold-dark);
    box-shadow: 0 18px 40px rgba(212, 166, 74, 0.28);
    background: rgba(255, 255, 255, 0.98);
}

.about-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.about-trust-visuals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 1fr);
    min-height: clamp(360px, 42vw, 480px);
}

.about-frame {
    margin: 0;
    border-radius: 0.6rem;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    background: var(--charcoal);
}

.about-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-frame--primary {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.about-frame--primary img {
    min-height: clamp(300px, 38vw, 440px);
}

.about-frame--primary figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(to top, rgba(15, 17, 13, 0.95), transparent);
}

.about-frame--support {
    grid-area: 1 / 1;
    align-self: end;
    justify-self: end;
    width: min(42%, 260px);
    margin: 0 0.5rem 0.5rem 0;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 22px 55px rgba(30, 33, 27, 0.32);
}

.about-frame--support img {
    min-height: 200px;
    aspect-ratio: 4 / 5;
}

.about-frame--support figcaption {
    display: none;
}

.gallery-item.hidden,
.room-card.hidden {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(10, 11, 8, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    width: min(100%, 1080px);
    max-height: 86svh;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--charcoal);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.lightbox img {
    width: 100%;
    max-height: 86svh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(30, 33, 27, 0.72);
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-card,
.quote-card {
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: clamp(1.5rem, 4vw, 2.8rem);
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.testimonial-quote,
.quote-card blockquote {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.45;
}

.testimonial-card strong,
.quote-card strong {
    display: block;
    margin-top: 1.4rem;
}

.testimonial-card span,
.quote-card span {
    color: rgba(30, 33, 27, 0.55);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    font-size: 1.6rem;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.testimonial-controls button:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.about-panel {
    border-radius: 0.5rem;
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: clamp(1.5rem, 4vw, 2rem);
}

.about-panel p:not(.kicker) {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.72);
}

.about-points article {
    display: flex;
    align-items: center;
    min-height: 150px;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 800;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline article {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(30, 33, 27, 0.12);
    padding-bottom: 1.25rem;
}

.timeline strong {
    color: var(--gold);
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: grid;
    gap: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.contact-card span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--white);
    overflow-wrap: anywhere;
}

.contact-info iframe {
    width: 100%;
    height: 310px;
    border: 0;
    border-radius: 0.5rem;
}

.inquiry-form,
.booking-panel {
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: clamp(1.3rem, 4vw, 2rem);
    color: var(--charcoal);
}

.inquiry-form h3,
.booking-panel h3 {
    font-size: 2rem;
}

.inquiry-form > p,
.booking-panel > p {
    margin-top: 0.6rem;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.inquiry-form .btn,
.booking-panel .btn,
.booking-card .btn {
    width: 100%;
    margin-top: 1.2rem;
}

.booking-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.booking-summary {
    border-radius: 0.5rem;
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: 1.4rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.7rem;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1rem;
    font-family: var(--font-serif);
    font-size: 1.55rem;
}

details {
    border: 1px solid rgba(30, 33, 27, 0.08);
    border-radius: 0.5rem;
    background: var(--white);
    padding: 1.1rem;
}

details + details {
    margin-top: 0.8rem;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin-top: 0.8rem;
    color: var(--muted);
}

.footer {
    background: var(--charcoal-2);
    color: var(--white);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer h2 {
    font-size: 2rem;
}

.footer p,
.footer-links {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 60;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: #25d366;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.966-.272-.099-.47-.149-.67.15-.198.297-.767.966-.94 1.164-.173.198-.347.223-.644.075-.297-.149-1.255-.462-2.39-1.475-.883-.785-1.48-1.752-1.653-2.05-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.173.198-.297.298-.495.099-.198.05-.372-.025-.52-.075-.149-.67-1.612-.918-2.204-.242-.579-.487-.5-.67-.51-.173-.01-.372-.01-.571-.01s-.52.075-.792.372c-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.064 2.875 1.212 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.262.489 1.694.626.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    color: transparent;
    text-indent: -9999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    font-size: 0;
    transition: transform 200ms ease;
}

.whatsapp:hover {
    transform: scale(1.06);
}

.facebook {
    position: fixed;
    right: 1.25rem;
    bottom: 78px;
    z-index: 60;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: #1877f2;
    color: #fff;
    font-size: 1.2rem;
    text-indent: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    transition: transform 200ms ease;
}

.facebook:hover {
    transform: scale(1.06);
}

.toast {
    position: fixed;
    right: 1rem;
    top: 95px;
    z-index: 2100;
    max-width: 360px;
    border-left: 4px solid var(--gold);
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-luxury);
    padding: 1rem;
    color: var(--charcoal);
    transform: translateX(calc(100% + 2rem));
    transition: transform 260ms ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes filmFade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (min-width: 1051px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: var(--site-header-h);
        z-index: 1110;
        width: max-content;
        max-width: min(720px, calc(100vw - 20rem));
        background: transparent;
    }

    .nav-links a.nav-links-book {
        display: none;
    }
}

@media (max-width: 1120px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 1050px) {
    .nav-links {
        position: fixed;
        top: var(--site-header-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1090;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        min-height: calc(100dvh - var(--site-header-h));
        max-height: calc(100dvh - var(--site-header-h));
        padding: 0.5rem 0 1.25rem;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background: linear-gradient(180deg, rgba(24, 26, 21, 0.99) 0%, rgba(30, 33, 27, 0.97) 40%, rgba(18, 20, 16, 0.99) 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -16px, 0);
        transition:
            opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 280ms;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition:
            opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        min-height: 3.25rem;
        border-radius: 0;
        padding: 0.85rem 1.35rem;
        color: rgba(255, 255, 255, 0.9);
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        transition: background 200ms ease, color 200ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a.active {
        background: rgba(212, 166, 74, 0.14);
        color: var(--gold);
    }

    .nav-links a.nav-links-book {
        margin: auto 1.25rem 0.35rem;
        min-height: 3.2rem;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        border-bottom: 0;
        background: linear-gradient(135deg, var(--gold), var(--deep-green));
        color: var(--white);
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        box-shadow: 0 16px 35px rgba(212, 166, 74, 0.32);
    }

    .nav-links a.nav-links-book:hover,
    .nav-links a.nav-links-book:focus-visible {
        background: linear-gradient(135deg, var(--gold), var(--deep-green));
        color: var(--white);
    }

    .hero-content,
    .hero-content--events,
    .split,
    .story-split,
    .event-layout,
    .about-layout,
    .social-faq-layout,
    .contact-layout,
    .booking-layout,
    .detail-layout,
    .room-showcase,
    .restaurant-split,
    .about-trust-grid {
        grid-template-columns: 1fr;
    }

    .menu-glass-stack {
        justify-content: stretch;
    }

    .menu-glass-card {
        max-width: none;
    }

    .events-stagger-grid {
        display: flex;
        flex-direction: column;
    }

    .events-stagger-grid > .events-card {
        min-height: 260px;
    }

    .booking-card {
        max-width: 560px;
    }

    .room-grid,
    .card-grid,
    .package-grid,
    .review-grid,
    .faq-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .amenities-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid,
    .media-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-inquiry,
    .booking-summary {
        position: static;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 4.5rem 0;
    }

    .feature-strip,
    .mini-grid,
    .about-points,
    .form-grid,
    .stats-grid,
    .amenities-grid,
    .package-grid,
    .review-grid,
    .faq-grid,
    .process-grid,
    .events-catering-intro,
    .catering-menu-grid,
    .catering-pricing,
    .pricing-options,
    .room-grid,
    .card-grid,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .amenities-showcase {
        grid-template-columns: 1fr;
    }

    .room-title {
        display: grid;
    }

    .room-title strong {
        white-space: normal;
    }

    .amenities-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid,
    .media-masonry {
        grid-auto-rows: 260px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .detail-gallery .media-frame:first-child {
        grid-row: auto;
        aspect-ratio: 16 / 11;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .contact-info iframe {
        height: 260px;
    }
}

@media (max-width: 680px) {
    :root {
        --site-header-h: 68px;
    }

    .container,
    .navbar,
    .narrow {
        width: min(100% - 1.25rem, 1200px);
    }

    html {
        scroll-padding-top: calc(var(--site-header-h) + 8px);
    }

    .section {
        padding: 4rem 0;
    }

    .navbar {
        min-height: var(--site-header-h);
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .brand span {
        font-size: 1.35rem;
    }

    .brand small {
        font-size: 0.58rem;
        letter-spacing: 0.26em;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .menu-toggle span {
        width: 16px;
        height: 1.8px;
        margin: 3.5px auto;
    }

    .hero-content {
        min-height: 100svh;
        align-content: center;
        gap: 1.5rem;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .page-hero {
        min-height: 78svh;
    }

    h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(2rem, 11vw, 2.75rem);
    }

    h3 {
        font-size: 1.35rem;
    }

    .pill {
        padding: 0.55rem 0.8rem;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .hero-lead {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions,
    .booking-submit,
    .booking-card .btn,
    .room-content .btn,
    .btn {
        width: 100%;
        min-height: 3rem;
    }

    .booking-card {
        padding: 1rem;
        gap: 0.65rem;
    }

    .section-copy p:not(.kicker),
    .section-heading p:not(.kicker) {
        font-size: 1rem;
        line-height: 1.72;
    }

    .image-stack img,
    .feature-image {
        height: 360px;
    }

    .room-image {
        height: 250px;
    }

    .room-showcase-card img {
        height: min(52vh, 420px);
    }

    .room-content {
        padding: 1.15rem;
    }

    .address-card,
    .floating-note {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .amenities-bar,
    .gallery-grid,
    .media-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .media-masonry {
        grid-auto-rows: 260px;
    }

    .footer-links {
        display: grid;
        gap: 0.7rem;
    }

    .toast {
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }

    input,
    select,
    textarea {
        min-height: 3rem;
        padding: 0.8rem 0.9rem;
        font-size: 1rem;
    }

    label {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 430px) {
    :root {
        --site-header-h: 60px;
    }

    .container,
    .navbar,
    .narrow {
        width: min(100% - 1rem, 1200px);
    }

    .section {
        padding: 3.4rem 0;
    }

    .navbar {
        min-height: var(--site-header-h);
        gap: 0.5rem;
        padding: 0 0.8rem;
    }

    .brand span {
        font-size: 1.1rem;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .menu-toggle span {
        width: 14px;
        height: 1.6px;
        margin: 3px auto;
    }

    .hero-content {
        padding-top: 5.5rem;
        padding-bottom: 1.5rem;
    }

    .btn {
        min-height: 3rem;
        padding: 0.85rem 1rem;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
    }

    .booking-card h2 {
        font-size: 1.45rem;
    }

    input,
    select,
    textarea {
        min-height: 3.2rem;
        padding: 0.85rem 0.9rem;
        font-size: 1rem;
    }

    .feature-strip article,
    .mini-grid span,
    .about-points article,
    .event-card,
    .catering-card,
    .catering-pricing,
    .pricing-note,
    .pricing-options article,
    details,
    .contact-card,
    .inquiry-form,
    .booking-panel,
    .testimonial-card,
    .package-card,
    .review-card,
    .policy-card,
    .value-card {
        padding: 1rem;
    }

    .image-stack img,
    .feature-image {
        height: 300px;
    }

    .room-image {
        height: 220px;
    }

    .gallery-grid,
    .media-masonry {
        grid-auto-rows: 230px;
    }

    .contact-info iframe {
        height: 230px;
    }

    .whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
        font-size: 0.85rem;
    }

    label {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
}
