/* Adrasan Camping - frontend */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #173c32;
    --secondary: #0b6279;
    --accent: #f6bd74;
    --surface: #f8eddb;
    --ink: #17241f;
    --muted: #65726c;
    --white: #ffffff;
    --deep: #0b231f;
    --line: rgba(255,255,255,.18);
    --shadow: 0 24px 80px rgba(10, 35, 31, .22);
    --radius: 28px;
    --radius-sm: 16px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(246,189,116,.22), transparent 28rem),
        linear-gradient(180deg, #fbf4e8 0%, #f4e6d1 48%, #efe0c8 100%);
    line-height: 1.6;
}

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

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

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

.skip-link {
    position: fixed;
    top: -60px;
    left: 1rem;
    z-index: 1000;
    background: var(--accent);
    color: #1e1b15;
    padding: .75rem 1rem;
    border-radius: 999px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(var(--container), calc(100% - 36px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: .25s ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(12, 36, 31, .72);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 76px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(13,48,43,.62), rgba(17,57,49,.22));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 58px rgba(4,25,22,.2);
}

.brand img {
    width: 190px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: rgba(255,255,255,.88);
    font-weight: 750;
    font-size: .92rem;
    padding: .72rem .86rem;
    border-radius: 999px;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.main-nav .nav-reserve {
    background: var(--accent);
    color: #1d211b;
    box-shadow: 0 8px 22px rgba(246,189,116,.28);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 99px;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 180px 0 56px;
    color: #fff;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(9,30,27,.82));
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 30%, rgba(246,189,116,.12), transparent 24rem),
        linear-gradient(90deg, rgba(9, 29, 33, .72), rgba(9, 42, 34, .26) 48%, rgba(9, 29, 33, .34)),
        linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.12) 42%, rgba(0,0,0,.4));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 38px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.hero h1,
.page-banner h1,
.thanks-card h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.8rem, 6.5vw, 6.45rem);
    line-height: .9;
    letter-spacing: -.07em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.hero p {
    max-width: 710px;
    margin: 0;
    font-size: clamp(1.04rem, 2vw, 1.34rem);
    color: rgba(255,255,255,.9);
}

.hero-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #ffdba8);
    color: #211b11;
    box-shadow: 0 16px 36px rgba(246,189,116,.32);
}

.btn-ghost {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
}

.btn-ghost.light {
    color: #fff;
}

.btn-ghost.dark {
    color: var(--primary);
    border-color: rgba(23,60,50,.18);
    background: rgba(23,60,50,.06);
}

.btn.full {
    width: 100%;
}

.glass {
    border: 1px solid rgba(255,255,255,.26);
    background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.hero-panel {
    align-self: end;
    margin-bottom: 72px;
    padding: 24px;
    border-radius: 24px;
}

.hero-panel strong,
.hero-panel span,
.hero-panel a {
    display: block;
}

.hero-panel strong {
    font-size: 1.2rem;
}

.hero-panel span {
    margin: 8px 0 14px;
    color: rgba(255,255,255,.82);
}

.hero-panel a {
    color: var(--accent);
    font-weight: 900;
}

.stats-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 62px;
}

.stats-strip div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    background: rgba(8,35,31,.52);
    backdrop-filter: blur(14px);
}

.stats-strip strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--accent);
}

.stats-strip span {
    color: rgba(255,255,255,.82);
    font-weight: 700;
}

.scroll-hint {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 22px;
    width: 34px;
    height: 34px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    opacity: .9;
    animation: floatDown 1.7s infinite;
}

@keyframes floatDown {
    0%, 100% { translate: 0 0; opacity: .6; }
    50% { translate: 0 9px; opacity: 1; }
}

.section {
    padding: 96px 0;
}

.section.muted {
    background: rgba(255,255,255,.32);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.section-heading.centered {
    display: block;
    max-width: 820px;
    text-align: center;
    margin-inline: auto;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.split-panel h2,
.contact-card h2,
.reservation-page h2 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
    color: var(--primary);
    text-wrap: balance;
}

.section-heading p,
.split-panel p,
.contact-card p,
.reservation-page p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.text-link {
    font-weight: 900;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

.discovery {
    background:
        linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,0)),
        radial-gradient(circle at 72% 18%, rgba(11,98,121,.13), transparent 28rem);
}

.map-card {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.65);
    background-image:
        linear-gradient(180deg, rgba(5,25,22,.05), rgba(5,25,22,.55)),
        var(--map-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.map-card.big {
    min-height: 620px;
}

.map-pins {
    position: absolute;
    inset: 26px 26px auto auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    max-width: 550px;
    gap: 10px;
}

.map-pins span,
.pill,
.tag-row span,
.filter-pills button {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .42rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: var(--primary);
    font-weight: 850;
    font-size: .86rem;
    box-shadow: 0 8px 25px rgba(8,35,31,.12);
}

.map-route {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 380px;
    padding: 24px;
    border-radius: 24px;
    color: #fff;
}

.map-route strong {
    display: block;
    font-size: 1.45rem;
}

.map-route p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.82);
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.stay-card,
.service-card,
.review-card,
.guide-card,
.contact-card,
.reserve-card,
.feature-box,
.stay-detail,
.thanks-card {
    border: 1px solid rgba(23,60,50,.1);
    background: rgba(255,255,255,.62);
    border-radius: var(--radius);
    box-shadow: 0 18px 54px rgba(23,60,50,.1);
}

.stay-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

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

.stay-card div {
    padding: 22px;
}

.stay-card span {
    color: var(--secondary);
    font-weight: 900;
    font-size: .86rem;
}

.stay-card h3,
.service-card h3,
.review-card strong,
.reserve-card h3,
.guide-card h2,
.stay-detail h2 {
    margin: 8px 0;
    color: var(--primary);
    line-height: 1.08;
}

.stay-card p,
.service-card p,
.review-card p,
.guide-card p,
.stay-detail p {
    color: var(--muted);
    font-weight: 600;
}

.stay-card strong {
    display: inline-flex;
    margin-top: 10px;
    color: var(--primary);
}

.services-band {
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(246,189,116,.18), transparent 24rem),
        linear-gradient(135deg, #102b25, #183f34 46%, #0e2734);
}

.services-band .section-heading h2,
.services-band .section-heading p {
    color: #fff;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.icon-grid.wide {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    padding: 24px;
}

.services-band .service-card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}

.service-card img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.services-band .service-card h3,
.services-band .service-card p {
    color: #fff;
}

.stories {
    background:
        radial-gradient(circle at 82% 18%, rgba(246,189,116,.16), transparent 24rem),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(23,60,50,.08));
}

.stories-grid,
.split-panel,
.contact-grid,
.reservation-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.review-stack {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.review-stack.expanded {
    gap: 20px;
}

.review-card {
    padding: 22px;
}

.stars {
    color: #d89b43;
    letter-spacing: .05em;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.review-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.review-person span {
    display: block;
    color: var(--muted);
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: 170px;
    gap: 14px;
}

.photo-mosaic.sticky {
    position: sticky;
    top: 120px;
}

.photo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 18px 52px rgba(23,60,50,.14);
}

.photo-mosaic img.large {
    grid-row: span 2;
}

.gallery-preview {
    background: rgba(255,255,255,.24);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.gallery-strip figure,
.masonry-gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(23,60,50,.12);
    background: #fff;
}

.gallery-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-strip figcaption {
    position: absolute;
    inset: auto 10px 10px 10px;
    padding: .55rem .7rem;
    border-radius: 14px;
    background: rgba(10,36,31,.74);
    color: #fff;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.about-reserve {
    background:
        radial-gradient(circle at 18% 20%, rgba(11,98,121,.12), transparent 24rem),
        linear-gradient(135deg, rgba(246,189,116,.18), rgba(255,255,255,.16));
}

.split-panel {
    padding: 34px;
    border-radius: 36px;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: var(--shadow);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--primary);
    font-weight: 800;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #1f1a11;
    font-size: .8rem;
}

.reserve-card,
.contact-card,
.feature-box {
    padding: 28px;
}

.reserve-card.large {
    padding: 34px;
}

.reservation-form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid.two {
    grid-template-columns: 1fr 1fr;
}

.reservation-form label {
    display: grid;
    gap: 7px;
    color: var(--primary);
    font-weight: 850;
}

.reservation-form span {
    font-size: .88rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    border: 1px solid rgba(23,60,50,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.8);
    color: var(--ink);
    padding: .88rem .95rem;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(11,98,121,.12);
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.page-banner {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: end start;
    padding: 170px 0 80px;
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(8,34,30,.78), rgba(8,34,30,.24)),
        linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45)),
        var(--banner-image);
    background-size: cover;
    background-position: center;
}

.page-banner-inner {
    max-width: 840px;
}

.page-banner h1 {
    font-size: clamp(2.4rem, 5.5vw, 5rem);
}

.page-banner p {
    max-width: 720px;
    font-size: 1.2rem;
    color: rgba(255,255,255,.86);
    font-weight: 650;
}

.stay-list {
    display: grid;
    gap: 24px;
}

.stay-detail {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    padding: 18px;
    align-items: center;
}

.stay-detail img {
    height: 330px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.stay-detail > div {
    padding: 18px 18px 18px 0;
}

.stay-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.stay-action strong {
    color: var(--secondary);
    font-size: 1.2rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.guide-card {
    overflow: hidden;
}

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

.guide-card > div {
    padding: 24px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-row span {
    min-height: 28px;
    font-size: .78rem;
}

details {
    margin-top: 16px;
    border-top: 1px solid rgba(23,60,50,.12);
    padding-top: 14px;
}

summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--secondary);
}

.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-pills button {
    border: 0;
    cursor: pointer;
}

.filter-pills button.active {
    background: var(--primary);
    color: #fff;
}

.masonry-gallery {
    columns: 3 280px;
    column-gap: 18px;
}

.masonry-gallery figure {
    break-inside: avoid;
    margin-bottom: 18px;
}

.masonry-gallery img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
}

.masonry-gallery figcaption {
    position: absolute;
    inset: auto 12px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: .72rem .85rem;
    border-radius: 16px;
    background: rgba(9, 35, 31, .78);
    color: #fff;
    backdrop-filter: blur(14px);
}

.masonry-gallery figcaption span {
    color: var(--accent);
    font-weight: 800;
}

.contact-grid {
    align-items: start;
}

.contact-card,
.reserve-card,
.feature-box {
    background: rgba(255,255,255,.66);
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.contact-lines a,
.contact-lines span {
    display: block;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(23,60,50,.06);
    color: var(--primary);
    font-weight: 850;
}

.map-embed {
    overflow: hidden;
    min-height: 260px;
    border-radius: 22px;
    background: rgba(23,60,50,.08);
}

.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.fake-map {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 850;
    text-align: center;
    padding: 24px;
    background-image:
        linear-gradient(90deg, rgba(23,60,50,.06) 1px, transparent 1px),
        linear-gradient(rgba(23,60,50,.06) 1px, transparent 1px);
    background-size: 34px 34px;
}

.reservation-page {
    align-items: start;
}

.thanks-screen {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(9,33,30,.78), rgba(9,33,30,.2)),
        url('../img/hero-adrasan.svg') center / cover;
}

.thanks-card {
    max-width: 850px;
    padding: 48px;
    text-align: center;
    margin-inline: auto;
    background: rgba(255,255,255,.8);
}

.thanks-card h1 {
    color: var(--primary);
    text-shadow: none;
}

.thanks-card p {
    font-size: 1.18rem;
    color: var(--muted);
}

.thanks-card .hero-actions {
    justify-content: center;
}

.footer-cta {
    padding: 54px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(246,189,116,.2), transparent 22rem),
        linear-gradient(135deg, #102b25, #183f34);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.site-footer {
    color: rgba(255,255,255,.78);
    background: #071b18;
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 14px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a,
.site-footer span {
    display: block;
    color: rgba(255,255,255,.76);
    margin: 8px 0;
}

.site-footer a:hover {
    color: var(--accent);
}

.admin-link {
    color: var(--accent) !important;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .92rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 52px;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #0d2718;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(37,211,102,.28);
}

@media (max-width: 1080px) {
    .card-grid.four,
    .icon-grid,
    .icon-grid.wide,
    .gallery-strip,
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner,
    .stories-grid,
    .split-panel,
    .contact-grid,
    .reservation-page {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        margin-bottom: 0;
    }

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

    .stay-detail {
        grid-template-columns: 1fr;
    }

    .stay-detail > div {
        padding: 0 8px 12px;
    }

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

@media (max-width: 860px) {
    .site-header {
        padding: 10px 0;
    }

    .nav-shell {
        min-height: 64px;
    }

    .brand img {
        width: 160px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 20px;
        background: rgba(10,34,30,.96);
        box-shadow: 0 22px 54px rgba(0,0,0,.24);
    }

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

    .main-nav a {
        text-align: center;
    }

    .hero {
        padding-top: 142px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 4.4rem);
    }

    .hero-panel {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        display: block;
    }

    .map-card,
    .map-card.big {
        min-height: 440px;
    }

    .map-pins {
        inset: 18px 18px auto 18px;
        justify-content: start;
    }

    .map-route {
        left: 18px;
        right: 18px;
        max-width: none;
    }

    .photo-mosaic {
        grid-auto-rows: 140px;
    }

    .page-banner {
        min-height: 420px;
        padding-top: 150px;
    }

    .footer-cta-inner,
    .footer-bottom {
        display: block;
    }

    .footer-actions {
        margin-top: 24px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .stats-strip,
    .card-grid.four,
    .icon-grid,
    .icon-grid.wide,
    .gallery-strip,
    .guide-grid,
    .form-grid.two,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 92svh;
        padding-bottom: 34px;
    }

    .stats-strip {
        margin-top: 36px;
    }

    .stats-strip div {
        padding: 14px;
    }

    .split-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .photo-mosaic {
        grid-template-columns: 1fr;
    }

    .photo-mosaic img.large {
        grid-row: auto;
    }

    .stay-detail img {
        height: 240px;
    }

    .masonry-gallery {
        columns: 1;
    }

    .reserve-card,
    .contact-card,
    .feature-box,
    .thanks-card {
        padding: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-width: auto;
    }
}
