*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9943a;
    --gold-light: #e8bc6a;
    --cream: #fdf6ec;
    --dark: #1a1208;
    --text: #3b2e15;
    --spice: #8b2e0a;
    --green: #2d5a27;
    --green-light: #4a8c41;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(26, 18, 8, .92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201, 148, 58, .2);
    transition: padding .3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--spice));
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.logo-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
    font-size: .8rem;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .9rem;
    letter-spacing: .05em;
    transition: color .2s;
}

nav ul a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--spice));
    color: #fff !important;
    padding: .5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* Hamburger → X animation when open */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY (direct body child — bypasses iOS backdrop-filter bug) ── */
#mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: rgba(26, 18, 8, .98);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    list-style: none;
}

#mobile-nav-overlay.is-open {
    display: flex;
}

#mobile-nav-overlay li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 1rem;
}

#mobile-nav-overlay a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: .05em;
    display: block;
    padding: .3rem 0;
    transition: color .2s;
}

#mobile-nav-overlay a:hover,
#mobile-nav-overlay a:active {
    color: var(--gold-light);
}

#mobile-nav-overlay .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--spice));
    color: #fff !important;
    padding: .7rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* dynamic viewport height for mobile browsers */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0a02 0%, #2d1505 40%, #0d1f0a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/hero_bg_fresh.png');
    background-size: cover;
    background-position: center;
}

/* decorative spice circles */
.spice-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 148, 58, .15);
    animation: pulse-ring 6s ease-in-out infinite;
}

.spice-ring:nth-child(1) {
    width: 500px;
    height: 500px;
    right: -100px;
    top: -100px;
    animation-delay: 0s;
}

.spice-ring:nth-child(2) {
    width: 350px;
    height: 350px;
    right: -50px;
    top: -50px;
    animation-delay: 1s;
}

.spice-ring:nth-child(3) {
    width: 200px;
    height: 200px;
    right: 0px;
    top: 0px;
    animation-delay: 2s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: .15;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.05);
    }
}

/* floating dots */
.dot {
    position: absolute;
    border-radius: 50%;
    animation: float-dot 8s ease-in-out infinite;
}

.dot:nth-child(4) {
    width: 8px;
    height: 8px;
    background: var(--gold);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot:nth-child(5) {
    width: 5px;
    height: 5px;
    background: var(--gold-light);
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.dot:nth-child(6) {
    width: 6px;
    height: 6px;
    background: var(--spice);
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.dot:nth-child(7) {
    width: 4px;
    height: 4px;
    background: var(--gold);
    top: 75%;
    left: 75%;
    animation-delay: 1s;
}

@keyframes float-dot {

    0%,
    100% {
        transform: translateY(0);
        opacity: .6;
    }

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: .4rem 1.2rem;
    border-radius: 25px;
    background: rgba(201, 148, 58, .15);
    border: 1px solid rgba(201, 148, 58, .4);
    color: var(--gold-light);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeUp .8s .2s ease both;
}

.hero-title em {
    color: var(--gold-light);
    font-style: italic;
    display: block;
}

.hero-sub {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp .8s .4s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .8s .6s ease both;
}

.btn-primary {
    padding: .85rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--spice));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201, 148, 58, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 148, 58, .5);
}

.btn-outline {
    padding: .85rem 2rem;
    border: 2px solid rgba(201, 148, 58, .5);
    color: var(--gold-light);
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.btn-outline:hover {
    background: rgba(201, 148, 58, .1);
    border-color: var(--gold-light);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    animation: fadeUp .8s .8s ease both;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
}

.stat-label {
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION BASE ── */
section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-sub {
    color: #6b5a42;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--spice));
    margin: 1.2rem auto;
    border-radius: 2px;
}

/* ── ABOUT ── */
#about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a02, #3d1f08);
    display: grid;
    place-items: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 148, 58, .2) 0%, transparent 70%);
}

.about-visual-emoji {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5));
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(201, 148, 58, .95);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.about-badge strong {
    font-size: 1.5rem;
    display: block;
    font-family: 'Playfair Display', serif;
}

.about-badge span {
    font-size: .75rem;
    opacity: .9;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: #6b5a42;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text);
    font-size: .95rem;
}

.about-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: .7rem;
    flex-shrink: 0;
}

/* ── MENU ── */
#menu {
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 .5rem;
}

.tab-btn {
    padding: .6rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(201, 148, 58, .4);
    background: transparent;
    cursor: pointer;
    font-size: .9rem;
    color: var(--text);
    transition: .25s;
    font-family: 'Inter', sans-serif;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--spice));
    border-color: transparent;
    color: #fff;
}

.tab-btn:hover:not(.active) {
    border-color: var(--gold);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    transition: transform .3s, box-shadow .3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.menu-card-img {
    height: 140px;
    display: grid;
    place-items: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #fff5e6, #ffe4b5);
}

.menu-card-body {
    padding: 1.2rem;
}

.menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .4rem;
    color: var(--dark);
}

.menu-card-body p {
    font-size: .85rem;
    color: #7a6a52;
    line-height: 1.6;
}

.menu-highlight {
    background-image: linear-gradient(rgba(26, 10, 2, 0.85), rgba(45, 21, 5, 0.85)), url('../images/menu_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-highlight-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.menu-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: .5rem;
}

.menu-highlight p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    max-width: 600px;
}

/* ── COOKING CLASSES ── */
#classes {
    background: #fff;
}

.classes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.class-card {
    background-image: linear-gradient(rgba(26, 10, 2, 0.8), rgba(13, 31, 10, 0.75)), url('../images/class_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 148, 58, .08);
}

.class-card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.class-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: .8rem;
}

.class-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.class-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.5rem;
}

.class-card ul li {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    display: flex;
    gap: .6rem;
}

.class-card ul li::before {
    content: '🌿';
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.class-info {
    padding: 1rem 0;
}

.class-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.class-info p {
    color: #6b5a42;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: .6rem;
}

.info-row .icon {
    font-size: 1.3rem;
}

.info-row div strong {
    color: var(--dark);
    font-size: .9rem;
}

.info-row div span {
    color: #7a6a52;
    font-size: .85rem;
    display: block;
}

/* ── GALLERY ── */
#gallery {
    background: var(--cream);
    padding: 5rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 4rem;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    background: linear-gradient(135deg, #2d1505, #1a0a02);
}

/* Alternate background colours for variety */
.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #1a2d05, #0a1a02);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #2d1a05, #1a0d02);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #051a2d, #021014);
}

.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #2d0505, #1a0202);
}

.gallery-item:nth-child(6) {
    background: linear-gradient(135deg, #1a1a2d, #0a0a1a);
}

.gallery-item:nth-child(7) {
    background: linear-gradient(135deg, #2d2d05, #1a1a02);
}

.gallery-item:nth-child(8) {
    background: linear-gradient(135deg, #052d1a, #021a0a);
}

.gallery-item:nth-child(9) {
    background: linear-gradient(135deg, #2d0514, #1a0209);
}

.gallery-item:nth-child(10) {
    background: linear-gradient(135deg, #05142d, #020a1a);
}

/* First/hero item spans 2 columns */
.gallery-item--hero,
.gallery-item:first-child {
    grid-column: span 2;
    font-size: 7rem;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}

.gallery-item img,
.gallery-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    position: absolute;
    inset: 0;
    z-index: 1;
}



/* Caption that appears on hover */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem .8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    color: #fff;
    font-size: .8rem;
    z-index: 3;
    opacity: 0;
    transition: opacity .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: .3s;
    color: #fff;
    font-size: 2rem;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ── TESTIMONIALS ── */
#reviews {
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(201, 148, 58, .15);
    transition: .2s;
}

.review-card:hover {
    border-color: rgba(201, 148, 58, .5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #5a4a32;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-size: .95rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--spice));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
    font-size: .9rem;
}

.reviewer-origin {
    color: #9a8a72;
    font-size: .8rem;
}

/* ── PLATFORM REVIEW BUTTONS ── */
.review-platforms {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
    border: 2px solid transparent;
}

.platform-btn:hover {
    transform: translateY(-3px);
}

.platform-btn .plat-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.platform-btn .plat-text {
    text-align: left;
    line-height: 1.3;
}

.platform-btn .plat-text small {
    display: block;
    font-weight: 400;
    font-size: .78rem;
    opacity: .8;
}

.platform-btn .plat-text strong {
    font-size: 1rem;
}

/* TripAdvisor */
.btn-tripadvisor {
    background: #00aa6c;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 170, 108, .3);
}

.btn-tripadvisor:hover {
    box-shadow: 0 8px 28px rgba(0, 170, 108, .45);
}

/* Google */
.btn-google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

.btn-google:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
    border-color: #bbb;
}

.btn-google .google-g {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 110deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    font-size: .9rem;
}

.review-note {
    text-align: center;
    margin-top: 2.5rem;
    color: #9a8a72;
    font-size: .88rem;
}

.review-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.review-note a:hover {
    text-decoration: underline;
}

/* ── BOOK / CONTACT ── */
#contact {
    background: linear-gradient(135deg, #1a0a02 0%, #0d1f0a 100%);
    color: #fff;
}

#contact .section-title {
    color: #fff;
}

#contact .section-sub {
    color: rgba(255, 255, 255, .65);
}

#contact .section-tag {
    color: var(--gold-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.contact-detail .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(201, 148, 58, .15);
    border: 1px solid rgba(201, 148, 58, .3);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.contact-detail strong {
    color: #fff;
    display: block;
    font-size: .9rem;
    margin-bottom: .2rem;
}

.contact-detail span {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    line-height: 1.5;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.hours-table td {
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .9rem;
}

.hours-table td:first-child {
    color: rgba(255, 255, 255, .6);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gold-light);
    font-weight: 500;
}

.booking-form {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s, background .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201, 148, 58, .6);
    background: rgba(255, 255, 255, .12);
}

.form-group select option {
    background: #1a0a02;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    width: 100%;
    padding: .9rem;
    background: linear-gradient(135deg, var(--gold), var(--spice));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    font-family: 'Inter', sans-serif;
    margin-top: .5rem;
}

.btn-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    background: #0d0802;
    color: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid rgba(201, 148, 58, .1);
}

footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: .5rem;
}

footer p {
    font-size: .85rem;
}

footer a {
    color: var(--gold-light);
    text-decoration: none;
}

/* ── TABLET & MOBILE RESPONSIVENESS ── */

/* Tablet: hide nav links, show hamburger */
@media(max-width: 1080px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile menu is now #mobile-nav-overlay (direct body child) — bypasses iOS backdrop-filter bug */
    nav ul.open {
        display: none !important;
    }


    section {
        padding: 4rem 5%;
    }

    .about-grid,
    .classes-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .classes-grid,
    .contact-grid,
    .menu-highlight {
        gap: 2rem;
    }

    .about-visual {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 220px;
    }

    .hero-stats {
        gap: 2rem;
    }

    /* Menu tabs: scroll horizontally on tablet/mobile, do NOT stack */
    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem .75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: .6rem;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* Medium mobile: collapse form rows */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    nav {
        padding: .75rem 4%;
    }

    .booking-form {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: .75rem;
        padding: .35rem 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 200px;
    }

    .review-platforms {
        flex-direction: column;
    }

    .platform-btn {
        width: 100%;
        justify-content: center;
    }

    .classes-grid {
        gap: 1.5rem;
    }

    .class-card {
        padding: 1.8rem 1.4rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-tabs {
        padding-bottom: .5rem;
    }

    .tab-btn {
        padding: .5rem 1.2rem;
        font-size: .85rem;
    }

    footer p {
        font-size: .78rem;
    }
}