* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stable-navy: #303D74;
    --stable-navy-hover: #3f4f91;
    --stable-gold: #9B7A45;
    --stable-soft: #f7f4ee;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #ffffff;
    line-height: 1.6;
}

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

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

a,
a:visited {
    color: #ffffff;
    text-decoration: none;
}

/* HEADER / HERO */

.site-header {
    background: #fff;
}

.header-container {
    width: 100%;
}

.header-logo,
.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* NAVIGATION */

.main-nav {
    background: var(--stable-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav a {
    display: block;
    padding: 18px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    background: var(--stable-navy-hover);
}

/* CONTENT */

.content-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 30px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.block-image,
.block-text {
    flex: 1;
}

.content-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 8px 8px 12px rgba(0,0,0,0.30);
    border-radius: 4px;
}

.block-text h1,
.block-text h2,
.booking-section h2,
.contact-section h2,
.gallery-section h2 {
    margin-bottom: 20px;
    color: var(--stable-navy);
}

.block-text p {
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1.08rem;
}

/* VIDEO */

.content-video {
    width: 848px;
    height: 478px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    background: #000;
    object-fit: contain;
    box-shadow: 8px 8px 12px rgba(0,0,0,0.30);
    border-radius: 4px;
}

/* FEATURE STRIP */

.feature-strip {
    background: var(--stable-soft);
    padding: 58px 24px;
    margin-top: 45px;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.feature-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.feature-card .icon {
    color: var(--stable-navy);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.feature-card h3 {
    color: var(--stable-navy);
    margin-bottom: 10px;
}

/* GALLERY */

.gallery-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 40px 30px 40px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
    margin-top: 35px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.20);
}

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

.gallery-grid .tall {
    grid-row: span 2;
}

/* CONTACT */

.booking-section,
.contact-section {
    background: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.booking-inner,
.contact-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    text-align: left;
    align-items: start;
}

.contact-panel,
.contact-form {
    background: var(--stable-soft);
    padding: 32px;
    border-radius: 6px;
}

.contact-panel p {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.hidden-field {
    display: none;
}

.form-message {
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 700;
}

.form-success {
    background: #e4f6e9;
    color: #1d6f36;
}

.form-error {
    background: #fde8e8;
    color: #9b1c1c;
}

/* BUTTONS */

.btn,
.interim-btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
}

.btn-primary,
.interim-btn-primary {
    background: var(--stable-navy);
    color: #fff;
}

.btn-primary:hover,
.interim-btn-primary:hover {
    background: var(--stable-navy-hover);
}

.interim-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.form-buttons,
.interim-actions {
    margin-top: 25px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
    background: var(--stable-navy);
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: left;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons img {
    width: 40px;
    height: 40px;
    display: block;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

@media (max-width: 1000px) {
    .content-block,
    .content-block.reverse {
        gap: 40px;
    }

    .feature-grid,
    .contact-wrap {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .content-video {
        width: 100%;
        height: auto;
        aspect-ratio: 848 / 478;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        padding: 14px 20px;
        text-align: center;
    }

    .content-block,
    .content-block.reverse {
        flex-direction: column;
        padding: 50px 20px;
    }

    .feature-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-grid .wide,
    .gallery-grid .tall {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-grid img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
