:root {
    --forest: #12352a;
    --leaf: #2f6b46;
    --moss: #6d8d54;
    --clay: #b9673f;
    --cream: #f6f0e6;
    --mist: #eef4ef;
    --ink: #17231e;
    --muted: #60706a;
    --line: rgba(23, 35, 30, 0.14);
    --shadow: 0 18px 45px rgba(18, 53, 42, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: #fbfaf6;
    line-height: 1.6;
}

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

a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 64px);
    background: rgba(18, 53, 42, 0.96);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.site-nav a {
    text-decoration: none;
    color: #eef6ef;
    opacity: 0.92;
}

.site-nav a:hover { opacity: 1; }

.nav-cta {
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.admin-link { color: #d6c38a !important; }

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
}

.hero {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
    display: grid;
    align-items: end;
}

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

.hero-media-stage {
    overflow: hidden;
    background: #082a20;
}

.hero.hero-loading .hero-media-stage {
    background:
        radial-gradient(circle at 24% 28%, rgba(201, 161, 95, 0.16), transparent 28%),
        linear-gradient(135deg, #061f18, #0d3528 55%, #071b15);
}

.hero-loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-loader span {
    position: relative;
    padding-top: 44px;
}

.hero-loader span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-top-color: var(--resort-gold);
    border-radius: 50%;
    animation: hero-loader-spin 900ms linear infinite;
}

@keyframes hero-loader-spin {
    to { transform: rotate(360deg); }
}

.hero-media {
    object-fit: cover;
}

.hero-media-shell {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #082a20, #12352a);
}

.hero-media-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-item {
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 900ms ease, transform 5800ms ease;
}

.hero-media-item.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-shade {
    background: linear-gradient(90deg, rgba(7, 25, 19, 0.82), rgba(7, 25, 19, 0.42) 52%, rgba(7, 25, 19, 0.12));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, 92vw);
    padding: 0 clamp(18px, 5vw, 72px) 12vh;
    color: #fff;
}

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

.hero .eyebrow { color: #f3ce8a; }

h1, h2, h3 { line-height: 1.08; margin: 0; color: inherit; }

h1 { font-size: clamp(48px, 8vw, 110px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 58px); letter-spacing: 0; }
h3 { font-size: 22px; }

.hero-copy {
    font-size: clamp(18px, 2.4vw, 25px);
    max-width: 780px;
    margin: 22px 0 0;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.btn.primary { background: var(--clay); color: #fff; }
.btn.secondary { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn.ghost { background: #fff; color: var(--forest); border-color: var(--line); }
.btn.centered { margin: 24px auto 0; width: max-content; }

.section {
    padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 84px);
}

.section-heading {
    max-width: 850px;
    margin-bottom: 34px;
}

.section-heading h2 { color: var(--forest); }

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

.feature-grid, .pricing-grid, .policy-grid, .cards.three {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-grid article, .policy-grid article, .pricing-card, .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-grid article, .policy-grid article {
    padding: 24px;
}

.feature-grid span {
    display: inline-flex;
    color: #fff;
    background: var(--leaf);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.feature-grid p, .card p, .policy-grid p { color: var(--muted); }

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: clamp(28px, 6vw, 72px);
}

.split img, .split video {
    width: 100%;
    height: min(520px, 66vh);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.muted { background: var(--mist); }

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

.card { overflow: hidden; }

.card img, .card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body { padding: 24px; }

.price {
    color: var(--forest) !important;
    font-weight: 800;
}

.price-note {
    font-size: 0.82em;
    font-weight: 400;
}

.text-link {
    color: var(--clay);
    font-weight: 800;
    text-decoration: none;
}

.check-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--moss);
}

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

.pricing-card { padding: 24px; overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 15px;
}

th, td {
    border-bottom: 1px solid var(--line);
    padding: 12px 8px;
    text-align: left;
    vertical-align: top;
}

th { color: var(--forest); }

.policy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}

.mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 16px;
}

.mosaic img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.enquiry-section {
    background: var(--forest);
    color: #fff;
}

.enquiry-section h2 { color: #fff; }

.enquiry-form {
    background: #fff;
    color: var(--ink);
    border-radius: 8px;
    padding: clamp(18px, 4vw, 34px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

legend {
    grid-column: 1 / -1;
    font-weight: 900;
    color: var(--forest);
    margin-bottom: 4px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    font: inherit;
    background: #fbfaf6;
    color: var(--ink);
}

label.wide { grid-column: span 2; }

.form-note { color: var(--muted); margin: 0 0 18px; }

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.contact-strip a { color: #f3ce8a; }

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px clamp(18px, 6vw, 84px);
    background: #081914;
    color: #fff;
}

.site-footer p { margin: 4px 0 0; color: #bed1c8; }

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1020px) {
    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: var(--forest);
    }

    .site-nav.active { display: flex; }
    .menu-toggle { display: inline-flex; }
    .feature-grid, .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cards.three, .pricing-grid, .split { grid-template-columns: 1fr; }
    fieldset { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .hero { min-height: 78vh; }
    .hero-content { padding-bottom: 70px; }
    .feature-grid, .policy-grid, fieldset { grid-template-columns: 1fr; }
    label.wide { grid-column: auto; }
    .mosaic { grid-template-columns: 1fr; }
    .mosaic img { height: 240px; }
    .site-footer { align-items: flex-start; flex-direction: column; }
    .btn { width: 100%; }
}

/* Polished public UI layer */
body {
    font-size: 16px;
    letter-spacing: 0;
}

.site-header {
    min-height: 76px;
    padding: 12px clamp(18px, 4vw, 56px);
    backdrop-filter: blur(14px);
}

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

.brand img {
    height: 50px;
    max-width: 174px;
    object-fit: contain;
}

.site-nav {
    justify-content: flex-end;
    gap: clamp(10px, 1.45vw, 22px);
    white-space: nowrap;
}

.site-nav a {
    font-weight: 750;
    font-size: 14px;
    line-height: 1;
    padding: 10px 0;
}

.nav-cta {
    padding: 11px 16px !important;
    background: rgba(255, 255, 255, 0.1);
}

.admin-link {
    opacity: 0.78 !important;
}

.menu-toggle {
    width: 46px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.hero {
    min-height: min(780px, 88vh);
}

.hero-content {
    width: min(1040px, 94vw);
    padding-bottom: clamp(70px, 12vh, 128px);
}

.hero-copy {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
}

.section {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.intro-band,
.muted,
.enquiry-section {
    max-width: none;
}

.section-heading {
    max-width: 900px;
}

.section-heading h2 {
    font-size: clamp(30px, 3.6vw, 52px);
}

.feature-grid,
.policy-grid {
    align-items: stretch;
}

.feature-grid article,
.policy-grid article {
    min-height: 100%;
}

.cards.three {
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(18, 53, 42, 0.18);
}

.card img,
.card video {
    aspect-ratio: 16 / 10;
    width: 100%;
    height: auto;
    min-height: 230px;
    max-height: 290px;
    object-fit: cover;
    object-position: center center;
    background: #dfe7dc;
}

#cabin > img {
    object-position: 58% 42%;
}

#group-stay > img {
    object-position: 50% 62%;
}

#group-retreat > img {
    object-position: 50% 50%;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}

.card-body h3,
.pricing-card h3,
.policy-grid h3 {
    color: var(--forest);
}

.card-body p {
    margin: 0;
}

.card-body .text-link {
    margin-top: auto;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
}

.btn {
    min-height: 48px;
    padding: 13px 22px;
    box-shadow: 0 10px 22px rgba(18, 53, 42, 0.14);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 53, 42, 0.18);
}

.btn.primary {
    background: #a95736;
}

.btn.primary:hover {
    background: #93472b;
}

.pricing-grid {
    align-items: stretch;
    gap: 22px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}

.pricing-card h3 {
    padding: 22px 24px 16px;
    background: linear-gradient(135deg, #eff5ee, #ffffff);
    border-bottom: 1px solid var(--line);
}

.price-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    table-layout: fixed;
}

.price-table thead th {
    background: var(--forest);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-table th,
.price-table td {
    padding: 15px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.price-table tbody tr:nth-child(even) {
    background: #f7faf5;
}

.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-table td:not(:first-child),
.price-table th:not(:first-child) {
    text-align: right;
    font-weight: 800;
}

.policy-grid {
    gap: 16px;
    margin-top: 24px;
}

.policy-grid article {
    border-left: 4px solid var(--clay);
}

.gallery-preview {
    background: #fbfaf6;
}

.mosaic,
.gallery-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mosaic img,
.gallery-card-grid img {
    height: 310px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(23, 35, 30, 0.1);
    box-shadow: 0 16px 36px rgba(18, 53, 42, 0.13);
}

.enquiry-section {
    padding-top: clamp(68px, 8vw, 116px);
    padding-bottom: clamp(68px, 8vw, 116px);
}

.enquiry-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.enquiry-form {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 12px;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-form fieldset {
    position: relative;
    border: 1px solid rgba(18, 53, 42, 0.12);
    border-radius: 10px;
    padding: 28px 22px 22px;
    margin-bottom: 22px;
    background: #ffffff;
}

.enquiry-form legend {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(18, 53, 42, 0.12);
    font-size: 18px;
}

.enquiry-form label {
    align-content: start;
}

.enquiry-form .field-label {
    min-height: 44px;
    display: flex;
    align-items: flex-end;
    line-height: 1.45;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    min-height: 48px;
    border-color: rgba(18, 53, 42, 0.22);
    background: #f8faf6;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.enquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 4px rgba(47, 107, 70, 0.12);
    background: #fff;
}

.enquiry-form > .btn {
    min-width: 210px;
}

.form-note {
    max-width: 760px;
    color: #53645d;
}

.contact-strip {
    max-width: 1120px;
    margin: 24px auto 0;
    justify-content: center;
}

.contact-strip p {
    margin: 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.gallery-nav {
    position: static !important;
    display: flex !important;
    background: transparent !important;
    padding: 0 !important;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 10px;
    }

    .site-nav a {
        font-size: 13px;
    }

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

@media (max-width: 980px) {
    .site-header {
        min-height: 68px;
    }

    .brand img {
        height: 42px;
        max-width: 152px;
    }

    .site-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        background: rgba(18, 53, 42, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 10px;
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
        white-space: normal;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a {
        padding: 13px 14px;
        border-radius: 8px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .cards.three,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .card {
        display: grid;
        grid-template-columns: minmax(240px, 0.85fr) 1fr;
    }

    .card img,
    .card video {
        height: 100%;
        min-height: 260px;
        aspect-ratio: auto;
    }

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

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

@media (max-width: 760px) {
    h1 {
        font-size: clamp(42px, 14vw, 70px);
    }

    h2,
    .section-heading h2 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .hero {
        min-height: 76vh;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(7, 25, 19, 0.24), rgba(7, 25, 19, 0.88));
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .button-row {
        flex-direction: column;
    }

    .section {
        padding: 58px 18px;
    }

    .split {
        gap: 28px;
    }

    .feature-grid,
    .policy-grid,
    .mosaic,
    .gallery-card-grid,
    .enquiry-form fieldset {
        grid-template-columns: 1fr;
    }

    .card {
        display: flex;
    }

    .card img,
    .card video {
        width: 100%;
        height: auto;
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .pricing-card {
        overflow-x: visible;
    }

    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 13px 10px;
    }

    .enquiry-form {
        padding: 18px;
    }

    .enquiry-form fieldset {
        padding: 22px 14px 16px;
    }

    .enquiry-form .field-label {
        min-height: 0;
        align-items: flex-start;
    }

    label.wide {
        grid-column: auto;
    }

    .contact-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-strip p {
        border-radius: 10px;
    }
}

@media (max-width: 430px) {
    .price-table {
        table-layout: auto;
    }

    .price-table th,
    .price-table td {
        font-size: 13px;
        padding: 11px 8px;
    }
}

/* Club Mahindra-inspired polish: premium resort rhythm, not brand copying */
:root {
    --resort-green: #0e3b2d;
    --resort-green-deep: #082a20;
    --resort-gold: #c9a15f;
    --resort-ivory: #fffaf1;
    --resort-soft: #f4f1e9;
}

body {
    background:
        linear-gradient(90deg, rgba(14, 59, 45, 0.98) 0, rgba(14, 59, 45, 0.98) 9.8%, transparent 9.8%, transparent 90.2%, rgba(14, 59, 45, 0.98) 90.2%),
        var(--resort-soft);
}

.site-header {
    background: rgba(10, 56, 42, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(4, 23, 17, 0.24);
}

.brand img {
    height: 58px;
    max-width: 190px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 850;
}

.nav-cta {
    min-width: 116px;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero {
    max-width: none;
    min-height: min(820px, 88vh);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(5, 32, 24, 0.72), rgba(5, 32, 24, 0.42) 47%, rgba(5, 32, 24, 0.12)),
        linear-gradient(0deg, rgba(5, 32, 24, 0.34), transparent 46%);
}

.hero-content {
    width: min(1120px, 92vw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.hero h1 {
    letter-spacing: 0;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.hero-copy {
    max-width: 860px;
    font-weight: 550;
}

.hero .button-row {
    margin-top: 34px;
}

.btn {
    border-radius: 28px;
    letter-spacing: 0;
}

.btn.primary {
    background: var(--resort-gold);
    color: #1c241c;
}

.btn.primary:hover {
    background: #d5ad6d;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(10px);
}

.section:not(.enquiry-section):not(.intro-band):not(.muted) {
    background: #fff;
}

.section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading .eyebrow {
    color: var(--resort-gold);
}

.intro-band {
    background: var(--resort-ivory);
}

.feature-grid {
    max-width: 1180px;
    margin: 0 auto;
    gap: 22px;
}

.feature-grid article,
.policy-grid article {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(8, 42, 32, 0.1);
}

.feature-grid span {
    background: rgba(201, 161, 95, 0.16);
    color: #7b5a23;
}

.split {
    background: #fff;
    border-radius: 0;
}

.split img,
.split video {
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(8, 42, 32, 0.18);
}

.cards.three {
    max-width: 1180px;
    margin: 0 auto;
    gap: 26px;
}

.card {
    border-radius: 22px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 24px 62px rgba(8, 42, 32, 0.14);
}

.card img,
.card video {
    min-height: 270px;
}

.card-body {
    padding: 28px;
}

.text-link {
    color: #8d6327;
}

.muted {
    background: linear-gradient(135deg, #f7f2e8, #edf4ed);
}

.pricing-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 22px;
    box-shadow: 0 24px 62px rgba(8, 42, 32, 0.12);
}

.pricing-card h3 {
    background: linear-gradient(135deg, #fff8eb, #ffffff);
    padding: 26px 28px 18px;
}

.price-table thead th {
    background: var(--resort-green);
}

.policy-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.mosaic,
.gallery-card-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.mosaic img,
.gallery-card-grid img {
    border-radius: 22px;
    box-shadow: 0 24px 62px rgba(8, 42, 32, 0.16);
}

.gallery-card-grid .gallery-media {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 24px 62px rgba(8, 42, 32, 0.16);
    cursor: pointer;
    background: #082a20;
}

.gallery-media-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #082a20;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 24px 62px rgba(8, 42, 32, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.media-unavailable .gallery-media {
    display: none;
}

.media-unavailable-panel,
.hero-media-unavailable {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    min-height: 260px;
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    background:
        linear-gradient(135deg, rgba(8, 42, 32, 0.94), rgba(18, 53, 42, 0.84)),
        #082a20;
}

.media-unavailable-panel strong,
.hero-media-unavailable strong {
    font-size: 15px;
    font-weight: 850;
}

.media-unavailable-panel small,
.hero-media-unavailable small {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 650;
    overflow-wrap: anywhere;
}

.hero-media-unavailable {
    min-height: 100%;
}

.gallery-media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 72px rgba(8, 42, 32, 0.22);
    filter: saturate(1.04);
}

.gallery-card-grid .gallery-video {
    display: block;
}

.gallery-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(8, 42, 32, 0.78);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.gallery-play-badge::before {
    content: "";
    width: 0;
    height: 0;
    margin-right: -4px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #ffffff;
}

.gallery-play-badge {
    font-size: 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 42px);
    background: rgba(2, 12, 9, 0.76);
    backdrop-filter: blur(8px);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #082a20;
    font-weight: 850;
    cursor: pointer;
}

.gallery-lightbox-media {
    width: min(1080px, 92vw);
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content {
    width: 100%;
    max-width: 92vw;
    max-height: 86vh;
    border: 0;
    border-radius: 18px;
    object-fit: contain;
    background: #082a20;
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.34);
}

iframe.gallery-lightbox-content {
    aspect-ratio: 16 / 9;
    height: min(70vh, 620px);
}

.gallery-drive-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    height: min(70vh, 620px);
}

.gallery-drive-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-drive-open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #082a20;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.gallery-video-fallback {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.gallery-video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.gallery-open-video,
.gallery-video-message {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gallery-open-video {
    width: auto;
    white-space: nowrap;
}

.gallery-video-message {
    display: grid;
    gap: 8px;
    width: min(420px, 82%);
    padding: 18px 20px;
    border-radius: 18px;
    text-align: center;
    background: rgba(8, 42, 32, 0.82);
    color: #fff;
    backdrop-filter: blur(10px);
}

.gallery-video-message strong {
    font-size: 15px;
}

.gallery-video-message small {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.hero-carousel-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 42px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.hero-carousel-controls.is-ready {
    opacity: 1;
    visibility: visible;
}

.hero-arrow {
    pointer-events: auto;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(8, 42, 32, 0.58), rgba(8, 42, 32, 0.32));
    color: var(--resort-gold);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    transition: transform 160ms ease, background 160ms ease;
}

.hero-arrow:hover {
    transform: translateY(-2px);
    background: rgba(8, 42, 32, 0.78);
    color: #fff;
}

@media (max-width: 760px) {
    .hero-carousel-controls {
        padding: 0 12px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

.enquiry-section {
    background:
        linear-gradient(180deg, rgba(8, 42, 32, 0.95), rgba(8, 42, 32, 0.98)),
        var(--resort-green-deep);
}

.enquiry-form {
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.enquiry-form fieldset {
    border-radius: 18px;
    border-color: rgba(8, 42, 32, 0.12);
    background: linear-gradient(180deg, #ffffff, #fbfcf8);
}

.enquiry-form legend {
    font-size: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    border-radius: 12px;
}

.full-property-options {
    grid-template-columns: repeat(3, minmax(0, max-content));
    align-items: center;
    gap: 12px 18px;
}

.full-property-options .field-label {
    grid-column: 1 / -1;
    min-height: auto;
}

.full-property-options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
}

.full-property-options input {
    width: auto;
    min-height: 0;
}

.site-footer {
    background: var(--resort-green-deep);
}

@media (max-width: 980px) {
    body {
        background: var(--resort-soft);
    }

    .brand img {
        height: 48px;
    }

    .card img,
    .card video {
        min-height: 250px;
    }
}

@media (max-width: 760px) {
    .hero-content {
        width: auto;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading {
        text-align: left;
    }

    .feature-grid article,
    .policy-grid article,
    .card,
    .pricing-card,
    .enquiry-form,
    .enquiry-form fieldset,
    .mosaic img,
    .gallery-card-grid img {
        border-radius: 16px;
    }

    .full-property-options {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    font-size: clamp(40px, 5.6vw, 78px);
}

.hero-copy {
    max-width: 720px;
    font-size: clamp(16px, 1.55vw, 21px);
    line-height: 1.55;
}

.hero-content > .eyebrow + .hero-copy {
    margin-top: 14px;
}

@media (max-width: 760px) {
    .hero h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* New brand mark sizing */
.site-header {
    min-height: 88px;
}

.brand img {
    width: auto;
    height: 72px;
    max-width: 190px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 76px;
    }

    .brand img {
        height: 56px;
        max-width: 150px;
    }
}

@media (max-width: 430px) {
    .brand img {
        height: 50px;
        max-width: 132px;
    }
}

/* Hero media fit */
.hero {
    height: min(820px, 88vh);
    min-height: 620px;
}

.hero-media-stage,
.hero-media,
.hero-media-shell,
.hero-media-fill,
.hero-media-stage video,
.hero-media-stage img {
    width: 100%;
    height: 100%;
}

.hero-media,
.hero-media-fill,
.hero-media-stage video,
.hero-media-stage img {
    object-fit: cover;
    object-position: center center;
}

.hero-media-stage {
    overflow: hidden;
}

@media (max-width: 980px) {
    .hero {
        height: 82vh;
        min-height: 560px;
    }
}

@media (max-width: 760px) {
    .hero {
        height: 78vh;
        min-height: 520px;
    }

    .hero-media,
    .hero-media-fill,
    .hero-media-stage video,
    .hero-media-stage img {
        object-position: center center;
    }
}
.urumbikkara-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.nature-video,
.split.muted video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-media-stage {
    background: #071b15;
}

.hero-media-shell {
    isolation: isolate;
    background: #071b15;
}

.hero-media-backdrop {
    position: absolute;
    inset: -34px;
    width: calc(100% + 68px);
    height: calc(100% + 68px);
    object-fit: cover;
    object-position: center center;
    filter: blur(24px);
    opacity: 0.46;
    transform: scale(1.04);
}

.hero-media-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.08), transparent 44%),
        linear-gradient(90deg, rgba(5, 25, 19, 0.58), rgba(5, 25, 19, 0.22) 52%, rgba(5, 25, 19, 0.58));
}

.hero-media,
.hero-media-fill,
.hero-media-stage img.hero-media-fill {
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}


/* Stable hero slider guard: keep all manual hero slides stacked inside the hero. */
.hero-media-stage [data-hero-slide] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-media-stage [data-hero-slide].is-active {
    opacity: 1;
    z-index: 1;
}

.hero-media-stage [data-hero-slide] .hero-media-fill,
.hero-media-stage [data-hero-slide] .hero-media-backdrop {
    position: absolute;
    inset: 0;
}

.hero-media-stage [data-hero-slide] .hero-media-fill {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* Balanced Nature Experiences video sizing */
.nature-video {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
    display: block;
}

@media (max-width: 1024px) {
    .nature-video {
        height: 340px;
        max-height: 340px;
    }
}

@media (max-width: 768px) {
    .nature-video {
        height: 260px;
        max-height: 260px;
    }
}
/* Public booking request: compact two-step card */
.booking-request-card {
    display: block;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8, 42, 32, 0.1);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(8, 42, 32, 0.16);
}

.pricing-note-card {
    padding: 16px 18px !important;
    background: #fffaf1 !important;
    border-color: rgba(201, 161, 95, 0.3) !important;
}

.pricing-note-card h3 {
    font-size: 15px;
}

.pricing-note-card p {
    font-size: 13px;
}

.booking-stepper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(8, 42, 32, 0.1);
    background: #fff;
}

.booking-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #7b8780;
}

.booking-step + .booking-step::before {
    content: "";
    position: absolute;
    left: -18px;
    right: calc(100% + 18px);
    top: 50%;
    height: 1px;
    background: rgba(8, 42, 32, 0.12);
}

.booking-step > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: #eef0ef;
    color: #4d5c55;
    font-weight: 800;
}

.booking-step strong {
    display: block;
    color: #5d6963;
    font-size: 14px;
}

.booking-step small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
}

.booking-step.is-active > span {
    color: #fff;
    background: #00633e;
    box-shadow: 0 10px 24px rgba(0, 99, 62, 0.24);
}

.booking-step.is-complete > span {
    color: #00633e;
    background: #ecf8f1;
    border: 1px solid rgba(0, 99, 62, 0.45);
}

.booking-step.is-complete strong {
    color: #00633e;
}

.booking-step.is-active strong {
    color: #00633e;
}

.booking-form-step {
    display: none;
    padding: 26px 30px 24px;
}

.booking-form-step.is-active {
    display: block;
}

.booking-form-section {
    margin-bottom: 26px;
}

.booking-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.booking-section-title > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #dff3e7;
    color: #00633e;
}

.booking-section-title h3 {
    margin: 0;
    color: #103a2d;
    font-size: 20px;
}

.booking-section-title p {
    margin: 2px 0 0;
    color: #63746c;
    font-size: 13px;
}

.booking-field-grid {
    display: grid;
    gap: 18px 22px;
}

.booking-field-grid.guest-grid,
.booking-field-grid.stay-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-request-card label {
    position: relative;
    display: block;
    min-width: 0;
}

.booking-request-card .field-label {
    display: block;
    min-height: auto;
    margin-bottom: 8px;
    color: #243f35;
    font-size: 13px;
    font-weight: 800;
}

.booking-request-card .field-label em {
    color: #c0392b;
    font-style: normal;
}

.booking-request-card .input-icon {
    position: absolute;
    left: 14px;
    bottom: 13px;
    z-index: 1;
    color: #7c8b84;
    font-size: 15px;
    pointer-events: none;
}

.booking-request-card input,
.booking-request-card select,
.booking-request-card textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px 12px 42px;
    color: #173b30;
    background: #fff;
    border: 1px solid #d9e0dc;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
}

.booking-request-card textarea {
    min-height: 88px;
    resize: vertical;
}

.booking-request-card input:focus,
.booking-request-card select:focus,
.booking-request-card textarea:focus {
    border-color: #00633e;
    box-shadow: 0 0 0 3px rgba(0, 99, 62, 0.1);
    outline: none;
}

.booking-request-card .wide,
.booking-request-card .split-wide {
    grid-column: span 2;
}

.booking-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, #effaf3, #f8fcf9);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #245443;
}

.privacy-note > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #d8f1e2;
}

.privacy-note strong,
.privacy-note small {
    display: block;
}

.privacy-note strong {
    font-size: 14px;
}

.privacy-note small {
    margin-top: 2px;
    color: #5e7369;
    font-size: 12px;
}

.booking-next-btn {
    white-space: nowrap;
}

.booking-review-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(300px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.review-main-column,
.review-side-column {
    display: grid;
    gap: 18px;
}

.review-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 8px;
}

.review-title-row h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
}

.review-title-row p {
    margin: 8px 0 0;
    color: #5f6975;
}

.review-edit-btn {
    width: auto;
    min-width: 132px;
    border-color: rgba(0, 99, 62, 0.45);
    color: #00633e;
}

.review-card,
.review-summary-card,
.review-cancel-card {
    background: #fff;
    border: 1px solid #dfe6e2;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 42, 32, 0.05);
}

.review-card,
.review-summary-card {
    padding: 22px;
}

.review-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.review-card-heading > span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #dff3e7;
    color: #00633e;
}

.review-card-heading h4 {
    margin: 0;
    color: #0b5d3b;
    font-size: 18px;
}

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

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

.review-field {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-width: 0;
}

.review-icon {
    color: #5d6672;
    font-size: 17px;
    line-height: 1.4;
}

.review-field small {
    display: block;
    margin-bottom: 8px;
    color: #5d6672;
    font-size: 12px;
}

.review-field strong {
    display: block;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.review-notes-card {
    padding-top: 20px;
    padding-bottom: 20px;
}

.review-privacy {
    border: 1px solid #dceae1;
    border-radius: 10px;
}

.review-property {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.review-property img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 10px;
}

.review-property strong,
.review-property small {
    display: block;
}

.review-property strong {
    color: #111827;
    font-size: 17px;
}

.review-property small {
    margin-top: 6px;
    color: #5f6975;
}

.review-summary-lines {
    border-top: 1px solid #e6ece8;
    border-bottom: 1px solid #e6ece8;
}

.review-summary-lines p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e7e4;
    color: #5f6975;
}

.review-summary-lines p:last-child {
    border-bottom: 0;
}

.review-summary-lines strong {
    color: #1f2937;
    text-align: right;
}

.review-total-note {
    margin: 18px -22px -22px;
    padding: 18px 22px;
    background: linear-gradient(90deg, #eef8f1, #f8fbf8);
    border-radius: 0 0 12px 12px;
}

.review-total-note span,
.review-total-note small {
    display: block;
}

.review-total-note span {
    color: #5f6975;
    font-size: 13px;
}

.review-total-note strong {
    display: block;
    margin-top: 4px;
    color: #00633e;
    font-size: 22px;
}

.review-total-note small {
    margin-top: 6px;
    color: #5f6975;
    line-height: 1.4;
}

.review-cancel-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: linear-gradient(90deg, #f1fbf4, #fbfdfb);
}

.review-cancel-card > span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: #d8f1e2;
}

.review-cancel-card strong,
.review-cancel-card small {
    display: block;
}

.review-cancel-card strong {
    color: #0b5d3b;
}

.review-cancel-card small {
    margin-top: 5px;
    color: #5f6975;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .booking-field-grid.guest-grid,
    .booking-field-grid.stay-grid,
    .booking-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-review-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-stepper {
        gap: 14px;
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .booking-stepper,
    .booking-field-grid.guest-grid,
    .booking-field-grid.stay-grid,
    .booking-review-grid,
    .review-field-grid,
    .review-field-grid.two {
        grid-template-columns: 1fr;
    }

    .review-title-row {
        flex-direction: column;
    }

    .review-edit-btn {
        width: 100%;
    }

    .review-property {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .review-property img {
        width: 76px;
        height: 76px;
    }

    .booking-form-step {
        padding: 20px 16px;
    }

    .booking-request-card .wide,
    .booking-request-card .split-wide {
        grid-column: auto;
    }

    .booking-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-form-footer .btn {
        width: 100%;
    }
}
