*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ivory: #FAF7F2;
    --linen: #F0EAE0;
    --stone: #D9CEBF;
    --tan: #B8A48E;
    --bark: #7C6A55;
    --earth: #4A3A2A;
    --ink: #1E1510;
    --amber: #C8841A;
    --amber-l: #E8A830;
    --white: #FFFFFF;
    --red: #B84020;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 64px;
    box-shadow: 0 1px 12px rgba(30, 21, 16, 0.06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand img {
    height: 26px;
}

.nav-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--earth);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: var(--linen);
    color: var(--earth);
}

.nav-book {
    background: var(--amber) !important;
    color: var(--white) !important;
    font-weight: 500;
}

.nav-book:hover {
    background: var(--earth) !important;
}

.nav-prices {
    border: 1px solid var(--stone) !important;
}

/* ── HERO STRIP ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 88vh;
    /* min-height: 560px; */
    gap: 3px;
}

.hero-main {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.94);
    padding: 1.2rem 1.6rem;
    backdrop-filter: blur(6px);
}

.hero-badge-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.3rem;
}

.hero-badge-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--earth);
    line-height: 1.1;
}

.hero-badge-sub {
    font-size: 0.75rem;
    color: var(--bark);
    margin-top: 0.25rem;
}

.hero-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    background: var(--stone);
}

.bg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── STICKY BOOKING BAR ── */
.booking-bar {
    background: var(--earth);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-bar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
}

.booking-bar-title span {
    font-style: italic;
    color: var(--amber-l);
}

.booking-bar-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-amber {
    background: var(--amber);
    color: var(--white);
}

.btn-amber:hover {
    background: var(--amber-l);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
    border: 1px solid var(--stone);
    color: var(--bark);
}

.btn-outline-dark:hover {
    background: var(--linen);
    color: var(--earth);
}

.btn-wa {
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-wa:hover {
    background: #1ebe5a;
}

.btn-wa svg {
    width: 14px;
    height: 14px;
}

/* ── MAIN LAYOUT ── */
.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* ── INTRO ── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.intro-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.8rem;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--earth);
    margin-bottom: 1.2rem;
}

.intro-title em {
    font-style: italic;
}

.intro-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--bark);
    max-width: 560px;
}

.intro-aside {
    background: var(--linen);
    padding: 2rem;
    border-left: 3px solid var(--amber);
    position: sticky;
    top: 80px;
}

.aside-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--earth);
    margin-bottom: 1rem;
}

.aside-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.aside-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--bark);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--stone);
    transition: color 0.2s;
}

.aside-link:last-child {
    border-bottom: none;
}

.aside-link:hover {
    color: var(--amber);
}

.aside-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.aside-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.aside-cta .btn {
    text-align: center;
    font-size: 0.7rem;
}

/* ── SECTION HEADER ── */
.section-header {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth);
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--amber);
    margin-top: 0.8rem;
}

/* ── ACCOMMODATION CARDS ── */
.accommodation {
    margin-bottom: 5rem;
}

.accom-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.5px;
    background: var(--white);
    transition: box-shadow 0.3s;
}

.accom-card:hover {
    box-shadow: 0 8px 40px rgba(30, 21, 16, 0.1);
    z-index: 1;
    position: relative;
}

.accom-card:nth-child(even) {
    direction: rtl;
}

.accom-card:nth-child(even)>* {
    direction: ltr;
}

.accom-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.accom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.accom-card:hover .accom-photo img {
    transform: scale(1.03);
}

.accom-info {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accom-type {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.6rem;
}

.accom-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.accom-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--bark);
    margin-bottom: 1.5rem;
}

.accom-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.accom-feature {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--linen);
    color: var(--bark);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

.accom-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.photos-btn {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-bottom: 1px solid var(--amber);
    padding-bottom: 1px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: color 0.2s;
}

.photos-btn:hover {
    color: var(--earth);
    border-color: var(--earth);
}

.photos-btn svg {
    width: 12px;
    height: 12px;
}

/* ── RESORT CARDS ── */
.resorts {
    margin-bottom: 5rem;
}

.resort-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.5px;
    background: var(--white);
    transition: box-shadow 0.3s;
}

.resort-card:hover {
    box-shadow: 0 8px 40px rgba(30, 21, 16, 0.1);
    z-index: 1;
    position: relative;
}

.resort-card:nth-child(even) {
    direction: rtl;
}

.resort-card:nth-child(even)>* {
    direction: ltr;
}

.resort-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.resort-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.resort-card:hover .resort-photo img {
    transform: scale(1.03);
}

.resort-info {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resort-type {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.6rem;
}

.resort-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.resort-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--bark);
    margin-bottom: 1.5rem;
}

.resort-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.resort-feature {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--linen);
    color: var(--bark);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

.resort-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.learn-more-link {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-bottom: 1px solid var(--amber);
    padding-bottom: 1px;
    transition: color 0.2s;
}

.learn-more-link:hover {
    color: var(--earth);
    border-color: var(--earth);
}

.learn-more-link svg {
    width: 12px;
    height: 12px;
}

/* ── GALLERY LIGHTBOX ── */
.gallery-section {
    margin-bottom: 5rem;
}

.gallery-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--stone);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.gallery-tab {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
    color: var(--tan);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.gallery-tab:hover {
    color: var(--bark);
}

.gallery-tab.active {
    color: var(--amber);
    border-bottom-color: var(--amber);
}

.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px;
}

.gallery-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--stone);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(20, 14, 10, 0.96);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.open {
    display: flex;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    align-items: center;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-counter {
    margin-top: 1rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.15em;
}

/* ── VIDEO SECTION ── */
.video-section {
    margin-bottom: 5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.video-embed {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-label {
    font-size: 0.75rem;
    color: var(--bark);
    margin-top: 0.5rem;
}

/* ── PRICING ── */
.pricing-section {
    margin-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--stone);
    overflow: hidden;
}

.pricing-card-header {
    background: var(--earth);
    padding: 1.2rem 1.8rem;
}

.pricing-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.pricing-card-header span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    padding: 0.8rem 1.2rem;
    text-align: left;
    background: var(--linen);
    border-bottom: 1px solid var(--stone);
}

.pricing-table td {
    font-size: 0.82rem;
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid var(--linen);
    color: var(--earth);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--ivory);
}

.pricing-table td:first-child {
    color: var(--bark);
}

.price-val {
    font-weight: 500;
    color: var(--earth);
}

.children-policy {
    background: var(--linen);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
    border-left: 3px solid var(--amber);
}

.children-policy h4 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 0.8rem;
}

.children-policy ul {
    list-style: none;
}

.children-policy li {
    font-size: 0.82rem;
    color: var(--bark);
    line-height: 1.6;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.children-policy li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--amber);
}

.sadc-offer {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid var(--amber);
    padding-bottom: 1px;
}

.sadc-offer:hover {
    color: var(--earth);
    border-color: var(--earth);
}

/* ── FACILITIES & ACTIVITIES ── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-top: 3px solid var(--amber);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--earth);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--bark);
}

/* ── ACTIVITIES PHOTO STRIP ── */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 5rem;
}

.photo-strip-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: zoom-in;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.06);
}

/* ── ALT STAYS STRIP ── */
.alt-strip {
    background: var(--linen);
    border: 1px solid var(--stone);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.alt-strip p {
    font-size: 0.9rem;
    color: var(--bark);
    max-width: 520px;
    line-height: 1.7;
}

.alt-strip p strong {
    color: var(--earth);
    font-weight: 500;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--earth);
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5rem;
}

.cta-strip-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.cta-strip-text h2 em {
    font-style: italic;
    color: var(--amber-l);
}

.cta-strip-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-strip-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 2.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--amber-l);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 1.2rem;
    }

    .nav-links .nav-prices,
    .nav-links a:not(.nav-book):not(.btn-wa) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-main {
        height: 60vw;
        min-height: 280px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: 30vw;
    }

    .booking-bar {
        padding: 1rem 1.2rem;
    }

    .page {
        padding: 2.5rem 1.2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-aside {
        position: static;
    }

    .accom-card,
    .accom-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .accom-info {
        padding: 1.5rem;
    }

    .resort-card,
    .resort-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .resort-info {
        padding: 1.5rem;
    }

    .alt-strip {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .photo-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-strip {
        padding: 2rem 1.2rem;
    }

    footer {
        padding: 2rem 1.2rem;
    }

    .lightbox-prev {
        left: -10px;
    }

    .lightbox-next {
        right: -10px;
    }
}

/* ── BOOKING FORM ─────────────────────────────────────── */
.booking-form-wrap {
    background: var(--earth);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 2rem 2.4rem;
    max-width: 820px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    width: 100%;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber, #c8922a);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--stone);
    margin: 0;
    opacity: 0.9;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--amber, #c8922a);
    flex-shrink: 0;
}

.form-checkbox label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    color: var(--white);
}

.required {
    color: var(--amber, #c8922a);
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Jost', sans-serif;
}

.cf-turnstile {
    margin: 1rem 0;
}

@media (max-width: 700px) {
    .booking-form-wrap {
        padding: 1.4rem 1rem;
    }
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
    }
}