@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-plum-base: #110512; /* Deep, luxury dark plum background */
    --bg-plum-dark: #080209; /* Deepest plum for absolute shadow depth */
    --bg-plum-card: #180a19; /* Lighter plum for layered editorial cards */
    --bg-plum-glass: rgba(24, 10, 25, 0.7);
    --color-coral: #FF6F61; /* Luxury warm coral accent */
    --color-coral-rgb: 255, 111, 97;
    --color-pink-plum: #D83A7F; /* Intermediate rose-plum for smooth gradients */
    --color-gold: #D4AF37; /* Editorial metallic gold highlights */
    --coral-gradient: linear-gradient(135deg, #FF6F61 0%, #D83A7F 100%);
    --plum-gradient: linear-gradient(180deg, #110512 0%, #080209 100%);
    --border-light: rgba(255, 111, 97, 0.15); /* Soft coral-tinted thin borders */
    --border-strong: rgba(255, 111, 97, 0.3);
    --glass-blur: blur(16px);
    --shadow-soft: 0 10px 40px rgba(255, 111, 97, 0.04);
    --shadow-glow: 0 15px 35px rgba(255, 111, 97, 0.15);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.6);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-plum-base);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    background-color: var(--bg-plum-base);
    color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.text-white { color: #FFFFFF; }
.text-cream { color: #EADCEB; }
.text-muted { color: #A38DA6; }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-plum-dark);
}
::-webkit-scrollbar-thumb {
    background: #2b112c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-coral);
}

/* Animation Base Utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Promo Announcement Bar */
.promo-bar {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #110512 0%, #FF6F61 50%, #110512 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 111, 97, 0.2);
}

.promo-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.promo-marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 45s linear infinite;
}

.promo-marquee-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 2px;
    padding-right: 4rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header & Navigation Bar */
header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(17, 5, 18, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 0;
    padding: 0.9rem 5%;
    background-color: rgba(17, 5, 18, 0.95);
    border-bottom: 1px solid rgba(255, 111, 97, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: flex-end;
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.8rem;
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none !important;
}

.logo, .logo:hover, .logo:active, .logo:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

.logo-nail {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
    font-family: var(--font-serif);
}

.logo-edit {
    display: inline-flex;
    align-items: flex-end;
    line-height: 0.9;
}

.logo-e {
    color: #00B4D8; /* Default stylized sky blue color from original logo asset */
    font-size: 2.3rem;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 0.8;
}

.logo-dit {
    font-weight: 400;
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-left: -0.05rem;
    margin-bottom: 0.1rem;
    text-transform: lowercase;
    font-family: var(--font-serif);
}

.logo-tm {
    font-size: 0.52rem;
    font-weight: 700;
    vertical-align: super;
    margin-left: 0.15rem;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.25rem;
    font-family: var(--font-serif);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--coral-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
    color: #FFFFFF;
}

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

/* Header Booking CTA */
.header-cta .btn-primary {
    background: var(--coral-gradient);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.2);
    transition: var(--transition-smooth);
}

.header-cta .btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-smooth);
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-cta .btn-primary:hover svg {
    transform: translateX(3px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

/* Mobile responsive navigation styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--bg-plum-dark);
        border-left: 1px solid var(--border-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1001;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-premium);
    }

    .nav-links.active {
        right: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Primary Editorial Buttons */
.btn-coral {
    background: var(--coral-gradient);
    color: #FFFFFF;
    font-weight: 500;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 111, 97, 0.25);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-coral svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-smooth);
}

.btn-coral:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.btn-coral:hover svg {
    transform: translateX(5px);
}

.btn-outline-coral {
    border: 1px solid var(--border-strong);
    color: #FFFFFF;
    font-weight: 500;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.btn-outline-coral svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-smooth);
}

.btn-outline-coral:hover {
    background-color: rgba(255, 111, 97, 0.08);
    border-color: var(--color-coral);
    transform: translateY(-3px);
}

.btn-outline-coral:hover svg {
    transform: translateX(4px);
}

/* Layout Decor Elements */
.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-coral);
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.5px;
    background: var(--color-coral);
}

/* ──────────────────────────────────
   1. HERO SECTION
   ────────────────────────────────── */
.hero-about {
    position: relative;
    min-height: 100vh;
    padding: 12rem 5% 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, rgba(255, 111, 97, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(216, 58, 127, 0.04) 0%, transparent 50%),
                var(--plum-gradient);
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 111, 97, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-grid {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text-col {
    z-index: 2;
}

.hero-about-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-about-desc {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--text-cream);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-action-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Cinematic Layout Collage (Asymmetric Grid) */
.hero-visuals-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 580px;
}

.collage-main-frame {
    position: absolute;
    width: 85%;
    height: 82%;
    top: 0;
    left: 0;
    border-radius: 250px 250px 24px 24px; /* Regal Arch shape */
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.collage-main-frame img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: var(--transition-slow);
}

.collage-main-frame:hover img {
    transform: scale(1.06);
}

.collage-offset-frame {
    position: absolute;
    width: 50%;
    height: 48%;
    bottom: 0;
    right: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-glow);
    z-index: 3;
    transition: var(--transition-smooth);
}

.collage-offset-frame img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.collage-offset-frame:hover {
    transform: translateY(-8px) scale(1.02);
}

.collage-offset-frame:hover img {
    transform: scale(1.08);
}

/* Floating abstract ring */
.collage-circle-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(255, 111, 97, 0.4);
    border-radius: 50%;
    top: -30px;
    right: -20px;
    z-index: 1;
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-action-row {
        justify-content: center;
    }

    .hero-visuals-col {
        justify-content: center;
        margin-top: 2rem;
    }

    .collage-container {
        height: 500px;
        max-width: 440px;
    }
}

/* ──────────────────────────────────
   2. BRAND STORY SECTION
   ────────────────────────────────── */
.story-section {
    position: relative;
    padding: 10rem 5%;
    background-color: var(--bg-plum-dark);
}

.story-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.story-image-col {
    position: relative;
}

/* Elegant Arched Frame for story image */
.story-arch-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 560px;
    border-radius: 230px 230px 20px 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.story-arch-frame img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.story-arch-frame:hover img {
    transform: scale(1.05);
}

/* Decorative rotating text badge */
.rotating-badge-about {
    position: absolute;
    width: 140px;
    height: 140px;
    background-color: var(--bg-plum-base);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    bottom: -30px;
    left: -20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.rotating-badge-about svg {
    width: 100%;
    height: 100%;
    animation: rotateClockwise 20s linear infinite;
}

.rotating-badge-about .badge-star {
    position: absolute;
    color: var(--color-coral);
    font-size: 1.5rem;
}

@keyframes rotateClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.story-text-col {
    z-index: 2;
}

.story-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Editorial Drop Cap */
.story-paragraphs p:first-of-type::first-letter {
    font-family: var(--font-serif);
    float: left;
    font-size: 4.2rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 12px;
    color: var(--color-coral);
    font-weight: 700;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-image-col {
        display: flex;
        justify-content: center;
        order: 2;
    }

    .story-arch-frame {
        height: 480px;
    }

    .story-text-col {
        order: 1;
    }
}

/* ──────────────────────────────────
   3. LEGACY METRICS SECTION
   ────────────────────────────────── */
.metrics-section {
    position: relative;
    padding: 8rem 5%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 111, 97, 0.05) 0%, transparent 60%),
                var(--bg-plum-base);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.metrics-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-plum-card);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--coral-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-coral);
    box-shadow: var(--shadow-glow);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--coral-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ──────────────────────────────────
   4. STUDIO EXPERIENCE SECTION
   ────────────────────────────────── */
.experience-section {
    position: relative;
    padding: 10rem 5%;
    background-color: var(--bg-plum-dark);
}

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

/* Giant elegant quote block */
.experience-quote-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 8rem;
    position: relative;
}

.experience-quote-block::before {
    content: '“';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 10rem;
    color: rgba(255, 111, 97, 0.15);
    line-height: 1;
}

.experience-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.4;
    color: #FFFFFF;
    font-weight: 400;
}

/* Layered Image layout */
.experience-gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.experience-widescreen-frame {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

.experience-widescreen-frame img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.experience-widescreen-frame:hover img {
    transform: scale(1.04);
}

.experience-layered-card {
    position: relative;
}

/* Staggered overlapping picture frame */
.experience-overlay-frame {
    position: relative;
    width: 90%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-glow);
    z-index: 2;
    transform: translateX(-20px);
}

.experience-overlay-frame img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.experience-overlay-frame:hover img {
    transform: scale(1.06);
}

.experience-deco-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--color-coral) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    top: -30px;
    right: -10px;
    z-index: 1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .experience-gallery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-widescreen-frame {
        height: 320px;
    }

    .experience-overlay-frame {
        transform: translateX(0);
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }
}

/* ──────────────────────────────────
   5. CUSTOMER REVIEWS SECTION
   ────────────────────────────────── */
.reviews-section {
    position: relative;
    padding: 10rem 5%;
    background: radial-gradient(circle at 10% 80%, rgba(216, 58, 127, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(255, 111, 97, 0.05) 0%, transparent 50%),
                var(--bg-plum-base);
}

.reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.reviews-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-top: 1rem;
}

/* Staggered Masonry Review Layout */
.reviews-wall {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background: var(--bg-plum-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.2), transparent 40%, rgba(216, 58, 127, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Testimonials Stagger / Offsets */
.review-card:nth-child(2) {
    transform: translateY(30px);
}

.review-card:nth-child(3) {
    transform: translateY(-10px);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-glow);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    color: var(--color-coral);
    font-size: 0.95rem;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-coral);
    font-weight: 600;
}

@media (max-width: 992px) {
    .reviews-wall {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card:nth-child(2), .review-card:nth-child(3) {
        transform: translateY(0);
    }
}

/* ──────────────────────────────────
   6. HYGIENE & SAFETY SECTION
   ────────────────────────────────── */
.safety-section {
    position: relative;
    padding: 10rem 5%;
    background-color: var(--bg-plum-dark);
}

.safety-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.safety-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-top: 1rem;
}

.safety-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.safety-card {
    background-color: var(--bg-plum-card);
    border: 1px solid var(--border-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.safety-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-coral);
    box-shadow: var(--shadow-glow);
}

.safety-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 111, 97, 0.08);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--color-coral);
    transition: var(--transition-smooth);
}

.safety-card:hover .safety-icon-wrapper {
    background-color: var(--color-coral);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.safety-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.safety-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.safety-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ──────────────────────────────────
   7. FINAL CTA SECTION
   ────────────────────────────────── */
.final-cta {
    position: relative;
    padding: 12rem 5%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 111, 97, 0.15) 0%, transparent 60%),
                var(--bg-plum-base);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 111, 97, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

/* Ambient glow ball in background */
.cta-glow-mesh {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 111, 97, 0.12) 0%, rgba(216, 58, 127, 0.05) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* ──────────────────────────────────
   FOOTER SECTION
   ────────────────────────────────── */
footer {
    background-color: var(--bg-plum-dark);
    padding: 6rem 5% 3rem;
    border-top: 1px solid var(--border-light);
    color: #FFFFFF;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand-col {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-col-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-coral);
    margin-bottom: 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-cream);
    font-size: 0.95rem;
}

.footer-info-item .info-icon {
    color: var(--color-coral);
    flex-shrink: 0;
}

.footer-info-item .info-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.footer-info-item strong {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-phone-line {
    display: block;
    font-variant-numeric: tabular-nums;
    line-height: 1.55;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn:hover {
    color: #FFFFFF;
    background-color: var(--color-coral);
    border-color: var(--color-coral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 111, 97, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ──────────────────────────────────
   BOOKING MODAL (PREMIUM PLUM THEME)
   ────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 5, 18, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-card {
    background-color: var(--bg-plum-base);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    width: 92%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollbar in modal if screen is small */
.modal-card::-webkit-scrollbar {
    width: 4px;
}
.modal-card::-webkit-scrollbar-thumb {
    background: rgba(255, 111, 97, 0.2);
    border-radius: 2px;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: var(--color-coral);
    color: #FFFFFF;
    border-color: var(--color-coral);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input, .form-group select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-coral);
    box-shadow: var(--shadow-glow);
    background-color: rgba(255, 255, 255, 0.05);
    outline: none;
}

/* Service options styling */
.form-group select option {
    background-color: var(--bg-plum-base);
    color: #FFFFFF;
}

/* Success Card State styling */
.success-card {
    text-align: center;
    padding: 1rem 0;
}

.success-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(255, 111, 97, 0.1);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    font-size: 2.2rem;
    margin: 0 auto 2rem;
}

.success-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.success-desc {
    color: var(--text-cream);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.success-details-list {
    background-color: var(--bg-plum-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    font-weight: 500;
    color: #FFFFFF;
}

.success-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-outline-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem;
}

.btn-outline-text:hover {
    color: #FFFFFF;
}

/* ──────────────────────────────────
   6.5 INSTAGRAM GALLERY SECTION
   ────────────────────────────────── */
.gallery-section {
    padding: 8rem 5% 5rem 5%;
    background-color: var(--bg-plum-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.gallery-header {
    margin-bottom: 5rem;
}

.gallery-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #FFFFFF;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.gallery-subtitle a {
    color: var(--color-coral);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.gallery-subtitle a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-coral);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-subtitle a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Layered stack layout */
.gallery-layered-container {
    position: relative;
    max-width: 1000px;
    height: 520px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base polaroid card styling */
.gallery-photo-card {
    position: absolute;
    width: 260px;
    background-color: #1c0c1e; /* Dark plum matching theme but slightly lighter */
    border: 1px solid rgba(255, 111, 97, 0.15);
    border-radius: 8px;
    padding: 12px 12px 24px 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, z-index 0.1s ease;
    cursor: pointer;
}

.polaroid-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.polaroid-inner img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.polaroid-caption {
    margin-top: 15px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: #EADCEB;
    letter-spacing: 0.5px;
}

/* Precise asymmetrical coordinates for organic layering/scattering */
.p-1 {
    transform: translate(-280px, -20px) rotate(-8deg);
    z-index: 1;
}

.p-2 {
    transform: translate(-140px, 30px) rotate(4deg);
    z-index: 3;
}

.p-3 {
    transform: translate(0px, -30px) rotate(-3deg);
    z-index: 5;
}

.p-4 {
    transform: translate(140px, 40px) rotate(6deg);
    z-index: 4;
}

.p-5 {
    transform: translate(280px, -15px) rotate(-5deg);
    z-index: 2;
}

.p-6 {
    /* Centered base background card, slightly offset */
    transform: translate(-60px, -60px) rotate(12deg);
    z-index: 0;
    opacity: 0.75;
}

/* Hovering details - lift up and clear rotation, glow, and rise to top */
.gallery-photo-card:hover {
    transform: scale(1.18) translate(var(--hover-tx, 0), var(--hover-ty, -40px)) rotate(0deg) !important;
    z-index: 100;
    box-shadow: 0 30px 60px rgba(255, 111, 97, 0.3);
    border-color: rgba(255, 111, 97, 0.6);
}

/* Fine-tune translation on individual hover states for perfect spreading effect */
.p-1:hover { --hover-tx: -300px; --hover-ty: -50px; }
.p-2:hover { --hover-tx: -150px; --hover-ty: -50px; }
.p-3:hover { --hover-tx: 0px; --hover-ty: -70px; }
.p-4:hover { --hover-tx: 150px; --hover-ty: -50px; }
.p-5:hover { --hover-tx: 300px; --hover-ty: -50px; }
.p-6:hover { --hover-tx: -70px; --hover-ty: -90px; }

/* Responsive adjustments for mobile so it looks flawless on any screen size */
@media (max-width: 992px) {
    .gallery-layered-container {
        height: auto;
        min-height: 400px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }
    .gallery-photo-card {
        position: relative;
        width: 100%;
        transform: none !important;
        margin: 0;
    }
    .gallery-photo-card:hover {
        transform: translateY(-10px) scale(1.05) !important;
    }
}

@media (max-width: 600px) {
    .gallery-layered-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .gallery-layered-container {
        grid-template-columns: 1fr;
    }
}
