/* ============================================================
   SHOBUK GOLD — styles.css
   Luxury Event Planning Website Stylesheet
   ============================================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97D;
    --gold-dark: #9A7A2E;
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #1A1A1A;
    --off-white: #F8F4EC;
    --cream: #EDE0C8;
    --text-muted: #8A7A5A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--black);
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.7;
}


/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--off-white);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
}


/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        var(--black);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── HERO BACKGROUND IMAGE (optional overlay) ──
   If you want a real background photo on the hero,
   you can also add it directly in the HTML via inline style.
   See index.html for where to do that.
── */
.hero-bg.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-tag::before,
.hero-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero > .hero-content > p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(248, 244, 236, 0.65);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.03em;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 0.9rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    padding: 0.9rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(248, 244, 236, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 244, 236, 0.35);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.8); }
}


/* ── SHARED / UTILITY ── */
section {
    padding: 7rem 4rem;
}

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

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── ABOUT ── */
.about {
    background: var(--black-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--black-3);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-align: center;
    overflow: hidden;
}

/* When you add a real image, it will fill this container */
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
}

.stat-number {
    font-family: 'Cormorant Garant', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(248, 244, 236, 0.45);
    text-transform: uppercase;
    margin-top: 0.3rem;
}


/* ── SERVICES ── */
.services {
    background: var(--black);
}

.services-intro {
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(201, 168, 76, 0.12);
}

.service-card {
    background: var(--black);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--black-2);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    opacity: 0.65;
}

.service-card h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.service-card > p {
    font-size: 0.83rem;
    color: rgba(248, 244, 236, 0.5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.78rem;
    color: rgba(248, 244, 236, 0.55);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '—';
    color: var(--gold);
    font-size: 0.65rem;
}


/* ── GALLERY ── */
.gallery {
    background: var(--black-2);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-filter {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.gallery-filter li {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 244, 236, 0.4);
    cursor: pointer;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.gallery-filter li.active,
.gallery-filter li:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1.5px;
    background: rgba(201, 168, 76, 0.1);
}

.gallery-item {
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

/* Real images inside gallery items */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-placeholder {
    color: rgba(201, 168, 76, 0.18);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-align: center;
    pointer-events: none;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Always show overlay on touch devices */
@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.2) 60%,
            transparent 100%
        );
        justify-content: flex-end;
        padding-bottom: 1.2rem;
    }

    .gallery-overlay-title {
        font-size: 1rem;
    }

    .gallery-overlay-cat {
        font-size: 0.6rem;
    }
}

.gallery-overlay-title {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.gallery-overlay-cat {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}


/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--black);
}

.testimonials-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
}

.testimonials-header .gold-divider {
    margin: 2rem auto;
}

.testimonials-header .section-tag {
    justify-content: center;
}

.testimonials-header .section-tag::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2.5rem;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
}

.testimonial-quote {
    font-family: 'Cormorant Garant', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.5;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(248, 244, 236, 0.65);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garant', serif;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
    overflow: hidden;
}

/* Real avatar photo */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1rem;
    font-weight: 500;
}

.author-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* ── BLOG ── */
.blog {
    background: var(--black-2);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201, 168, 76, 0.1);
}

.blog-card {
    background: var(--black-2);
    transition: background 0.3s;
}

.blog-card:hover {
    background: var(--black-3);
}

.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 76, 0.18);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    overflow: hidden;
}

/* Real blog images */
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.03);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.blog-card h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.82rem;
    color: rgba(248, 244, 236, 0.5);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 1rem;
}

.read-more {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 0.7rem;
}


/* ── FAQ ── */
.faq {
    background: var(--black);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-tag {
    justify-content: center;
}

.faq-header .section-tag::before {
    display: none;
}

.faq-header .gold-divider {
    margin: 2rem auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-question {
    padding: 1.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garant', serif;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.35s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(201, 168, 76, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.875rem;
    color: rgba(248, 244, 236, 0.58);
    line-height: 1.9;
    padding-bottom: 1.8rem;
}


/* ── CONTACT ── */
.contact {
    background: var(--black-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 0.875rem;
    color: rgba(248, 244, 236, 0.58);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.875rem;
    color: rgba(248, 244, 236, 0.7);
}

.contact-details li .detail-label {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    min-width: 75px;
    padding-top: 2px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    padding: 0.85rem 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.16);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 244, 236, 0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(248, 244, 236, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--off-white);
    padding: 0.9rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #111;
}

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

.form-submit {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: transparent;
    color: var(--gold);
}


/* ── BOOKING CALENDAR ── */
.booking {
    background: var(--black-3);
    padding: 6rem 4rem;
}

.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, 0.18);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.booking-text p {
    font-size: 0.875rem;
    color: rgba(248, 244, 236, 0.55);
    line-height: 1.85;
    margin: 1.5rem 0 2rem;
}

.calendar-widget {
    background: rgba(248, 244, 236, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cal-nav-btn {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.cal-nav-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

.cal-month-label {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.4rem;
}

.cal-days-header span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(248, 244, 236, 0.65);
}

.cal-day:hover:not(.booked):not(.empty) {
    background: rgba(201, 168, 76, 0.14);
    color: var(--gold);
}

.cal-day.today {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.cal-day.selected {
    background: var(--gold);
    color: var(--black);
    font-weight: 500;
}

.cal-day.booked {
    color: rgba(248, 244, 236, 0.18);
    cursor: default;
    text-decoration: line-through;
}

.cal-day.empty {
    cursor: default;
}

.cal-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: rgba(248, 244, 236, 0.4);
    letter-spacing: 0.08em;
}

.leg-dot {
    width: 10px;
    height: 10px;
}

.leg-available {
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.leg-booked {
    background: rgba(248, 244, 236, 0.1);
}

.leg-selected {
    background: var(--gold);
}


/* ── FOOTER ── */
footer {
    background: var(--black-3);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(248, 244, 236, 0.38);
    line-height: 1.85;
    max-width: 280px;
    margin-top: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 244, 236, 0.4);
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(248, 244, 236, 0.38);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(248, 244, 236, 0.22);
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: rgba(201, 168, 76, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* ── MOBILE NAV DROPDOWN ── */
.nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.99);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 998;
    overflow: hidden;
    padding: 0;
}

.nav-links.open li {
    width: 100%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-links.open a {
    display: block;
    font-size: 0.85rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.1rem 1.8rem;
    width: 100%;
    text-align: left;
    color: rgba(248, 244, 236, 0.75) !important;
    transition: all 0.2s;
}

.nav-links.open a:hover {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.05);
    padding-left: 2.2rem;
}

.nav-links.open a::after {
    display: none !important;
}

.nav-links.open .nav-cta {
    margin: 1rem 1.8rem 1.2rem;
    background: var(--gold) !important;
    color: var(--black) !important;
    text-align: center;
    padding: 0.9rem 1.8rem !important;
    display: block;
    width: calc(100% - 3.6rem);
    letter-spacing: 0.2em;
}

.nav-links.open .nav-cta:hover {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    section { padding: 5rem 2rem; }
    nav, nav.scrolled { padding-left: 2rem; padding-right: 2rem; }
    .booking { padding: 5rem 2rem; }
    footer { padding: 4rem 2rem 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .contact-grid,
    .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: span 1; }
    .testimonials-grid,
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
/* ── FULL MOBILE OPTIMISATION ── */

/* Tablet: 768px and below */
@media (max-width: 768px) {

    /* ── GENERAL ── */
    section { padding: 4rem 1.5rem; }

    /* ── NAVBAR ── */
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.9rem 1.5rem; }
    .nav-logo { font-size: 1.4rem; }
    .nav-toggle { display: flex; position: relative; z-index: 1001; }

    /* ── HERO ── */
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero > .hero-content > p { font-size: 0.875rem; padding: 0 0.5rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
    .hero-content { padding: 1rem; }

    /* ── ABOUT ── */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img-accent { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 2rem; }

    /* ── SERVICES ── */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }

    /* ── GALLERY ── */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2px;
    }
    .gallery-item { min-height: 220px; }
    .gallery-item:first-child { grid-row: span 1; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .gallery-filter { gap: 1rem; flex-wrap: wrap; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial-card { padding: 1.8rem; }
    .testimonials-header { margin-bottom: 2rem; }

    /* ── BLOG ── */
    .blog-grid { grid-template-columns: 1fr; gap: 2px; }
    .blog-header { flex-direction: column; align-items: flex-start; }
    .blog-card h3 { font-size: 1.15rem; }

    /* ── FAQ ── */
    .faq-question { font-size: 0.95rem; }

    /* ── CONTACT ── */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { width: 100%; text-align: center; }
    .whatsapp-btn { width: 100%; justify-content: center; }

    /* ── BOOKING CALENDAR ── */
    .booking { padding: 4rem 1.5rem; }
    .booking-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .calendar-widget { padding: 1.2rem; }
    .cal-day { font-size: 0.75rem; }
    .cal-days-header span { font-size: 0.55rem; }
    .cal-legend { flex-wrap: wrap; gap: 1rem; }

    /* ── SECTION TITLES ── */
    .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

    /* ── FOOTER ── */
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    .footer-brand p { max-width: 100%; }
}

/* Small phones: 480px and below */
@media (max-width: 480px) {

    /* ── GENERAL ── */
    section { padding: 3.5rem 1.2rem; }

    /* ── NAVBAR ── */
    nav { padding: 1rem 1.2rem; }
    .nav-logo { font-size: 1.25rem; }

    /* ── HERO ── */
    .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); line-height: 1.1; }
    .hero-tag { font-size: 0.6rem; gap: 0.5rem; }
    .hero-tag::before, .hero-tag::after { width: 20px; }

    /* ── ABOUT ── */
    .about-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.62rem; }

    /* ── SERVICES ── */
    .service-card { padding: 1.8rem 1.2rem; }
    .service-card h3 { font-size: 1.3rem; }

    /* ── GALLERY ── */
    .gallery-item { min-height: 200px; }
    .gallery-overlay-title { font-size: 1rem; }

    /* ── TESTIMONIALS ── */
    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.82rem; }

    /* ── CONTACT ── */
    .contact-info h2 { font-size: 2rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 0.95rem; padding: 0.85rem 1rem; }

    /* ── BOOKING CALENDAR ── */
    .booking-inner { padding: 1.5rem 1rem; }
    .cal-day { font-size: 0.7rem; }
    .cal-month-label { font-size: 0.95rem; }

    /* ── SECTION TITLES ── */
    .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

    /* ── FOOTER ── */
    .social-link { width: 40px; height: 40px; }
}