/* FONTS: family=Space+Grotesk:wght@400;500;700&family=Manrope:wght@300;400;500;700;800 */
/* ================================================================
   V9 «Midnight Teal»
   Modern dark product UI: deep teal-black, glass panels, mint accent
   Type: Space Grotesk (display) + Manrope (text) — geometric sans only
   ================================================================ */
:root {
    color-scheme: dark;
    --bg:       #08161a;
    --bg-2:     #0a1c21;
    --panel:    #0e262c;
    --panel-2:  #123138;
    --glass:    rgba(18, 49, 56, .62);
    --mint:     #3fe0b0;
    --mint-2:   #7ff0d0;
    --mint-dim: rgba(63, 224, 176, .13);
    --text:     #dceaec;
    --muted:    #8ba7ad;
    --line:     rgba(255, 255, 255, .10);
    --line-2:   rgba(255, 255, 255, .18);
    --shadow:   0 18px 44px rgba(0, 0, 0, .45);
    --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
    --sans:    "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans); color: var(--text); line-height: 1.75; font-size: 16.5px;
    background: var(--bg);
    background-image:
        radial-gradient(900px 520px at 12% -8%, rgba(63,224,176,.10), transparent 65%),
        radial-gradient(760px 480px at 92% 4%, rgba(58,148,190,.10), transparent 62%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; width: 100%; }
.narrow { max-width: 810px; }
.center { text-align: center; }

h1, h2, h3 {
    font-family: var(--display); color: #f2fbfa; line-height: 1.14;
    font-weight: 500; letter-spacing: -.015em; overflow-wrap: break-word;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
h3 { font-size: 1.42rem; }
h2.light, h1.light { color: #fff; }

.section-kicker {
    display: inline-block; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
    font-size: .68rem; color: var(--mint); margin-bottom: 12px;
}
.section-kicker.gold { color: var(--mint-2); }
.section-lead { max-width: 640px; margin: 0 auto 26px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
    display: inline-block; font-family: var(--sans); font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; font-size: .74rem; padding: 15px 32px; border-radius: 10px;
    border: 1px solid transparent; cursor: pointer; transition: all .22s ease; text-align: center;
}
.btn-lg { padding: 18px 44px; font-size: .8rem; }
.btn-gold { background: linear-gradient(135deg, var(--mint-2), var(--mint)); color: #05201a; box-shadow: 0 8px 22px rgba(63,224,176,.24); }
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(63,224,176,.32); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(8,22,26,.42); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: #08161a; border-color: #fff; }
.btn-dark { background: var(--panel-2); color: #eafaf6; border-color: var(--line-2); }
.btn-dark:hover { background: var(--mint-dim); border-color: var(--mint); color: var(--mint-2); }
.btn-line { border-color: rgba(63,224,176,.5); color: var(--mint); background: transparent; }
.btn-line:hover { background: var(--mint-dim); border-color: var(--mint); }

/* ---------- top bar + header ---------- */
.topbar { background: #061114; border-bottom: 1px solid var(--line); }
.topbar-inner {
    display: flex; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px;
    font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.site-header {
    background: rgba(8,22,26,.78); backdrop-filter: blur(18px) saturate(140%);
    position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 26px; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px;
    background: linear-gradient(140deg, var(--mint), #189e7c); color: #052018;
    display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(63,224,176,.28);
}
.logo-text { color: #f2fbfa; font-family: var(--display); font-weight: 500; font-size: 1.05rem; line-height: 1.2; }
.logo-text small {
    display: block; color: var(--mint); font-size: .58rem; letter-spacing: .28em;
    text-transform: uppercase; font-weight: 800; font-family: var(--sans);
}
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a {
    color: var(--muted); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
    font-weight: 700; padding: 6px 0; border-bottom: 2px solid transparent; transition: all .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--mint); border-bottom-color: var(--mint); }
.header-cta { white-space: nowrap; }
.nav-toggle {
    display: none; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); border-radius: 9px;
    color: var(--mint); font-size: 1.1rem; padding: 6px 13px; cursor: pointer; line-height: 1;
}

/* ---------- hero ---------- */
.hero, .page-hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.page-hero { min-height: 46vh; }
.page-hero.short { min-height: 38vh; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.75); }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(70% 60% at 50% 40%, rgba(8,22,26,.42), rgba(8,22,26,.88) 100%),
        linear-gradient(180deg, rgba(8,22,26,.9) 0%, rgba(8,22,26,.62) 45%, rgba(8,22,26,.97) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 84px 24px; width: 100%; }
.hero-kicker {
    display: inline-block; color: var(--mint); letter-spacing: .3em; text-transform: uppercase;
    font-size: .7rem; font-weight: 800; margin-bottom: 22px; padding: 7px 16px;
    border: 1px solid rgba(63,224,176,.4); border-radius: 999px; background: rgba(63,224,176,.08);
    backdrop-filter: blur(6px);
}
.hero h1, .page-hero h1 { color: #f4fffd; margin-bottom: 20px; }
.hero-sub { color: rgba(224,240,240,.86); max-width: 630px; margin: 0 auto 34px; font-size: 1.08rem; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    color: var(--mint); font-size: 1.2rem; z-index: 2; animation: hs 2s ease-in-out infinite;
}
@keyframes hs { 0%,100% { transform: translate(-50%, 0); opacity: .55; } 50% { transform: translate(-50%, 8px); opacity: 1; } }

/* ---------- booking strip ---------- */
.booking-strip { background: transparent; }
.booking-bar {
    display: flex; background: var(--glass); backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--shadow);
    transform: translateY(-50%); overflow: hidden;
}
.bb-field { flex: 1 1 0; min-width: 0; padding: 15px 20px; border-right: 1px solid var(--line); }
.bb-field:last-of-type { border-right: 0; }
.bb-field label {
    display: block; font-size: .61rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--mint); font-weight: 800; margin-bottom: 4px;
}
.bb-field select, .bb-field input {
    width: 100%; max-width: 100%; border: 0; outline: 0; font-family: var(--sans); font-size: .92rem;
    color: #eafaf6; background: transparent; font-weight: 700;
}
.bb-submit { border: 0; flex: 0 0 auto; align-self: stretch; border-radius: 0; }

/* ---------- intro / highlights ---------- */
.intro { padding: 40px 0 84px; }
.intro p, .highlights p { margin-bottom: 18px; color: #c3d8db; font-weight: 300; }
.highlights { padding: 88px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.highlight-cards figure {
    position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 14px;
    background: var(--panel); transition: transform .25s, border-color .25s;
}
.highlight-cards figure:hover { transform: translateY(-4px); border-color: rgba(63,224,176,.42); }
.highlight-cards img { height: 200px; width: 100%; object-fit: cover; }
.highlight-cards figcaption {
    text-align: center; padding: 13px 8px; color: var(--mint-2); background: var(--panel);
    font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 800;
    border-top: 1px solid var(--line);
}

/* ---------- rating: resort cards ---------- */
.rating { padding: 82px 0; }
.hotel-card {
    display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); margin-top: 52px;
    background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow); overflow: hidden; transition: border-color .25s;
}
.hotel-card:hover { border-color: rgba(63,224,176,.32); }
.hotel-card.flip .hc-media { order: 2; }
.hc-media { position: relative; min-height: 400px; }
.hc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hc-rank {
    position: absolute; top: 16px; left: 16px; background: rgba(8,22,26,.78); color: var(--mint);
    font-family: var(--display); font-weight: 700; font-size: 1.15rem; padding: 7px 16px;
    border: 1px solid rgba(63,224,176,.45); border-radius: 999px; backdrop-filter: blur(8px);
}
.hc-body { padding: 38px 42px; }
.hc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.hc-location { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.hc-overall {
    text-align: center; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 14px;
    padding: 10px 16px; background: rgba(63,224,176,.07);
}
.hc-score { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--mint); line-height: 1.1; }
.hc-stars { color: var(--mint-2); letter-spacing: .08em; font-size: .78rem; }
.star-half { display: inline-block; width: .62em; overflow: hidden; vertical-align: bottom; opacity: .55; }
.hc-stats { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-bottom: 20px; }
.hc-stats li {
    font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800;
    color: #b9d3d6; background: rgba(255,255,255,.045); border: 1px solid var(--line);
    border-radius: 999px; padding: 6px 13px;
}
.hc-scores { margin-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 26px; }
.hc-scorebar { display: flex; align-items: center; gap: 10px; }
.sb-label { flex: 0 0 82px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: var(--muted); font-size: .62rem; }
.sb-track { flex: 1 1 0; min-width: 0; height: 6px; background: rgba(255,255,255,.07); border-radius: 999px; position: relative; overflow: hidden; }
.sb-fill { position: absolute; inset: 0; right: auto; border-radius: 999px; background: linear-gradient(90deg, #2bbf94, var(--mint-2)); }
.sb-val { flex: 0 0 26px; text-align: right; font-weight: 800; color: #eafaf6; font-size: .84rem; }
.hc-text { margin-bottom: 12px; font-size: .94rem; color: #c3d8db; font-weight: 300; }
.hc-text strong { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 2px; color: var(--mint); font-weight: 800; }
.hc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- events teaser (dark band) ---------- */
.events-teaser {
    padding: 86px 0; background: var(--bg-2);
    background-image: linear-gradient(180deg, rgba(63,224,176,.06), transparent 45%);
    border-top: 1px solid var(--line);
}
.events-teaser h2 { margin-bottom: 36px; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.teaser-card {
    display: flex; gap: 16px; background: var(--glass); backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: 16px; padding: 22px; transition: all .22s;
}
.teaser-card:hover { border-color: rgba(63,224,176,.5); transform: translateY(-4px); box-shadow: var(--shadow); }
.tc-date { flex: 0 0 auto; text-align: center; color: var(--mint); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
.tc-date span { display: block; font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1.05; color: #fff; }
.tc-body { display: flex; flex-direction: column; gap: 6px; color: #b9d3d6; min-width: 0; }
.tc-body strong { font-weight: 700; line-height: 1.35; color: #fff; }
.tc-body em { font-style: normal; font-size: .78rem; color: var(--muted); }
.tc-tag {
    align-self: flex-start; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 999px; font-weight: 800;
}
.tc-tag.poker { background: rgba(63,224,176,.15); color: var(--mint-2); border: 1px solid rgba(63,224,176,.45); }
.tc-tag.event { background: rgba(255,255,255,.09); color: #eaf6f7; border: 1px solid rgba(255,255,255,.28); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; padding: 96px 0;
    background: linear-gradient(rgba(8,22,26,.9), rgba(8,22,26,.94)), url('img/hero.jpg') center/cover;
    border-top: 1px solid var(--line);
}
.cta-sub { color: rgba(224,240,240,.8); margin: 0 0 28px; font-weight: 300; }

/* ---------- events page ---------- */
.events-list { padding: 62px 0 90px; }
.filter-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.chip {
    padding: 10px 22px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,.04);
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
    color: var(--muted); transition: all .2s;
}
.chip:hover { border-color: rgba(63,224,176,.5); color: var(--mint-2); }
.chip.on { background: linear-gradient(135deg, var(--mint-2), var(--mint)); color: #05201a; border-color: transparent; }
.event-row {
    display: grid; grid-template-columns: 104px minmax(0, 1fr) auto; gap: 26px; align-items: center;
    background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--mint);
    border-radius: 14px; padding: 26px 30px; margin-bottom: 16px; transition: border-color .22s, transform .22s;
}
.event-row:hover { transform: translateY(-2px); border-color: rgba(63,224,176,.3); border-left-color: var(--mint-2); }
.er-date { text-align: center; border-right: 1px solid var(--line); padding-right: 22px; }
.er-day { display: block; font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: #f2fbfa; line-height: 1; }
.er-month { display: block; color: var(--mint); letter-spacing: .26em; text-transform: uppercase; font-size: .72rem; font-weight: 800; margin-top: 4px; }
.er-dow { display: block; color: var(--muted); font-size: .7rem; margin-top: 2px; }
.er-body { min-width: 0; }
.er-top { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
/* .event-row sits on a lighter panel than the teaser band — strengthen tag contrast */
.event-row .tc-tag.poker { background: rgba(63,224,176,.17); color: #9df5da; border-color: rgba(63,224,176,.5); }
.event-row .tc-tag.event { background: rgba(255,255,255,.11); color: #f0fafb; border-color: rgba(255,255,255,.34); }
.er-badge {
    font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
    color: #eafaf6; background: rgba(255,255,255,.07); border: 1px solid var(--line-2);
    border-radius: 999px; padding: 4px 12px;
}
.event-row .er-badge { background: rgba(63,224,176,.1); color: #d3f7ec; border-color: rgba(63,224,176,.34); }
.event-row h3 { margin-bottom: 4px; }
.er-meta { font-size: .83rem; color: var(--muted); margin-bottom: 8px; }
.er-desc { font-size: .93rem; max-width: 640px; color: #c3d8db; font-weight: 300; }
.er-cta { flex-shrink: 0; }
.events-note {
    margin: 38px auto 0; text-align: center; font-size: .79rem; color: var(--muted); max-width: 680px;
    border-top: 1px solid var(--line); padding-top: 22px;
}

/* ---------- booking page ---------- */
.booking-page { padding: 62px 0 90px; }
.booking-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 36px; align-items: start; }
.booking-form-wrap {
    background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
    padding: 40px; box-shadow: var(--shadow); min-width: 0;
}
.booking-form-wrap h2 { margin-bottom: 24px; }
.bf-row { display: flex; gap: 16px; }
.bf-field { flex: 1 1 0; min-width: 0; margin-bottom: 16px; }
.bf-narrow { flex: 0 0 106px; }
.bf-field label { display: block; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--mint); margin-bottom: 6px; }
.bf-field input, .bf-field select, .bf-field textarea {
    width: 100%; max-width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 10px;
    font-family: var(--sans); font-size: .94rem; color: #eafaf6; background: #0a1f25;
    outline: none; transition: border-color .2s, box-shadow .2s;
}
.bf-field textarea { resize: vertical; }
.bf-field input::placeholder, .bf-field textarea::placeholder { color: #5f7d83; }
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus {
    border-color: var(--mint); box-shadow: 0 0 0 3px rgba(63,224,176,.16);
}
select option, .bb-field select option, .bf-field select option { background: #0e262c; color: #eafaf6; }
.form-fineprint { margin-top: 14px; font-size: .75rem; color: var(--muted); }
.form-errors {
    background: rgba(255,105,97,.09); border: 1px solid rgba(255,125,115,.4); border-radius: 12px;
    padding: 14px 18px; margin-bottom: 20px; font-size: .87rem; color: #ffb4ab;
}
.form-errors p { margin: 2px 0; }

.confirm-card { text-align: center; padding: 18px 8px; }
.confirm-icon {
    width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
    background: linear-gradient(140deg, var(--mint), #189e7c); color: #052018;
    font-size: 2rem; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(63,224,176,.3);
}
.confirm-list {
    list-style: none; margin: 20px auto; max-width: 440px; text-align: left;
    border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.confirm-list li { padding: 12px 18px; border-bottom: 1px solid var(--line); font-size: .93rem; background: rgba(255,255,255,.03); }
.confirm-list li:last-child { border-bottom: 0; }
.confirm-list strong { display: inline-block; width: 100px; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mint); font-weight: 800; }
.confirm-note { font-size: .84rem; color: var(--muted); max-width: 480px; margin: 0 auto 22px; }
.confirm-card .hc-actions { justify-content: center; }

.booking-side {
    background: var(--glass); backdrop-filter: blur(18px) saturate(140%); color: #c3d8db;
    padding: 32px 28px; border: 1px solid var(--line); border-radius: 18px;
    position: sticky; top: 96px; min-width: 0;
}
.booking-side h3 { color: #f2fbfa; margin-bottom: 16px; font-size: 1.25rem; }
.booking-side h4 { color: var(--mint); letter-spacing: .2em; text-transform: uppercase; font-size: .68rem; font-weight: 800; margin: 24px 0 10px; font-family: var(--sans); }
.side-list { list-style: none; }
.side-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 300; }
.side-list strong { color: #eafaf6; font-weight: 700; }
.side-events { margin-top: 4px; }
.side-event { display: flex; gap: 12px; padding: 9px 0; font-size: .84rem; border-bottom: 1px solid var(--line); transition: color .2s; }
.side-event:hover { color: var(--mint-2); }
.se-date { flex: 0 0 52px; color: var(--mint); font-weight: 800; }
.booking-side a { color: var(--mint); }

/* ---------- legal ---------- */
.legal-page { padding: 72px 0 90px; }
.legal-page h1 { margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: .84rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.24rem; margin: 28px 0 10px; }
.legal-page p { margin-bottom: 14px; color: #c3d8db; font-weight: 300; }
.legal-page a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- footer ---------- */
.site-footer { background: #061114; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 34px; padding: 62px 24px 44px; }
.site-footer .logo-text { color: #f2fbfa; }
.footer-brand p { font-size: .86rem; margin-top: 16px; max-width: 300px; font-weight: 300; }
.footer-col { min-width: 0; }
.footer-col h4 { color: var(--mint); letter-spacing: .22em; text-transform: uppercase; font-size: .68rem; font-weight: 800; margin-bottom: 14px; font-family: var(--sans); }
.footer-col a { display: block; padding: 5px 0; font-size: .88rem; overflow-wrap: anywhere; transition: color .2s; }
.footer-col a:hover { color: var(--mint-2); }
.footer-note { font-size: .76rem; color: rgba(139,167,173,.75); margin-top: 12px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0 30px; text-align: center; }
.footer-bottom p { font-size: .8rem; }
.disclaimer { max-width: 760px; margin: 10px auto 0; color: rgba(139,167,173,.7); font-size: .74rem !important; }
.disclaimer strong { color: var(--mint); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-scroll { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
    .hotel-card, .hotel-card.flip { grid-template-columns: 1fr; }
    .hotel-card.flip .hc-media { order: 0; }
    .hc-media { min-height: 280px; }
    .teaser-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-side { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-bar { flex-wrap: wrap; transform: translateY(-28px); }
    .bb-field { flex: 1 1 44%; border-bottom: 1px solid var(--line); }
    .bb-field:last-of-type { border-right: 1px solid var(--line); }
    .bb-submit { flex: 1 1 100%; }
    .event-row { grid-template-columns: 88px minmax(0, 1fr); }
    .er-cta { grid-column: 2; }
    .highlight-cards { gap: 16px; }
}
@media (max-width: 720px) {
    body { font-size: 16px; }
    .container { padding: 0 18px; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(8,22,26,.97); backdrop-filter: blur(18px);
        flex-direction: column; padding: 18px; gap: 12px; border-bottom: 1px solid var(--line);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-cta { display: none; }
    .topbar-inner { justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; font-size: .6rem; }
    .hero { min-height: 74vh; }
    .hero-content { padding: 64px 4px; }
    h1 { font-size: clamp(1.75rem, 7.6vw, 2.5rem); }
    h2 { font-size: clamp(1.45rem, 6vw, 1.95rem); }
    .booking-bar { flex-direction: column; border-radius: 14px; }
    .bb-field { flex: 1 1 100%; border-right: 0; }
    .bb-field:last-of-type { border-right: 0; }
    .hc-body { padding: 24px 18px; }
    .hc-head { flex-direction: column; }
    .hc-overall { align-self: flex-start; }
    .hc-scores { grid-template-columns: 1fr; }
    .highlight-cards { grid-template-columns: 1fr; }
    .bf-row { flex-direction: column; gap: 0; }
    .bf-narrow { flex: 1 1 auto; }
    .booking-form-wrap { padding: 24px 18px; }
    .booking-side { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 18px 36px; }
    .event-row { grid-template-columns: 1fr; padding: 20px 18px; gap: 16px; }
    .er-date { text-align: left; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 12px; }
    .er-cta { grid-column: 1; }
    .er-cta .btn { display: block; width: 100%; }
    .btn { padding: 14px 22px; font-size: .7rem; }
    .btn-lg { padding: 16px 26px; font-size: .74rem; }
    .teaser-card { padding: 18px; }
    .events-list, .booking-page, .legal-page { padding-top: 46px; }
}
