/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #e8920e;
    --orange-dark: #c97a0a;
    --dark: #1a1a1a;
    --dark-hover: #2e2e2e;
    --dark-nav: rgba(18, 18, 18, 0.92);
    --white: #ffffff;
    --cream: #fdf6ee;
    --border-warm: #f0e6d6;
    --gray-text: #555;
    --gray-mid: #999;
    --gray-light: #bbb;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, 'Oswald', sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 62px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

.text-orange {
    color: var(--orange);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 62px;
    background: var(--dark-nav);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

/* Groups Book Now + hamburger on the right */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Nav right */

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    height: 100svh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/FullSizeRender.jpg');
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.65) 60%,
        rgba(10, 10, 10, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 8px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto;
}

.hero-book-btn {
    display: inline-block;
    margin-top: 36px;
    padding: 14px 40px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

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

.hero-book-btn:hover {
    background: var(--orange-dark);
}

/* Hero arrow bounce */
.hero-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    z-index: 2;
    cursor: pointer;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

@keyframes heroPan {
    0%   { transform: scale(1.1) translateX(-5%); }
    50%  { transform: scale(1.1) translateX(5%); }
    100% { transform: scale(1.1) translateX(-5%); }
}

/* Side dots */

/* ===========================
   OUR STORY
   =========================== */
.story {
    padding: 90px 60px;
    background: var(--white);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 65px;
    max-width: 900px;
    margin: 0 auto;
}

.story-image {
    flex-shrink: 0;
}

.story-image img {
    width: 310px;
    height: 310px;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
    line-height: 1;
}

.story-content p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 14px;
}

/* ===========================
   SERVICES
   =========================== */
.services {
    padding: 85px 60px;
    background-color: var(--cream);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 50px;
}

.services .section-heading {
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-warm);
    border-radius: 12px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    cursor: default;
}

.service-card:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 22px rgba(232, 146, 14, 0.12);
    transform: translateY(-3px);
}

.service-card-info {
    flex: 1;
}

.service-card-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-mid);
    margin-top: 5px;
}

.service-card-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
    padding: 85px 60px;
    background: var(--dark);
}

.gallery-container {
    max-width: 980px;
    margin: 0 auto;
}

.gallery-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 40px;
}

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

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img--pompadour-fade {
    object-position: 50% 15%;
}

.gallery-img--curly-fade-back {
    object-position: 50% 40%;
}

.gallery-img--textured-waves-front {
    object-position: 50% 30%;
}

.gallery-img--textured-waves-side {
    object-position: 50% 30%;
}

.gallery-img--curly-afro-fade {
    object-position: 50% 20%;
}

.gallery-img--razor-art-design {
    object-position: 50% 40%;
}

.gallery-img--kids-pompadour-front {
    object-fit: contain;
}


.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===========================
   CONTACT
   =========================== */
.contact {
    position: relative;
    padding: 85px 60px;
    background-color: #111;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at center, rgba(232,146,14,0.05) 30%, transparent 30%),
        radial-gradient(circle at center, rgba(232,146,14,0.02) 50%, transparent 50%);
    background-size: 80px 80px;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
}

.contact-container .section-heading {
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row.two-col {
    flex-direction: row;
}

.form-row.center {
    justify-content: center;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--white);
    resize: none;
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-row textarea {
    width: 100%;
}

.submit-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 50px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--orange-dark);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 65px 80px 50px;
    gap: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col p {
    color: var(--gray-mid);
    font-size: 13px;
    line-height: 2.1;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    color: var(--gray-mid);
    font-size: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--orange);
}

/* Map */
.footer-map {
    background: var(--dark-hover);
    height: 240px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #222;
}


/* Navbar Book Now button */
.nav-book-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.15s;
}

.nav-book-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* ===========================
   BOOKING MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 44px 40px 36px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 28px;
}

/* Booking form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.optional {
    font-weight: 400;
    text-transform: none;
    color: #aaa;
    letter-spacing: 0;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    padding: 11px 13px;
    border: 1px solid #ddd;
    outline: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--dark);
    background: #fafafa;
    transition: border-color 0.2s;
    width: 100%;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--orange);
    background: var(--white);
}

.booking-field select {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px;
    cursor: pointer;
}

.booking-field select option:disabled {
    color: #aaa;
    background: #f0f0f0;
}

.booking-field .select-wrap {
    position: relative;
}

.booking-field .select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #888;
    pointer-events: none;
}

.booking-field textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-submit {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.25s;
    width: 100%;
}

.booking-submit:hover {
    background: var(--orange-dark);
}

/* Success state */
.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 10px;
    gap: 12px;
}

.booking-success.show {
    display: flex;
}

.booking-success i {
    font-size: 52px;
    color: var(--orange);
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--dark);
}

.booking-success p {
    font-size: 14px;
    color: var(--gray-text);
    max-width: 320px;
}

.booking-close-success {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 36px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.25s;
}

.booking-close-success:hover {
    background: var(--dark-hover);
}

/* ===========================
   HAMBURGER BUTTON
   =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===========================
   RESPONSIVE — LARGE DESKTOP (≥1440px)
   =========================== */
@media (min-width: 1440px) {
    .navbar {
        padding: 0 60px;
    }
    .story {
        padding: 100px 80px;
    }
    .story-container {
        max-width: 1140px;
        gap: 80px;
    }
    .story-image img {
        width: 380px;
        height: 380px;
    }
    .story-heading {
        font-size: 50px;
    }
    .services,
    .contact {
        padding: 100px 80px;
    }
    .section-heading {
        font-size: 50px;
    }
    .gallery {
        padding: 100px 80px;
    }
    .gallery-container {
        max-width: 1260px;
    }
    .gallery-heading {
        font-size: 50px;
    }
    .gallery-item img {
        height: 260px;
    }
    .contact-container {
        max-width: 880px;
    }
    .footer-top {
        padding: 75px 120px 55px;
    }
    .footer-map {
        height: 280px;
    }
}

/* ===========================
   RESPONSIVE — WIDE DESKTOP (≥1800px)
   =========================== */
@media (min-width: 1800px) {
    .navbar {
        padding: 0 100px;
    }
    .story {
        padding: 120px 100px;
    }
    .story-container {
        max-width: 1400px;
        gap: 100px;
    }
    .story-image img {
        width: 460px;
        height: 460px;
    }
    .story-heading {
        font-size: 56px;
    }
    .services,
    .contact {
        padding: 110px 100px;
    }
    .section-heading {
        font-size: 54px;
    }
    .book-btn {
        padding: 9px 24px;
        font-size: 12px;
    }
    .gallery {
        padding: 110px 100px;
    }
    .gallery-container {
        max-width: 1600px;
    }
    .gallery-heading {
        font-size: 54px;
    }
    .gallery-grid {
        gap: 8px;
    }
    .gallery-item img {
        height: 310px;
    }
    .contact-container {
        max-width: 1080px;
    }
    .footer-top {
        padding: 90px 180px 65px;
    }
    .footer-map {
        height: 320px;
    }
}

/* ===========================
   RESPONSIVE — LARGE TABLET (≤1024px)
   =========================== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 28px;
    }
    .nav-links {
        gap: 20px;
    }
    .hero-title {
        font-size: 72px;
        letter-spacing: 10px;
    }
    .story {
        padding: 70px 40px;
    }
    .story-container {
        gap: 44px;
    }
    .story-image img {
        width: 260px;
        height: 260px;
    }
    .services,
    .contact {
        padding: 70px 40px;
    }
    .gallery {
        padding: 70px 40px;
    }
    .footer-top {
        padding: 50px 50px 40px;
        gap: 30px;
    }
}

/* ===========================
   RESPONSIVE — TABLET (≤768px)
   =========================== */
@media (max-width: 768px) {
    /* --- Navbar --- */
    .navbar {
        padding: 0 18px;
    }
    .nav-actions {
        gap: 10px;
    }
    .hamburger {
        display: flex;
    }
    .nav-book-btn {
        display: none;
    }
    /* --- Hero background animation --- */
    .hero-bg {
        animation: heroPan 14s ease-in-out infinite;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(18, 18, 18, 0.99);
        padding: 8px 0 14px;
        z-index: 999;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-link {
        display: block;
        padding: 13px 24px;
        font-size: 14px;
        border-bottom: none;
    }
    .nav-link:hover,
    .nav-link.active {
        background: rgba(232, 146, 14, 0.12);
        border-bottom: none;
        color: var(--orange);
    }

    /* --- Hero --- */
    .hero-title {
        font-size: 52px;
        letter-spacing: 8px;
    }
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 4px;
    }
    /* --- Story --- */
    .story {
        padding: 60px 30px;
    }
    .story-container {
        flex-direction: column;
        gap: 34px;
        text-align: center;
    }
    .story-image {
        width: 100%;
    }
    .story-image img {
        width: 100%;
        max-width: 460px;
        height: 280px;
        margin: 0 auto;
    }
    .story-heading {
        font-size: 36px;
    }

    /* --- Services --- */
    .services {
        padding: 60px 24px;
    }
    .section-heading {
        font-size: 36px;
        letter-spacing: 6px;
    }

    /* --- Gallery --- */
    .gallery {
        padding: 60px 24px;
    }
    .gallery-heading {
        font-size: 36px;
        letter-spacing: 6px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .gallery-item img {
        height: 185px;
    }
    .gallery-item:last-child {
        display: none;
    }

    /* --- Contact --- */
    .contact {
        padding: 60px 24px;
    }

    /* --- Footer --- */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 48px 30px 36px;
        gap: 32px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-map {
        height: 220px;
    }

    /* --- Modal --- */
    .modal {
        padding: 36px 26px 28px;
        max-height: 92vh;
    }
    .modal-title {
        font-size: 24px;
    }
    .booking-row.two-col {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ===========================
   RESPONSIVE — MOBILE (≤540px)
   =========================== */
@media (max-width: 540px) {
    /* --- Navbar --- */
    .navbar {
        padding: 0 14px;
    }
    .nav-actions {
        gap: 8px;
    }
    /* --- Hero --- */
    .hero-title {
        font-size: 40px;
        letter-spacing: 6px;
    }
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 3px;
    }
    /* --- Story --- */
    .story {
        padding: 50px 20px;
    }
    .story-heading {
        font-size: 30px;
    }
    .story-image img {
        height: 230px;
    }
    .story-content p {
        font-size: 13px;
        text-align: left;
    }

    /* --- Services --- */
    .services {
        padding: 50px 18px;
    }
    .section-heading {
        font-size: 30px;
        letter-spacing: 5px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .service-card {
        padding: 18px 20px;
    }
    .service-card-price {
        font-size: 24px;
    }

    /* --- Gallery --- */
    .gallery {
        padding: 50px 18px;
    }
    .gallery-heading {
        font-size: 30px;
        letter-spacing: 5px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item img {
        height: 160px;
    }

    /* --- Contact --- */
    .contact {
        padding: 50px 18px;
    }
    .form-row.two-col {
        flex-direction: column;
    }

    /* --- Footer --- */
    .footer-top {
        align-items: center;
        text-align: center;
        padding: 42px 18px 28px;
        gap: 28px;
    }
    .footer-map {
        height: 190px;
    }

    /* --- Modal --- */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .modal {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 16px 16px 0 0;
        padding: 28px 20px 24px;
        transform: translateY(40px);
    }
    .modal-overlay.active .modal {
        transform: translateY(0);
    }
    .modal-title {
        font-size: 22px;
        padding-right: 30px;
    }
    .modal-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .booking-row.two-col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .booking-form {
        gap: 14px;
    }
    .booking-field input,
    .booking-field select,
    .booking-field textarea {
        padding: 12px 12px;
        font-size: 14px;
    }
    .booking-submit {
        padding: 14px;
        font-size: 14px;
    }
    .booking-success i {
        font-size: 44px;
    }
    .booking-success h3 {
        font-size: 20px;
    }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤380px)
   =========================== */
@media (max-width: 380px) {
    /* --- Hero --- */
    .hero-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* --- Headings --- */
    .section-heading,
    .gallery-heading {
        font-size: 26px;
        letter-spacing: 4px;
    }
    .story-heading {
        font-size: 26px;
    }

    /* --- Gallery single column on very small --- */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 200px;
    }

    /* --- Modal --- */
    .modal {
        max-height: 96vh;
        padding: 24px 16px 20px;
    }
    .modal-title {
        font-size: 20px;
    }
}
