:root {
    --bg: #120c0a;
    --overscroll-bg: var(--bg);
    --page-bg: radial-gradient(circle at 50% -15%, #3a211b, #1b120f 45%, #120c0a);
    --surface: rgba(46, 30, 25, 0.48);
    --ink: #f2dfd1;
    --muted: #ceb2a0;
    --accent: #9f4b3f;
    --line: #06c755;
    --fb: #1877f2;
    --dark: #1a100d;
    --border: rgba(255, 225, 204, 0.28);
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: var(--ink);
    font-family: "Poppins", "ABeeZee", "Fresca", sans-serif;
}

html {
    background-color: var(--overscroll-bg);
}

body {
    background: var(--page-bg);
}

body.gallery-lightbox-open {
    overflow: hidden;
}

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

h1,
h2,
h3,
p {
    margin: 0;
}

h2 {
    margin-bottom: 14px;
}

.container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
}

.section {
    padding: 44px 0;
}

.section-solid {
    background: transparent;
}

.section-photo {
    position: relative;
    isolation: isolate;
}

.section-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30, 22, 18, 0.72), rgba(30, 22, 18, 0.5)),
    url("images/hero.png") center/cover no-repeat;
    z-index: -1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(24, 16, 12, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar-inner {
    min-height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.brand {
    color: #fff6eb;
    text-decoration: none;
    font-weight: 700;
}

.lang-switch {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
}

.lang-btn.is-active {
    border-color: #ffe2ca;
    box-shadow: inset 0 0 0 1px #ffe2ca;
}

.hero-fullbleed {
    position: relative;
    min-height: min(92vh, 980px);
    isolation: isolate;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-full-image {
    object-fit: cover;
    object-position: center 62%;
    filter: saturate(1.12) contrast(1.08) brightness(1.05);
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-full-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-full-shade {
    background: linear-gradient(130deg, rgba(20, 12, 8, 0.52), rgba(20, 12, 8, 0.18) 40%, rgba(20, 12, 8, 0.5));
}

.hero-full-content {
    position: relative;
    z-index: 2;
    min-height: min(92vh, 980px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.72fr);
    gap: 22px;
    align-items: end;
    padding-top: 120px;
    padding-bottom: 52px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
    display: grid;
    gap: 14px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(20, 12, 8, 0.36);
    border: 1px solid rgba(255, 224, 191, 0.38);
    backdrop-filter: blur(2px);
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.95;
}

.hero-actions,
.map-actions,
.booking-actions,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fab-booking {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 14px 26px;
    background: linear-gradient(135deg, rgba(198, 92, 67, 0.98), rgba(130, 48, 35, 0.98));
    color: #fff6f0;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.fab-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fab-booking:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.fab-booking:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .fab-booking {
        right: 16px;
        bottom: 16px;
        padding: 12px 20px;
        font-size: 0.92rem;
    }
}

.rating {
    font-weight: 500;
}

.hero-hours {
    background: rgba(53, 35, 29, 0.55);
    color: #fff;
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.hours-card,
.booking-card,
.map-card,
.info-card,
.service-card,
.why-card,
.gallery-main,
.gallery-thumb {
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 18px;
}

.hours-card {
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.hours-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.hero-hours .open-state-island {
    font-size: 0.94rem;
}

.why-compose {
    display: grid;
    gap: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.why-card {
    background: rgba(69, 41, 34, 0.46);
    border-radius: var(--radius-md);
    padding: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    font-size: 1rem;
    line-height: 1.3;
}

.why-icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.services-section::before {
    background: linear-gradient(120deg, rgba(20, 13, 10, 0.74), rgba(20, 13, 10, 0.66)),
    url("images/junee-services-texture-art.png") center top no-repeat;
    background-position: center top;
    background-size: 100vw auto;
    background-repeat: repeat-y;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
    gap: 20px;
    align-items: start;
}

.services-layout.is-embed-booking {
    grid-template-columns: minmax(0, 1fr);
}

.services-main > h2 {
    color: #fff4ea;
}

#services .services-main[hidden],
#services .booking-card[hidden] {
    display: none !important;
}

.services-list {
    display: grid;
    gap: 12px;
    margin-bottom: 10px;
}

.services-group {
    display: grid;
    gap: 12px;
}

.services-group-title {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 244, 234, 0.72);
}

.services-group-list {
    display: grid;
    gap: 12px;
}

.service-card {
    border-radius: var(--radius-md);
    background: rgba(58, 34, 29, 0.58);
    display: grid;
    gap: 12px;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(22, 14, 12, 0.5);
    color: #d9bfb0;
    cursor: pointer;
    opacity: 0.6;
}

.option-btn.is-active {
    background: rgba(176, 90, 75, 0.95);
    border-color: rgba(240, 170, 150, 0.9);
    color: #fff3e8;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(240, 170, 150, 0.8), var(--shadow);
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
}

.services-loading,
.services-error {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(58, 34, 29, 0.58);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.services-error {
    color: #fff3e8;
}

.booking-card {
    display: grid;
    gap: 10px;
    align-content: start;
    background: rgba(25, 16, 13, 0.3);
    border-color: rgba(255, 225, 204, 0.2);
    height: fit-content;
    position: sticky;
    top: 96px;
}

.embedded-booking-host {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
    display: grid;
    gap: 12px;
}

.embedded-booking-host[hidden] {
    display: none !important;
}

.embedded-booking-host > h2 {
    margin: 0;
    font-size: 1.15rem;
}

.embedded-booking-widget-anchor {
    display: grid;
    gap: 10px;
}

.embedded-booking-clip {
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
}

.embedded-booking-widget-container {
    width: 100%;
}

.embedded-booking-iframe {
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: #fff;
}

.provider-booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 121;
    background: rgba(11, 7, 5, 0.66);
    display: grid;
    place-items: center;
    padding: 16px;
}

.provider-booking-overlay[hidden] {
    display: none !important;
}

.provider-booking-panel {
    width: min(1100px, 100%);
    max-height: calc(100vh - 32px);
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(33, 21, 17, 0.98);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: auto 1fr;
}

.provider-booking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 227, 208, 0.2);
}

.provider-booking-close {
    border: 1px solid rgba(255, 225, 204, 0.28);
    background: rgba(24, 14, 12, 0.65);
    color: #f9e7d9;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.provider-booking-frame {
    width: 100%;
    min-height: 70vh;
    border: 0;
    background: #fff;
}

.simplybook-inline-shell {
    margin-top: 14px;
    border: 1px solid rgba(255, 227, 208, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(24, 14, 12, 0.52);
}

.simplybook-inline-shell[hidden] {
    display: none !important;
}

.simplybook-inline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 227, 208, 0.16);
}

.simplybook-inline-title {
    margin: 0;
    font-size: 0.98rem;
}

.simplybook-inline-close {
    border: 1px solid rgba(255, 225, 204, 0.28);
    background: rgba(24, 14, 12, 0.65);
    color: #f9e7d9;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.simplybook-inline-content {
    width: 100%;
}

.simplybook-inline-frame {
    width: 100%;
    border: 0;
    display: block;
    background: #fff;
    min-height: 72vh;
}

.field-label {
    font-size: 0.92rem;
    font-weight: 500;
}

.field {
    width: 100%;
    border: 1px solid rgba(255, 227, 208, 0.24);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    color: #f9e7d9;
    background: rgba(24, 14, 12, 0.45);
}

.guests-row {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 227, 208, 0.24);
    border-radius: 10px;
    background: rgba(24, 14, 12, 0.45);
    color: #f9e7d9;
    cursor: pointer;
}

#guest-count {
    display: inline-block;
    width: 28px;
    text-align: center;
    font-weight: 700;
}

.gallery-marquee {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(30, 20, 16, 0.35);
    border: 1px solid var(--border);
    padding: 18px 18px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-gutter: stable both-edges;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 164, 71, 0.9) rgba(255, 246, 232, 0.12);
}

.gallery-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
}

.gallery-marquee:focus-visible {
    outline: 2px solid rgba(230, 132, 112, 0.6);
    outline-offset: 6px;
}

.gallery-marquee:active {
    cursor: grabbing;
}

.gallery-marquee::-webkit-scrollbar {
    height: 12px;
}

.gallery-marquee::-webkit-scrollbar-track {
    background: rgba(255, 246, 232, 0.08);
    border-radius: 999px;
}

.gallery-marquee::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #e2a447, #c47e25);
    border-radius: 999px;
    border: 2px solid rgba(255, 246, 232, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-marquee-track {
        animation: none;
        transform: translateX(0);
    }
}


.gallery-marquee-row {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.gallery-item {
    flex: 0 0 auto;
    width: clamp(220px, 28vw, 340px);
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    filter: saturate(1.03);
}

.gallery-item:focus-visible {
    outline: 2px solid rgba(232, 238, 255, 0.78);
    outline-offset: 4px;
}

.gallery-marquee-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 225, 204, 0.25);
}

.gallery-marquee.is-scrollable {
    padding-bottom: 14px;
}

.gallery-marquee.is-auto-scrolling {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.gallery-marquee.is-scrollable .gallery-marquee-track {
    transform: none !important;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: clamp(12px, 3vw, 28px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.82);
    backdrop-filter: blur(12px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    padding: clamp(14px, 2vw, 20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 246, 232, 0.16);
    background: linear-gradient(180deg, rgba(30, 18, 11, 0.94), rgba(12, 8, 6, 0.96));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox-viewer {
    position: relative;
    padding: 10px clamp(40px, 6vw, 74px) 42px;
    touch-action: pan-y pinch-zoom;
}

.gallery-lightbox-figure {
    margin: 0;
}

.gallery-lightbox-figure img {
    width: 100%;
    max-height: min(78vh, 920px);
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 246, 232, 0.04);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 246, 232, 0.16);
    border-radius: 999px;
    background: rgba(18, 11, 7, 0.78);
    color: #fff8f1;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    transform: translateY(-1px);
    background: rgba(30, 18, 11, 0.92);
    border-color: rgba(255, 246, 232, 0.26);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
    outline: 2px solid rgba(232, 238, 255, 0.78);
    outline-offset: 3px;
}

.gallery-lightbox-close {
    top: 14px;
    right: 14px;
    font-size: 1.8rem;
    line-height: 1;
}

.gallery-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 1;
}

.gallery-lightbox-nav:hover {
    transform: translateY(calc(-50% - 1px));
}

.gallery-lightbox-nav-prev {
    left: 0;
}

.gallery-lightbox-nav-next {
    right: 0;
}


.location-section::before {
    background: linear-gradient(120deg, rgba(33, 20, 16, 0.92), rgba(42, 26, 21, 0.84));
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
    gap: 20px;
    align-items: stretch;
}

.location-layout h2,
.location-layout p {
    color: #f8e7d8;
}

.map-card {
    background: rgba(44, 28, 23, 0.52);
    display: grid;
    gap: 10px;
}

.map-card img,
.map-card iframe {
    border-radius: var(--radius-md);
    height: 220px;
    width: 100%;
    border: 0;
    object-fit: cover;
}

.info-card {
    display: grid;
    align-content: start;
    gap: 12px;
    background: rgba(44, 28, 23, 0.46);
}

.open-state-island {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 650;
    letter-spacing: 0.01em;
    text-align: left;
}

.open-state-island.is-open {
    color: #dff9ee;
    background: linear-gradient(120deg, rgba(22, 74, 53, 0.9), rgba(26, 88, 62, 0.9));
    border-color: rgba(120, 255, 200, 0.24);
    box-shadow: 0 0 0 1px rgba(86, 220, 164, 0.22);
    animation: open-state-pulse 3s ease-in-out infinite;
}

.open-state-island.is-closed {
    color: #ffeae5;
    background: linear-gradient(120deg, rgba(92, 45, 42, 0.9), rgba(112, 53, 48, 0.9));
    border-color: rgba(255, 174, 160, 0.34);
}

.open-state-island::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex: 0 0 auto;
    background: #b4b4b4;
}

.open-state-island.is-open::before {
    background: #46d99b;
    box-shadow: 0 0 12px rgba(70, 217, 155, 0.72);
}

.open-state-island.is-closed::before {
    background: #f08374;
    box-shadow: 0 0 10px rgba(240, 131, 116, 0.58);
}

@keyframes open-state-pulse {
    0% {
        box-shadow: 0 0 0 1px rgba(86, 220, 164, 0.2);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(120, 255, 200, 0.3), 0 0 12px rgba(42, 198, 132, 0.2);
    }
    100% {
        box-shadow: 0 0 0 1px rgba(86, 220, 164, 0.2);
    }
}

.reviews-section {
    position: relative;
}

.reviews-shell {
    display: grid;
    gap: 18px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.google-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(36, 24, 20, 0.5);
    border: 1px solid var(--border);
}

.google-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: conic-gradient(#4285f4 0 25%, #ea4335 0 50%, #fbbc05 0 75%, #34a853 0 100%);
}

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

.reviews-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.review-card {
    border-radius: var(--radius-lg);
    padding: 18px;
    background: rgba(35, 22, 19, 0.48);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.review-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 225, 204, 0.2);
    border: 1px solid rgba(255, 225, 204, 0.35);
}

.review-name {
    font-weight: 600;
}

.review-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.review-google {
    width: 22px;
    height: 22px;
}

.review-text {
    color: #f5e6da;
    line-height: 1.5;
}

.review-card-summary {
    max-width: 760px;
}

.footer {
    background: var(--dark);
    color: #f3e8de;
    padding: 30px 0;
}

.footer-inner {
    display: grid;
    gap: 10px;
}

.muted {
    color: var(--muted);
}

.hero-copy .muted {
    color: #f3dfd0;
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-line {
    background: var(--line);
    color: #fff;
}

.btn-facebook {
    background: var(--fb);
    color: #fff;
}

.btn-booking-system {
    background: linear-gradient(120deg, #ff6a00, #ffbf00);
    color: #1a100d;
    border: 0;
}

.btn-booking-system:hover {
    filter: brightness(0.98);
}

.btn-outline {
    background: rgba(39, 24, 21, 0.5);
    border-color: rgba(255, 225, 204, 0.38);
    color: #f8e7d8;
}

.btn-call {
    background: #1f6a4e;
    color: #fff;
}

.btn-light {
    background: rgba(176, 90, 75, 0.86);
    color: #fff3e8;
}

@media (max-width: 980px) {
    .hero-full-content,
    .services-layout,
    .location-layout {
        grid-template-columns: 1fr;
    }

    .why-crew-layout {
        justify-content: stretch;
        align-items: end;
        min-height: clamp(260px, 42vw, 430px);
    }

    .why-crew-panel {
        width: 100%;
    }

    .hero-full-content {
        padding-top: 90px;
    }

    .gallery-item {
        width: clamp(210px, 34vw, 300px);
    }

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

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

@media (max-width: 640px) {
    .container {
        width: min(1120px, 100% - 24px);
    }

    .section {
        padding: 28px 0;
    }

    .topbar-inner {
        min-height: 58px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
    }

    .hero-fullbleed {
        min-height: 0;
        background: var(--bg);
    }

    .hero-fullbleed::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: clamp(90px, 18svh, 190px);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg));
        pointer-events: none;
        z-index: 1;
    }

    .hero-slides {
        inset: 0 auto auto 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
    }

    .hero-full-image,
    .hero-full-shade {
        inset: 0 auto auto 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
    }

    .hero-full-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        gap: 14px;
        min-height: 0;
        padding-top: clamp(320px, 56svh, 620px);
        padding-bottom: 12px;
    }

    .hero-hours {
        width: 100%;
    }

    .hero-full-image {
        object-position: center 62%;
        transform: scale(1.34);
    }

    .hero-full-image.is-active {
        transform: scale(1.16);
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

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

    .gallery-marquee {
        padding: 12px 12px 10px;
    }

    .gallery-item {
        width: clamp(180px, 60vw, 250px);
    }

    .gallery-lightbox-dialog {
        padding: 12px;
    }

    .gallery-lightbox-viewer {
        padding: 46px 0 106px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .gallery-lightbox-nav {
        top: auto;
        bottom: 0;
        transform: none;
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox-nav:hover {
        transform: translateY(-1px);
    }

    .gallery-lightbox-nav-prev {
        left: 16px;
    }

    .gallery-lightbox-nav-next {
        right: 16px;
    }

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

    .hero-actions .btn,
    .booking-actions .btn,
    .map-actions .btn,
    .footer-links .btn,
    #toggle-services {
        width: 100%;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

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