:root {
    --bg: #f6f4ed;
    --surface: #ffffff;
    --surface-soft: #eef2e8;
    --forest: #0d3427;
    --forest-2: #18533c;
    --fern: #6f9c6b;
    --wood: #9a6a3f;
    --brass: #c7a661;
    --ink: #17231d;
    --muted: #667369;
    --line: rgba(23, 35, 29, 0.14);
    --white-line: rgba(255, 255, 255, 0.24);
    --shadow: 0 28px 70px rgba(13, 52, 39, 0.18);
    --bottom-contact-space: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: 104px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "Inter", Arial, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
    padding-bottom: calc(var(--bottom-contact-space) + env(safe-area-inset-bottom));
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.site-shell {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(22px, 5vw);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(13, 52, 39, 0.72);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand img {
    width: 278px;
    max-width: 42vw;
    max-height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
    flex-wrap: wrap;
}

.main-nav a,
.nav-dropdown-toggle {
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.is-current,
.nav-dropdown-toggle:hover,
.main-nav .nav-call {
    color: #fff;
    border-color: rgba(199, 166, 97, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-call {
    background: var(--brass);
    color: #10291f;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--white-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.nav-close {
    display: none;
}

.hero {
    min-height: 92svh;
    position: relative;
    display: grid;
    align-content: space-between;
    gap: 38px;
    padding: 132px max(22px, 6vw) 34px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 24, 18, 0.84) 0%, rgba(5, 24, 18, 0.58) 37%, rgba(5, 24, 18, 0.16) 68%, rgba(5, 24, 18, 0.04) 100%),
        linear-gradient(180deg, rgba(5, 24, 18, 0.08), rgba(5, 24, 18, 0.38) 100%),
        var(--hero-image) center center / cover no-repeat;
}

.hero-inner,
.page-hero-inner {
    width: min(660px, 100%);
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.content-copy h2,
.footer-cta h2 {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 720px;
    font-size: 60px;
    line-height: 1.04;
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}

.hero-subcopy {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions,
.page-actions,
.announcement-actions,
.footer-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    color: #10291f;
    background: var(--brass);
    box-shadow: 0 14px 38px rgba(199, 166, 97, 0.24);
}

.btn-primary:hover {
    background: #d5b875;
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.14);
}

.service-tabs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 26px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 38, 29, 0.58);
    backdrop-filter: blur(14px);
}

.service-tabs a {
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
}

.service-tabs a:hover {
    color: #10291f;
    background: var(--brass);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(760px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(10, 43, 32, 0.64);
    backdrop-filter: blur(18px);
}

.hero-stats article {
    min-height: 112px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats article:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    color: #fff;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.announcement-strip,
.section-band,
.faq-section,
.single-page-section {
    padding: 78px max(22px, 6vw);
}

.announcement-strip {
    padding-top: 28px;
    padding-bottom: 28px;
    background: var(--forest);
}

.announcement-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, 100%);
    margin: 0 auto;
    color: #fff;
}

.announcement-copy strong {
    display: block;
    font-size: 20px;
}

.announcement-copy span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
}

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

.section-heading h2 {
    color: var(--forest);
    font-size: 40px;
    line-height: 1.18;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.feature-item,
.price-item,
.contact-page-item {
    min-width: 0;
    background: rgba(255, 255, 255, 0.78);
    padding: 28px;
}

.feature-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 38px;
    border-radius: 8px;
    color: #10291f;
    background: rgba(199, 166, 97, 0.28);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 21px;
    font-weight: 700;
}

.feature-item h3,
.price-item h3 {
    margin: 18px 0 8px;
    color: var(--forest);
    font-size: 19px;
}

.feature-item p,
.price-item p,
.rich-text,
.content-copy p,
.faq-list p,
.footer-brand-block p,
.footer-column p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.content-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: max(34px, 5vw);
    padding: 88px max(22px, 6vw);
    background: var(--surface);
}

.content-section.is-reversed {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    background: var(--surface-soft);
}

.content-section.is-reversed .content-media {
    order: 2;
}

.content-media {
    min-width: 0;
}

.content-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-copy {
    min-width: 0;
    max-width: 620px;
}

.content-copy h2 {
    color: var(--forest);
    font-size: 38px;
    line-height: 1.18;
}

.rich-text {
    margin-top: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: var(--forest);
    font-weight: 800;
    border-bottom: 2px solid var(--brass);
    padding-bottom: 5px;
}

.pricing-band {
    background: var(--forest);
}

.pricing-band .section-heading h2,
.pricing-band .eyebrow {
    color: #fff;
}

.pricing-band .eyebrow {
    color: var(--brass);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.price-item {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.pricing-band .price-item {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-band .price-item h3,
.pricing-band .price-item strong {
    color: #fff;
}

.pricing-band .price-item p {
    color: rgba(255, 255, 255, 0.72);
}

.badge {
    display: inline-flex;
    border-radius: 8px;
    color: #10291f;
    background: var(--brass);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
}

.price-item strong {
    display: block;
    margin-top: 14px;
    color: var(--forest);
    font-size: 30px;
}

.reservation-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: max(34px, 5vw);
    align-items: start;
    padding: 88px max(22px, 6vw);
    background:
        linear-gradient(90deg, rgba(13, 52, 39, 0.94), rgba(13, 52, 39, 0.86)),
        url("../img/kozalak-evening.webp") center / cover no-repeat;
    color: #fff;
}

.single-reservation {
    padding: 0;
    background: transparent;
    color: var(--ink);
}

.reservation-copy {
    max-width: 540px;
}

.reservation-copy h2 {
    margin: 0;
    color: inherit;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 39px;
    line-height: 1.18;
}

.reservation-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.single-reservation .reservation-copy p {
    color: var(--muted);
}

.contact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-lines a {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-weight: 800;
}

.single-reservation .contact-lines a {
    color: var(--forest);
    border-color: var(--line);
}

.reservation-form {
    display: grid;
    gap: 14px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.reservation-form label,
.availability-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.reservation-form span,
.availability-field > span {
    color: var(--forest);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(23, 35, 29, 0.18);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    padding: 12px 13px;
    outline: none;
}

.reservation-form textarea {
    resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 4px rgba(199, 166, 97, 0.18);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.availability-row {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.availability-summary {
    min-height: 44px;
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface-soft);
    padding: 12px;
    font-size: 13px;
    line-height: 1.45;
}

.availability-summary[data-status="error"] {
    color: #7d2019;
    background: #f6dfdc;
}

.availability-summary[data-status="selected"],
.availability-summary[data-status="ready"] {
    color: var(--forest);
    background: rgba(111, 156, 107, 0.18);
}

.availability-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.availability-slot {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--forest);
    background: #fff;
    padding: 9px 8px;
    cursor: pointer;
}

.availability-slot strong,
.availability-slot span {
    display: block;
    color: inherit;
    font-size: 12px;
    line-height: 1.2;
}

.availability-slot span {
    margin-top: 3px;
    color: var(--muted);
    text-transform: none;
}

.availability-slot.is-selected {
    border-color: var(--brass);
    background: rgba(199, 166, 97, 0.2);
}

.availability-slot:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.form-alert {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
}

.form-alert.success {
    color: #143c2c;
    background: #dceede;
}

.form-alert.error {
    color: #7d2019;
    background: #f6dfdc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.gallery-grid figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--forest);
}

.gallery-grid img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 16px 16px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(5, 24, 18, 0.88));
}

.gallery-grid figcaption strong,
.gallery-grid figcaption span {
    display: block;
}

.gallery-grid figcaption span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.4;
}

.faq-section {
    background: var(--surface-soft);
}

.faq-list {
    width: min(900px, 100%);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--forest);
    font-size: 18px;
    font-weight: 800;
}

.faq-list p {
    margin: 12px 0 0;
}

.page-hero {
    min-height: 62svh;
    display: grid;
    align-items: end;
    padding: 142px max(22px, 6vw) 76px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 24, 18, 0.84) 0%, rgba(5, 24, 18, 0.56) 45%, rgba(5, 24, 18, 0.14) 100%),
        var(--hero-image) center center / cover no-repeat;
}

.page-hero h1 {
    font-size: 48px;
    line-height: 1.08;
}

.single-page-section {
    background: var(--surface);
}

.single-page-section .content-section {
    padding: 0;
}

.page-copy {
    margin: 0 auto;
}

.page-empty {
    width: min(720px, 100%);
    margin: 0 auto;
    color: var(--muted);
    text-align: center;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.contact-page-item span {
    display: block;
    color: var(--brass);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-page-item a,
.contact-page-item p {
    display: block;
    margin: 10px 0 0;
    color: var(--forest);
    font-weight: 800;
}

.site-footer {
    color: #fff;
    background: #0a2a20;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 68px max(22px, 6vw);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    font-size: 34px;
    line-height: 1.18;
}

.footer-cta p,
.footer-brand-block p,
.footer-column p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.7fr) minmax(220px, 0.8fr);
    gap: 34px;
    padding: 54px max(22px, 6vw);
}

.footer-brand-block img {
    width: 290px;
    max-width: 100%;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-badges span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column strong {
    color: var(--brass);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px max(22px, 6vw);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a {
    color: #fff;
    font-weight: 800;
}

.testimonials-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(238, 242, 232, 0.92)),
        var(--surface-soft);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.testimonial-item {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 240px;
    padding: 24px;
    border: 1px solid rgba(13, 52, 39, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 40px rgba(13, 52, 39, 0.08);
}

.testimonial-stars {
    color: var(--brass);
    font-size: 16px;
    letter-spacing: 0;
}

.testimonial-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.testimonial-item strong {
    align-self: end;
    color: var(--forest);
}

.testimonial-item span {
    color: var(--wood);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bottom-contact-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 35;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bottom-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
    padding: 10px;
    box-shadow: 0 18px 44px rgba(13, 52, 39, 0.28);
}

.bottom-contact-whatsapp {
    background: #1f6f4a;
}

.bottom-contact-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 11px;
    font-weight: 900;
}

.bottom-contact-text {
    min-width: 0;
}

.bottom-contact-text strong,
.bottom-contact-text small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bottom-contact-text strong {
    font-size: 13px;
}

.bottom-contact-text small {
    margin-top: 2px;
    opacity: 0.78;
    font-size: 11px;
}

.cookie-banner {
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    bottom: calc(var(--bottom-contact-space) + 18px + env(safe-area-inset-bottom));
    left: clamp(14px, 3vw, 34px);
    z-index: 85;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(13, 52, 39, 0.16);
    border-radius: 8px;
    background: rgba(246, 244, 237, 0.96);
    box-shadow: 0 20px 70px rgba(13, 52, 39, 0.22);
    backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--forest);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-actions button {
    min-height: 40px;
    border: 1px solid rgba(13, 52, 39, 0.16);
    border-radius: 8px;
    background: rgba(13, 52, 39, 0.06);
    color: var(--forest);
    padding: 9px 12px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-actions button[data-cookie-accept] {
    border-color: rgba(199, 166, 97, 0.72);
    background: var(--brass);
    color: #17231d;
}

@media (max-width: 1120px) {
    .brand img {
        width: 236px;
    }

    .main-nav {
        gap: 3px;
    }

    .main-nav a {
        padding: 9px 8px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 50px;
    }

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

@media (max-width: 900px) {
    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .site-header {
        padding: 12px 18px;
    }

    .brand img {
        width: 220px;
        max-width: 68vw;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        z-index: 45;
        display: none;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        grid-template-columns: 1fr;
        align-content: start;
        align-items: stretch;
        justify-content: start;
        gap: 8px;
        padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
        overflow-y: auto;
        background: #0d3427;
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 13px 12px;
        font-size: 13px;
    }

    .nav-close {
        display: inline-flex;
        justify-self: end;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 92px;
        min-height: 42px;
        margin-bottom: 8px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        padding: 0 16px;
        font-size: 13px;
        font-weight: 800;
    }

    .hero {
        min-height: auto;
        padding: 118px 22px 24px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 21px;
    }

    .hero-stats,
    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .reservation-section,
    .contact-page-grid,
    .footer-main,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .hero-stats article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-stats article:last-child {
        border-bottom: 0;
    }

    .content-section,
    .content-section.is-reversed {
        grid-template-columns: 1fr;
        padding: 64px 22px;
    }

    .content-section.is-reversed .content-media {
        order: 0;
    }

    .section-heading h2,
    .content-copy h2,
    .reservation-copy h2 {
        font-size: 32px;
    }

    .announcement-card,
    .footer-cta {
        display: grid;
    }

    .footer-cta {
        padding: 52px 22px;
    }

    .footer-main {
        padding: 42px 22px;
    }

    .bottom-contact-bar {
        display: grid;
    }

    body.nav-open .bottom-contact-bar {
        display: none;
    }

    .cookie-banner {
        bottom: calc(98px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero-inner,
    .page-hero-inner {
        width: 100%;
        max-width: calc(100vw - 36px);
    }

    .hero h1 {
        max-width: 100%;
        font-size: 31px;
        line-height: 1.12;
        overflow-wrap: break-word;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: 31px;
        line-height: 1.12;
        overflow-wrap: break-word;
    }

    .hero-copy {
        max-width: 100%;
        font-size: 17px;
    }

    .hero-subcopy {
        max-width: 100%;
        font-size: 15px;
    }

    .service-tabs {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .page-actions,
    .footer-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .hero-actions a,
    .page-actions a,
    .footer-cta-actions a {
        width: 100%;
    }

    .announcement-strip,
    .section-band,
    .faq-section,
    .single-page-section {
        padding: 54px 18px;
    }

    .form-row,
    .availability-row {
        grid-template-columns: 1fr;
    }

    .reservation-section {
        grid-template-columns: 1fr;
        padding: 60px 18px;
    }

    .reservation-form {
        padding: 18px;
    }

    .availability-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        min-height: auto;
        padding: 20px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-actions button {
        width: 100%;
        min-width: 0;
    }

    .gallery-grid img {
        height: 330px;
    }

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