/* ═══════════════════════════════════════════════════════════════
   MS CATERING SERVICE — Complete Design System
   Premium South Indian Catering · Salem, Tamil Nadu
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & ROOT ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Brand Palette — Midnight Blue & Gold */
    --midnight:    #0F2347; /* Primary Royal Midnight Blue */
    --midnight-90: #0B1D3A;
    --midnight-80: #081B38; /* Secondary Deep Sapphire */
    --navy:        #1E3A5F;
    --gold:        #C89B3C; /* Luxury Gold */
    --gold-light:  #E6C06E; /* Champagne Gold */
    --gold-dark:   #A67C28;
    --warm-white:  #FAF7F2;
    --cream:       #F5F0E8;
    --ivory:       #FFF9F0;
    --charcoal:    #2C2C2C;
    --text:        #1A1A1A;
    --text-muted:  #6B6B6B;
    --text-light:  #9A9A9A;
    --border:      rgba(230, 192, 110, 0.15); /* Subtly tinted gold border */
    --white:       #FFFFFF;
    --success:     #2E7D4F;
    --overlay:     rgba(15, 35, 71, 0.85);

    /* Glassmorphism & Luxury Elements */
    --glass-bg:      linear-gradient(135deg, rgba(18, 39, 80, 0.45) 0%, rgba(8, 27, 56, 0.25) 100%);
    --glass-border:  rgba(230, 192, 110, 0.16);
    --glass-shadow:  inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 12px 36px rgba(0, 0, 0, 0.45);
    --glass-hover:   linear-gradient(135deg, rgba(18, 39, 80, 0.55) 0%, rgba(8, 27, 56, 0.3) 100%);
    
    /* Typography */
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Georgia', serif;
    --fw-light:    300;
    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --section-pad-lg: clamp(5.5rem, 10vw, 8rem);
    --container:   1200px;
    --gap:         2.5rem; /* Increased default gap for breathing room */

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Radius */
    --radius:    12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--warm-white); line-height: 1.7; overflow-x: hidden; }
#main-content { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--midnight); color: var(--white); padding: 0.75rem 1.5rem; border-radius: var(--radius); z-index: 9999; }
.skip-link:focus { top: 1rem; }

/* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--midnight); z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), visibility 1s ease, transform 1s ease;
}
.preloader-content {
    display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
.preloader-logo-wrap {
    animation: pulseLogo 2s infinite ease-in-out;
}
.preloader-logo {
    height: 180px; width: auto; border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(230, 192, 110, 0.3)); }
    100% { transform: scale(1); opacity: 0.8; }
}
.preloader-progress {
    width: 200px; height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px; overflow: hidden; position: relative;
}
.preloader-progress-bar {
    position: absolute; top: 0; left: 0;
    height: 100%;
    background: #e6c06e;
    border-radius: 3px;
    animation: sweepLine 1.5s ease-in-out infinite alternate;
}
@keyframes sweepLine {
    0% { left: 0%; width: 10%; }
    50% { width: 50%; }
    100% { left: 90%; width: 10%; }
}
body.loaded #preloader { 
    opacity: 0; visibility: hidden; transform: scale(1.05);
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11, 29, 58, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 192, 110, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(8, 20, 42, 0.95);
    border-bottom: 1px solid rgba(230, 192, 110, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); height: 100px; }
.header-logo { display: flex; align-items: center; }
.logo-img { height: 85px; width: auto; border-radius: 8px; transition: height 0.3s ease; }
.header-tagline {
    display: none;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .header-tagline {
        display: block;
    }
}
@media (max-width: 375px) {
    .header-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
        max-width: 190px;
        padding: 0 0.5rem;
    }
}
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 2rem; align-items: center; }
.nav-link { 
    font-size: 0.8rem; 
    font-weight: var(--fw-medium); 
    color: rgba(255, 255, 255, 0.75); 
    letter-spacing: 0.08em; 
    text-transform: uppercase;
    padding: 0.5rem 0; 
    position: relative; 
    transition: color 0.3s var(--ease); 
}
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold-light); transition: width 0.35s var(--ease-out); }
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }
.header-phone { font-size: 0.85rem; font-weight: var(--fw-semibold); color: var(--gold-light); letter-spacing: 0.05em; white-space: nowrap; transition: color 0.3s; }
.header-phone:hover { color: var(--white); }
.header-cta { 
    font-size: 0.8rem; 
    font-weight: var(--fw-semibold); 
    color: var(--midnight); 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); 
    padding: 0.6rem 1.4rem; 
    border-radius: 100px; 
    letter-spacing: 0.06em; 
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.25);
    transition: all 0.3s var(--ease); 
    white-space: nowrap; 
}
.header-cta:hover { 
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); 
    transform: translateY(-1px); 
    box-shadow: 0 6px 18px rgba(230, 192, 110, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(230, 192, 110, 0.2);
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    transition: all 0.3s var(--ease);
}
.mobile-toggle:hover {
    border-color: var(--gold);
    background: rgba(200, 155, 60, 0.1);
}
.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-light);
    position: absolute;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    border-radius: 2px;
}
.mobile-toggle span:nth-child(1) { transform: translateY(-5px); }
.mobile-toggle span:nth-child(2) { transform: translateY(0); }
.mobile-toggle span:nth-child(3) { transform: translateY(5px); }

.mobile-toggle.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

@media (max-width: 900px) {
    .mobile-toggle { display: flex; }
    .header-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        background: rgba(11, 29, 58, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out), visibility 0.4s;
        border-top: 1px solid rgba(230, 192, 110, 0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .header-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    .nav-list li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    }
    .header-nav.open .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }
    .header-nav.open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .header-nav.open .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .header-nav.open .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .header-nav.open .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .header-nav.open .nav-list li:nth-child(5) { transition-delay: 0.3s; }

    .nav-link {
        display: block;
        font-size: 1.3rem;
        font-weight: var(--fw-medium);
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1.2rem 0;
        width: 100%;
        transition: all 0.3s var(--ease);
    }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.active {
        color: var(--gold-light);
        letter-spacing: 0.12em;
        background: rgba(200, 155, 60, 0.1);
    }
    .header-actions { display: none; }
}


/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.88rem; font-weight: var(--fw-semibold); padding: 0.9rem 2.2rem;
    border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
    border: 1px solid transparent;
}
.btn-gold { 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); 
    color: var(--midnight); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.25);
}
.btn-gold:hover { 
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(230, 192, 110, 0.45); 
}
.btn-dark { 
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-90) 100%); 
    color: var(--white); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.btn-dark:hover { 
    background: linear-gradient(135deg, var(--midnight-90) 0%, var(--midnight-80) 100%); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(11, 29, 58, 0.35); 
}
.btn-outline { 
    border: 2px solid var(--midnight); 
    color: var(--midnight); 
    background: transparent; 
}
.btn-outline:hover { 
    background: var(--midnight); 
    color: var(--white); 
    transform: translateY(-2px); 
}
.btn-outline-light { 
    border: 2px solid rgba(255,255,255,0.4); 
    color: var(--white); 
    background: transparent; 
}
.btn-outline-light:hover { 
    background: var(--white); 
    color: var(--midnight); 
    transform: translateY(-2px); 
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }
.btn-outline-gold {
    border: 2px solid rgba(200, 155, 60, 0.5);
    color: var(--gold-light);
    background: transparent;
}
.btn-outline-gold:hover {
    background: rgba(200, 155, 60, 0.15);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}
.text-link { 
    font-size: 0.85rem; 
    font-weight: var(--fw-semibold); 
    color: var(--gold-dark); 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease); 
}
.text-link:hover { 
    color: var(--midnight); 
    letter-spacing: 0.08em; 
}


/* ── LABELS & HEADINGS ──────────────────────────────────────── */
.label {
    display: inline-block; font-size: 0.78rem; font-weight: var(--fw-bold); letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.2rem;
    padding-left: 2.5rem; position: relative;
}
.label::before { content: ''; position: absolute; left: 0; top: 50%; width: 2.2rem; height: 1px; background: var(--gold); }
.section-heading, .editorial-heading, .cinematic-heading { 
    font-family: var(--font-serif); 
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); 
    font-weight: 300; 
    color: var(--midnight); 
    line-height: 1.25; 
    margin-bottom: 1.5rem; 
    letter-spacing: 0.04em; 
    text-transform: uppercase;
}
.quote { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--gold-dark); border-left: 3px solid var(--gold); padding-left: 1.25rem; margin-top: 1.5rem; }


/* ═══════════════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh; display: grid; grid-template-columns: 1.1fr 0.9fr;
    align-items: center; background: var(--midnight); overflow: hidden;
    padding: 6rem clamp(1.5rem, 5vw, 4rem) 3rem;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(30, 58, 95, 0.45), transparent 75%); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-right: 2rem; }

/* ── HERO BRAND HEADING (Luxury Identity Statement) ─────────── */
.hero-brand-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15em;
    margin-bottom: 1.6rem;
    position: relative;
}

/* Decorative gold top rule */
.hero-brand-tag::before {
    content: '';
    display: block;
    width: 3.5rem;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 0.65rem;
}

/* Decorative gold bottom rule */
.hero-brand-tag::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 22rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,60,0.55), rgba(230,192,110,0.1), transparent);
    margin-top: 0.55rem;
}

/* Line 1: "M.S  CATERING SERVICE" */
.brand-line-1 {
    display: flex;
    align-items: baseline;
    gap: 0.28em;
    line-height: 1.1;
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.2vw, 3.1rem);
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

/* "M.S" — slightly larger, pure gold accent */
.brand-accent {
    font-size: 1.18em;          /* relative to line-1 */
    font-weight: 900;
    background: linear-gradient(160deg, #E6C06E 0%, #C89B3C 55%, #A67C28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 6px rgba(200,155,60,0.35));
    letter-spacing: 0.04em;
}

/* "CATERING SERVICE" — warm white, slightly lighter weight */
.brand-main {
    color: rgba(255, 252, 245, 0.96);
    font-weight: 700;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* Line 2: "AND EVENTS" — refined secondary sub-line */
.brand-line-2 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 600;
    font-size: clamp(0.72rem, 1.1vw, 1.0rem);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.88;
    padding-left: 0.1em;          /* optical alignment */
}

/* ── RESPONSIVE SCALING ─────────────────────────────────────── */

/* Laptop ~1280px */
@media (max-width: 1400px) {
    .brand-line-1 { font-size: clamp(1.5rem, 2.9vw, 2.7rem); }
    .brand-line-2 { font-size: clamp(0.68rem, 1.05vw, 0.95rem); }
}

/* Tablet ~900px */
@media (max-width: 900px) {
    .brand-line-1 { font-size: clamp(1.45rem, 4.2vw, 2.1rem); letter-spacing: 0.04em; }
    .brand-line-2 { font-size: clamp(0.62rem, 1.8vw, 0.85rem); letter-spacing: 0.28em; }
    .hero-brand-tag::after { max-width: 100%; }
}

/* Mobile ≤600px */
@media (max-width: 600px) {
    .brand-line-1 { font-size: clamp(1.35rem, 6vw, 1.75rem); letter-spacing: 0.03em; gap: 0.2em; }
    .brand-line-2 { font-size: clamp(0.58rem, 2.8vw, 0.75rem); letter-spacing: 0.22em; }
    .hero-brand-tag::before { width: 2.5rem; margin-bottom: 0.5rem; }
    .hero-brand-tag { margin-bottom: 1.2rem; }
}

/* Smallest screens 320px */
@media (max-width: 380px) {
    .brand-line-1 { font-size: 1.25rem; letter-spacing: 0.02em; flex-wrap: wrap; }
    .brand-accent  { font-size: 1.15em; }
    .brand-line-2 { font-size: 0.58rem; letter-spacing: 0.18em; }
}

.hero-label { display: inline-block; font-size: 0.78rem; font-weight: var(--fw-bold); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; padding-left: 2.5rem; position: relative; }

.hero-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 2rem; height: 1px; background: var(--gold); }
.hero-title { 
    font-family: 'Georgia', serif; 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 300; 
    text-transform: uppercase;
    color: var(--white); 
    line-height: 1.15; 
    margin-bottom: 1.5rem; 
    letter-spacing: 0.02em; 
}
.hero-title .line-1 { display: block; font-weight: 300; }
.hero-title .line-2 { display: block; color: var(--gold-light); font-weight: 400; font-style: italic; text-transform: none; font-family: 'Georgia', serif; }
.hero-desc { font-size: clamp(1rem, 1.2vw, 1.15rem); color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Custom Luxury Buttons */
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold-light);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--midnight);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 155, 60, 0.25);
}

/* Image Wrap & Dual Frames Layout */
.hero-image-wrap { 
    position: relative; 
    z-index: 2; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.hero-main-frame { 
    width: 75%; 
    aspect-ratio: 4/5; 
    border-radius: 24px; 
    overflow: hidden; 
    border: 2px solid rgba(200, 155, 60, 0.3); 
    box-shadow: 0 30px 70px rgba(0,0,0,0.55); 
    z-index: 2;
    position: relative;
    animation: floatSlow 8s ease-in-out infinite;
}
.hero-floating-frame {
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 48%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    border: 2.5px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    z-index: 3;
    animation: floatReverse 8s ease-in-out infinite;
}
.hero-floating-badge {
    position: absolute;
    top: 8%;
    right: 0%;
    background: rgba(8, 27, 56, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    animation: floatSlow 6s ease-in-out infinite 1s;
}
.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.badge-number {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}
.badge-text {
    font-size: 0.65rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-main-frame:hover .hero-img,
.hero-floating-frame:hover .hero-img {
    transform: scale(1.05);
}

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll span:first-child { font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Floating Animations Keyframes */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
}

@media (max-width: 1024px) {
    .hero-main-frame { width: 80%; }
    .hero-floating-frame { width: 45%; left: 0; }
    .hero-floating-badge { width: 95px; height: 95px; }
    .badge-number { font-size: 1.4rem; }
    .badge-text { font-size: 0.6rem; }
}

@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; min-height: auto; padding-bottom: 5rem; }
    .hero-content { padding-right: 0; display: flex; flex-direction: column; align-items: center; }
    .hero-label { padding-left: 0; }
    .hero-label::before { display: none; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-ctas { justify-content: center; }
    .hero-image-wrap { margin-top: 3.5rem; min-height: auto; height: 420px; }
    .hero-main-frame { width: 65%; aspect-ratio: 4/5; }
    .hero-floating-frame { width: 38%; left: 10%; bottom: 0; }
    .hero-floating-badge { top: 0; right: 12%; width: 90px; height: 90px; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero-image-wrap { height: 350px; }
    .hero-main-frame { width: 75%; }
    .hero-floating-frame { width: 44%; left: 5%; bottom: -5%; }
    .hero-floating-badge { top: -5%; right: 5%; width: 80px; height: 80px; }
}


/* ── HOME SERVICES PREVIEW ──────────────────────────────────── */
.home-services { padding: var(--section-pad) 0; background: var(--white); }
.services-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 2rem; }
.service-preview-card { 
    background: var(--white); 
    border-radius: var(--radius); 
    overflow: hidden; 
    transition: all 0.5s var(--ease-out); 
    border: 1px solid var(--border); 
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.service-preview-card:hover { 
    transform: translateY(-6px); 
    border-color: rgba(200, 155, 60, 0.4);
    box-shadow: 0 16px 40px rgba(200, 155, 60, 0.08); 
}
.spc-image { height: 220px; overflow: hidden; }
.spc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-preview-card:hover .spc-image img { transform: scale(1.06); }
.spc-content { padding: 1.5rem; }
.spc-content h3 { font-size: 1.15rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.75rem; }
.spc-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

@media (max-width: 768px) { .services-preview-grid { grid-template-columns: 1fr; } }


/* ── HOME ABOUT PREVIEW ─────────────────────────────────────── */
.home-about { padding: var(--section-pad) 0; background: var(--cream); }
.about-preview-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-preview-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-preview-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.about-preview-text p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

@media (max-width: 768px) { .about-preview-grid { grid-template-columns: 1fr; gap: 2rem; } }


/* ── HOME WHY ───────────────────────────────────────────────── */
.home-why { padding: var(--section-pad) 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.why-card { 
    padding: 2rem; 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    background: var(--white);
    transition: all 0.5s var(--ease-out); 
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.why-card:hover { 
    border-color: rgba(200, 155, 60, 0.4); 
    transform: translateY(-6px); 
    box-shadow: 0 16px 40px rgba(200, 155, 60, 0.08); 
}
.why-num { font-size: 2rem; font-weight: var(--fw-bold); color: var(--gold); display: block; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }


/* ── HOME GALLERY PREVIEW ───────────────────────────────────── */
.home-gallery { padding: var(--section-pad) 0; background: var(--warm-white); }
.gallery-preview-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.gp-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gp-item:hover img { transform: scale(1.05); }
.gp-large { grid-row: span 2; }
.gp-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(transparent, rgba(11,29,58,0.7)); color: var(--white); font-size: 0.85rem; font-weight: var(--fw-medium); }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 768px) { .gallery-preview-grid { grid-template-columns: 1fr 1fr; } .gp-large { grid-row: auto; } }


/* ── HOME TESTIMONIALS ──────────────────────────────────────── */
.home-testimonials { padding: var(--section-pad) 0; background: var(--midnight); }
.home-testimonials .label { color: var(--gold-light); }
.home-testimonials .label::before { background: var(--gold-light); }
.home-testimonials .section-heading { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 1rem; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; transition: all 0.35s var(--ease); }
.testimonial-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.testimonial-card p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-card cite { font-size: 0.95rem; font-weight: var(--fw-semibold); color: var(--gold-light); font-style: normal; }
.testimonial-card footer span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }


/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band { padding: var(--section-pad) 0; background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-80) 100%); text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); font-weight: 300; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 2rem; }
.cta-band-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (Sub-pages)
   ═══════════════════════════════════════════════════════════════ */
/* ── PAGE HERO (Sub-pages) ─────────────────────────────────── */
.page-hero {
    padding: 12rem 0 7rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 58, 0.82);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: block;
}
.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease);
}
.page-hero .breadcrumb a:hover {
    color: var(--gold);
}
.page-hero .label {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.page-hero .label::before {
    display: none; /* remove left border line since it's centered */
}
.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--fw-bold);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.page-hero-desc {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Individual page hero backgrounds */
.page-hero--about {
    background-image: url('assets/images/services/service_wedding.png');
}
.page-hero--services {
    background-image: url('assets/images/about/craft_kitchen.png');
}
.page-hero--gallery {
    background-image: url('images/WhatsApp Image 2026-07-03 at 10.40.46 AM.jpeg');
}
.page-hero--contact {
    background-image: url('assets/images/contact/contact_table.png');
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── FOUNDER ────────────────────────────────────────────────── */
.about-founder { padding: var(--section-pad) 0; background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.founder-image-wrap { position: relative; }
.founder-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.founder-accent { position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.founder-text p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

@media (max-width: 768px) { .founder-grid { grid-template-columns: 1fr; gap: 2rem; } .founder-accent { display: none; } }


/* ── PHILOSOPHY ─────────────────────────────────────────────── */
.about-philosophy { padding: var(--section-pad) 0; background: var(--cream); }
.philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.philosophy-card { 
    background: var(--white); 
    padding: 2rem; 
    border-radius: var(--radius); 
    border: 1px solid var(--border); 
    transition: all 0.5s var(--ease-out); 
    text-align: center; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.philosophy-card:hover { 
    transform: translateY(-6px); 
    border-color: rgba(200, 155, 60, 0.4);
    box-shadow: 0 16px 40px rgba(200, 155, 60, 0.08); 
}
.phi-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.philosophy-card h3 { font-size: 1.05rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.75rem; }
.philosophy-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) { .philosophy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .philosophy-grid { grid-template-columns: 1fr; } }


/* ── TIMELINE ───────────────────────────────────────────────── */
.about-timeline { padding: var(--section-pad) 0; background: var(--white); }
.timeline { position: relative; max-width: 700px; margin: 2rem auto 0; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--border)); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -3rem; top: 0.5rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); transform: translateX(-5px); }
.timeline-year { font-size: 0.8rem; font-weight: var(--fw-bold); color: var(--gold-dark); letter-spacing: 0.1em; display: block; margin-bottom: 0.25rem; }
.timeline-content h3 { font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }


/* ── NUMBERS ────────────────────────────────────────────────── */
.about-numbers { padding: var(--section-pad) 0; background: var(--midnight); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.number-card { padding: 2rem; }
.number-value { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: var(--fw-bold); color: var(--gold-light); display: block; margin-bottom: 0.5rem; }
.number-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 768px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }


/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════ */
.services-detail { padding: var(--section-pad) 0; background: var(--white); }
.service-detail-grid { display: flex; flex-direction: column; gap: 5rem; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.sb-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.sb-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.5s var(--ease); }
.service-block:hover .sb-image img { transform: scale(1.04); }
.sb-number { font-size: 3rem; font-weight: var(--fw-bold); color: var(--gold); opacity: 0.3; display: block; margin-bottom: 0.5rem; line-height: 1; }
.sb-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 1rem; }
.sb-content > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.sb-features { padding-left: 1.25rem; margin-bottom: 1.5rem; }
.sb-features li { font-size: 0.9rem; color: var(--text-muted); padding: 0.3rem 0; position: relative; list-style: none; padding-left: 1.25rem; }
.sb-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: var(--fw-bold); font-size: 0.85rem; }

@media (max-width: 900px) { .service-block, .service-block--reverse { grid-template-columns: 1fr; direction: ltr; } }


/* ── PROCESS ────────────────────────────────────────────────── */
.services-process { padding: var(--section-pad) 0; background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.process-step { text-align: center; padding: 2rem 1rem; }
.ps-num { font-size: 2.5rem; font-weight: var(--fw-bold); color: var(--gold); display: block; margin-bottom: 0.75rem; line-height: 1; }
.process-step h3 { font-size: 1.05rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */
.gallery-section { padding: var(--section-pad) 0; background: var(--white); }
.gallery-filters { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; justify-content: center; }
.filter-btn { font-size: 0.85rem; font-weight: var(--fw-semibold); padding: 0.85rem 1.6rem; border-radius: 100px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); transition: all 0.3s var(--ease); letter-spacing: 0.03em; }
.filter-btn.active, .filter-btn:hover { background: var(--midnight); color: var(--white); border-color: var(--midnight); }

/* Masonry */
.masonry-gallery { columns: 3; column-gap: 1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    background: linear-gradient(transparent 0%, rgba(11, 29, 58, 0.9) 100%);
    color: var(--white); font-size: 0.95rem; font-weight: var(--fw-semibold);
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.masonry-item:hover .masonry-overlay { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }

@media (max-width: 768px) { .masonry-gallery { columns: 2; } }
@media (max-width: 500px) { .masonry-gallery { columns: 1; } }


/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999; background: rgba(8, 20, 42, 0.96);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}
.lightbox.open {
    opacity: 1; pointer-events: auto;
}
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: var(--gold-light); z-index: 10;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(230, 192, 110, 0.2);
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease); cursor: pointer;
}
.lightbox-close:hover {
    background: rgba(230, 192, 110, 0.15); border-color: var(--gold); transform: scale(1.05); color: var(--white);
}
.lightbox-img-wrap {
    max-width: 85vw; max-height: 80vh; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5); border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(230, 192, 110, 0.2);
    transform: scale(0.95);
    transition: transform 0.4s var(--ease-out);
}
.lightbox.open .lightbox-img-wrap {
    transform: scale(1);
}
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; display: block; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.2rem; color: var(--gold-light);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(230, 192, 110, 0.15);
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease); cursor: pointer; z-index: 10;
}
.lightbox-nav:hover {
    background: rgba(230, 192, 110, 0.15); border-color: var(--gold); transform: translateY(-50%) scale(1.05); color: var(--white);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption {
    color: var(--gold-light); font-family: Georgia, serif; font-size: 1.1rem; letter-spacing: 0.03em;
    margin-top: 1.5rem; text-align: center; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — Premium Redesign
   ═══════════════════════════════════════════════════════════════ */

/* ── Owner + Contact Details Section ── */
.contact-owner-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(165deg, var(--midnight) 0%, #0a1e3d 55%, #112a50 100%);
    position: relative;
    overflow: hidden;
}
.contact-owner-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,155,60,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-owner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Owner Portrait Card */
.owner-portrait-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,155,60,0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s var(--ease-out);
}
.owner-portrait-card:hover {
    border-color: rgba(200,155,60,0.45);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(200,155,60,0.1);
}
.owner-portrait-frame {
    width: 180px; height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(200,155,60,0.1), 0 12px 40px rgba(0,0,0,0.3);
}
.owner-portrait-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.owner-portrait-card:hover .owner-portrait-frame img {
    transform: scale(1.06);
}
.owner-portrait-info h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}
.owner-portrait-info > span {
    display: block;
    font-size: 0.82rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 1rem;
}
.owner-portrait-info p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.owner-call-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--midnight);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.03em;
}
.owner-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,155,60,0.35);
}

/* Contact Info Stack */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-info-stack .section-heading {
    color: var(--white);
    margin-bottom: 0.5rem;
}
.contact-card-v2 {
    display: flex;
    gap: 1.15rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.contact-card-v2:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(200,155,60,0.35);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(200,155,60,0.08);
}
.ccv2-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(200,155,60,0.15) 0%, rgba(200,155,60,0.05) 100%);
    border: 1px solid rgba(200,155,60,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.ccv2-body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}
.ccv2-body a {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
    text-decoration: none;
    transition: color 0.3s;
}
.ccv2-body a:hover { color: var(--gold-light); }
.ccv2-body p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ── Map + Form Section ── */
.contact-section { padding: var(--section-pad) 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { 
    display: flex; 
    gap: 1rem; 
    align-items: flex-start; 
    padding: 1.25rem; 
    background: var(--white); 
    border-radius: var(--radius); 
    border: 1px solid var(--border); 
    transition: all 0.5s var(--ease-out); 
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.contact-card:hover { 
    border-color: rgba(200, 155, 60, 0.4); 
    transform: translateY(-4px); 
    box-shadow: 0 16px 40px rgba(200, 155, 60, 0.08); 
}
.cc-icon { font-size: 1.5rem; flex-shrink: 0; width: 48px; height: 48px; background: var(--cream); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.cc-details h3 { font-size: 0.9rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.25rem; }
.cc-details a { font-size: 0.95rem; color: var(--gold-dark); font-weight: var(--fw-semibold); display: block; margin-bottom: 0.25rem; }
.cc-details a:hover { color: var(--midnight); }
.cc-details p { font-size: 0.82rem; color: var(--text-muted); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 0.5rem; }

/* Form */
.contact-form-wrap { 
    background: var(--white); 
    padding: 3rem 2.5rem; 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border); 
    box-shadow: 0 12px 40px rgba(0,0,0,0.03);
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.8rem; font-weight: var(--fw-semibold); color: var(--midnight); margin-bottom: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem; 
    border: 1px solid rgba(200, 155, 60, 0.2); 
    border-radius: var(--radius-sm);
    background: var(--white); 
    color: var(--text); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--gold); 
    box-shadow: 0 0 12px rgba(200,155,60,0.15), inset 0 1px 2px rgba(0,0,0,0.01); 
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--success); color: var(--white); font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.4rem; font-weight: var(--fw-bold); color: var(--midnight); margin-bottom: 0.75rem; }
.form-success p { font-size: 0.95rem; color: var(--text-muted); }

/* ── Voices of Trust (Contact Page Testimonials) ── */
.contact-testimonials {
    padding: 5rem 0;
    background: linear-gradient(175deg, #0b1d3a 0%, var(--midnight) 100%);
}
.contact-testimonials .label {
    color: var(--gold-light);
}
.contact-testimonials .label::before {
    background: var(--gold-light);
}
.contact-testimonials .section-heading {
    color: var(--white);
}
.contact-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card-v2 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all 0.45s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.testimonial-card-v2::before {
    content: '"';
    position: absolute;
    top: -10px; right: 15px;
    font-size: 7rem;
    font-family: 'Georgia', serif;
    color: rgba(200,155,60,0.06);
    pointer-events: none;
    line-height: 1;
}
.testimonial-card-v2:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,155,60,0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(200,155,60,0.1);
}
.tcv2-stars {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}
.testimonial-card-v2 p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card-v2 footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.testimonial-card-v2 cite {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    font-style: normal;
}
.testimonial-card-v2 footer span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}

/* ── Contact Page Responsive ── */
@media (max-width: 900px) {
    .contact-owner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .owner-portrait-card { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-testimonials-grid { grid-template-columns: 1fr; }
    .contact-owner-section { padding: 3.5rem 0 3rem; }
    .owner-portrait-frame { width: 140px; height: 140px; }
}



/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--midnight); padding: 4rem 0 0; color: rgba(255,255,255,0.7); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-link { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo-img { height: 120px; width: auto; border-radius: 12px; display: block; transition: transform 0.3s var(--ease); }
.footer-logo-link:hover .footer-logo-img { transform: scale(1.03); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-heading { font-size: 0.8rem; font-weight: var(--fw-bold); color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }


/* ── STICKY MOBILE BAR ──────────────────────────────────────── */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--midnight); border-top: 1px solid rgba(255,255,255,0.1); }
.sticky-mobile-bar { display: grid; grid-template-columns: 1fr 1fr; }
.smb-btn { padding: 1rem; text-align: center; font-size: 0.88rem; font-weight: var(--fw-semibold); color: var(--white); transition: background 0.3s; }
.smb-call { background: var(--midnight); }
.smb-wa { background: #25D366; color: var(--white); }
.smb-btn:hover { filter: brightness(1.15); }

@media (min-width: 769px) { .sticky-mobile-bar { display: none; } }
@media (max-width: 768px) {
    .sticky-mobile-bar { display: grid; }
    .site-footer { padding-bottom: 4rem; }
}


/* ── ABOUT PAGE REDESIGN ────────────────────────────────────── */
.about-hero {
    padding: 12rem 0 7rem;
    background: linear-gradient(rgba(11, 29, 58, 0.82), rgba(11, 29, 58, 0.82)), url('assets/images/services/service_wedding.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
}
.about-hero .page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.about-hero .breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    display: block;
}
.about-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}
.about-hero .breadcrumb a:hover {
    color: var(--gold);
}
.about-hero .page-hero-desc {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story-editorial {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.about-story-editorial .editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.about-story-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    aspect-ratio: 4/5;
}
.about-story-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.about-story-editorial:hover .about-story-img-frame img {
    transform: scale(1.03);
}
.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.editorial-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--midnight);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.editorial-para {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}
.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.highlight-title {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
}
.highlight-desc {
    font-size: 0.95rem;
    color: var(--text);
}

.founder-editorial {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.founder-editorial .editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.founder-portrait-frame {
    position: relative;
    z-index: 1;
}
.founder-portrait-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(11, 29, 58, 0.15);
}
.founder-portrait-frame::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.founder-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.founder-quote {
    font-family: 'Georgia', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--gold-dark);
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}
.founder-name {
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    color: var(--midnight);
    margin-bottom: -1rem;
}
.founder-title {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.founder-message {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.journey-timeline {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.timeline-wrap {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
    transform: translateX(-50%);
}
.timeline-node {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    margin-bottom: 4rem;
}
.timeline-node:last-child {
    margin-bottom: 0;
}
.timeline-node::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-node:nth-child(even) .timeline-content-box {
    grid-column: 2;
}
.timeline-node:nth-child(even) .timeline-date {
    grid-column: 1;
    text-align: right;
}
.timeline-node:nth-child(odd) .timeline-content-box {
    grid-column: 1;
    text-align: right;
}
.timeline-node:nth-child(odd) .timeline-date {
    grid-column: 2;
    text-align: left;
}
.timeline-date {
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    color: var(--gold-dark);
    line-height: 1;
    margin-top: 0.25rem;
}
.timeline-content-box h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--midnight);
    margin-bottom: 0.5rem;
}
.timeline-content-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: inline-block;
    max-width: 320px;
}

.next-chapter-cinematic {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-90) 100%);
    color: var(--white);
    overflow: hidden;
}
.next-chapter-cinematic .editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}
.cinematic-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    aspect-ratio: 16/10;
}
.cinematic-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cinematic-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.cinematic-content .label {
    color: var(--gold-light);
}
.cinematic-content .label::before {
    background: var(--gold-light);
}
.cinematic-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.cinematic-quote {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    border-left: 2px solid var(--gold-light);
    padding-left: 1.25rem;
}
.cinematic-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.editorial-values {
    padding: var(--section-pad) 0;
    background: var(--warm-white);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.value-editorial-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.value-editorial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 155, 60, 0.4);
    box-shadow: 0 16px 40px rgba(200, 155, 60, 0.08);
}
.value-card-num {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
}
.value-editorial-card h3 {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--midnight);
}
.value-editorial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.values-list-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.values-list-inline li {
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
    color: var(--midnight);
    padding-left: 1.25rem;
    position: relative;
}
.values-list-inline li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.trust-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}
.trust-feature-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}
.trust-feature-block:hover {
    border-top-color: var(--gold);
    transform: translateY(-2px);
}
.trust-feature-block h3 {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--midnight);
    letter-spacing: -0.01em;
}
.trust-feature-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-services-preview {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.services-preview-grid-editorial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-editorial-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}
.service-editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.service-editorial-card:hover img {
    transform: scale(1.05);
}
.service-editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(11,29,58,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.service-editorial-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
}
.services-cta-wrap {
    text-align: center;
    margin-top: 3rem;
}

.brand-quote-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--midnight);
    text-align: center;
    position: relative;
}
.brand-quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200,155,60,0.1) 0%, transparent 60%);
}
.brand-quote-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.brand-quote-large {
    font-family: 'Georgia', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-style: italic;
    color: var(--gold-light);
    font-weight: var(--fw-light);
    letter-spacing: -0.01em;
}
.brand-quote-sub {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-cta-section {
    padding: var(--section-pad) 0;
    background: var(--white);
    text-align: center;
}
.about-cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--midnight);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}
.about-cta-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}
.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-story-editorial .editorial-grid,
    .founder-editorial .editorial-grid,
    .next-chapter-cinematic .editorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-story-img-frame {
        aspect-ratio: 16/10;
        max-width: 500px;
        margin: 0 auto;
    }
    .founder-portrait-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    .cinematic-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Timeline mobile styling */
    .timeline-line {
        left: 1rem;
    }
    .timeline-node {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 3rem;
        text-align: left !important;
        margin-bottom: 3rem;
    }
    .timeline-node::after {
        left: 1rem;
    }
    .timeline-node:nth-child(even) .timeline-content-box,
    .timeline-node:nth-child(even) .timeline-date,
    .timeline-node:nth-child(odd) .timeline-content-box,
    .timeline-node:nth-child(odd) .timeline-date {
        grid-column: 1;
        text-align: left !important;
    }
    .timeline-date {
        text-align: left !important;
        font-size: 1.4rem;
    }
    .timeline-content-box p {
        max-width: 100%;
    }
    
    /* About page grid stacking */
    .values-grid, .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .value-editorial-card {
        padding: 2.2rem 1.8rem;
    }
}

/* ── GLOBAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MENU PAGE SPECIAL STYLES (MIGRATED FROM MENU.HTML) ── */
.menu-page-body {
    background: radial-gradient(circle at center, #0F2347 0%, #061124 100%) !important;
    color: rgba(255, 255, 255, 0.85);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.menu-page-body .page-hero--menu {
    background-image: url('assets/images/hero/hero_food.png') !important;
    background-size: cover;
    background-position: center;
    padding: 15rem 0 10rem !important;
    position: relative;
}

.menu-page-body .page-hero::before {
    background: linear-gradient(to bottom, rgba(5, 17, 36, 0.75) 0%, rgba(6, 17, 36, 0.95) 100%) !important;
}

.menu-page-body .page-hero-title {
    font-family: 'Georgia', serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.menu-page-body .page-hero-desc {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    font-weight: 300;
}

.menu-search-filter-section {
    padding: 2.2rem 0;
    position: sticky;
    top: 76px;
    z-index: 100;
    background: rgba(8, 24, 52, 0.8) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(230, 192, 110, 0.2) !important;
    box-shadow: 0 12px 40px rgba(5, 13, 27, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-bar-wrap {
    position: relative;
    max-width: 650px;
    margin: 0 auto 1.8rem;
}

.search-bar-wrap input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.8rem;
    border-radius: 100px;
    border: 1px solid rgba(230, 192, 110, 0.25);
    background: rgba(15, 35, 71, 0.45);
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 2px 4px rgba(0,0,0,0.2);
}

.search-bar-wrap input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: rgba(15, 35, 71, 0.7);
    box-shadow: 0 12px 35px rgba(230, 192, 110, 0.2), inset 0 2px 4px rgba(0,0,0,0.1);
}

.search-bar-wrap::before {
    content: '🔍';
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: 0.5;
    filter: sepia(0.8) saturate(2) hue-rotate(330deg);
    transition: opacity 0.3s;
}

.search-bar-wrap:focus-within::before {
    opacity: 0.85;
}

.filters-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-scroll-btn {
    background: rgba(200, 155, 60, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(230, 192, 110, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.filter-scroll-btn:hover {
    background: var(--gold);
    color: var(--midnight);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(200, 155, 60, 0.45);
}

.scroll-left-btn { left: -15px; }
.scroll-right-btn { right: -15px; }

.filters-container {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 1.8rem;
    width: 100%;
}

.filters-container::-webkit-scrollbar {
    display: none;
}

.menu-filter-btn {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    border: 1px solid rgba(230, 192, 110, 0.2);
    background: rgba(18, 39, 80, 0.25);
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}

.menu-filter-btn.active, 
.menu-filter-btn:hover {
    background: var(--gold) !important;
    color: var(--midnight) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 6px 18px rgba(200, 155, 60, 0.35);
    transform: translateY(-1px);
}

.menu-section {
    padding: 5.5rem 0;
    border-bottom: 1px solid rgba(230, 192, 110, 0.1);
}

.menu-section-title {
    font-family: 'Georgia', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(230, 192, 110, 0.15);
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.menu-card {
    background: linear-gradient(135deg, rgba(18, 39, 80, 0.45) 0%, rgba(8, 27, 56, 0.2) 100%) !important;
    border: 1px solid rgba(230, 192, 110, 0.16) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.2rem 2rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 12px 36px rgba(0, 0, 0, 0.45) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 192, 110, 0.4), transparent);
    opacity: 0.8;
}

.menu-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(230, 192, 110, 0.4) !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 
                0 20px 48px rgba(0, 0, 0, 0.55), 
                0 0 25px rgba(230, 192, 110, 0.08) !important;
    background: linear-gradient(135deg, rgba(18, 39, 80, 0.55) 0%, rgba(8, 27, 56, 0.3) 100%) !important;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.25rem;
}

.menu-card-title {
    font-family: 'Georgia', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.menu-card-price {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold-light);
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.15) 0%, rgba(200, 155, 60, 0.05) 100%);
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    border: 1px solid rgba(230, 192, 110, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.menu-card-items-list {
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.menu-card-items-list li {
    list-style-type: none;
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.menu-card-items-list li:last-child {
    border-bottom: none;
}

.menu-card-items-list li::before {
    content: '•';
    position: absolute;
    left: 0.1rem;
    color: var(--gold-light);
    font-size: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.menu-card-items-list li:hover {
    color: var(--white);
    padding-left: 1.6rem;
}

.menu-card-items-list li:hover::before {
    color: var(--gold);
    opacity: 1;
    left: 0.3rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    margin-top: auto;
}

.menu-card-tag {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.menu-card-event {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.03em;
}

.menu-page-body .no-results {
    display: none;
    text-align: center;
    padding: 6rem 2rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .menu-page-body .menu-search-filter-section {
        top: 76px;
        padding: 1.5rem 0;
    }
    .menu-page-body .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .menu-page-body .menu-card {
        padding: 1.8rem 1.5rem !important;
    }
    .menu-page-body .menu-section {
        padding: 4rem 0;
    }
}

/* Menu Page Inline Photo Cards */
.menu-card--photo {
    padding: 0 !important;
    overflow: hidden;
    min-height: 380px;
    position: relative;
    border: 1px solid rgba(230, 192, 110, 0.25) !important;
    display: flex;
    flex-direction: column;
}
.menu-card--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-card--photo:hover img {
    transform: scale(1.06);
}
.menu-card-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(8, 20, 42, 0.95) 0%, transparent 100%);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    *:not(#preloader):not(#preloader *), *:not(#preloader):not(#preloader *)::before, *:not(#preloader):not(#preloader *)::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.developer-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.developer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ── Hero Brand Tagline (Desktop empty space fix) ── */
.hero-brand-tag {
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light) 0%, #ffd700 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    opacity: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.4));
    font-family: 'DM Sans', sans-serif;
}

/* ── Guiding Inspiration Tribute Section ── */
.tribute-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--midnight) 0%, #0c203f 50%, var(--midnight) 100%);
    position: relative;
    border-top: 1px solid rgba(200, 155, 60, 0.15);
    border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}
.tribute-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.tribute-grid--reverse {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.tribute-portrait-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, border-color 0.5s ease;
}
.tribute-portrait-frame:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
}
.tribute-portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.tribute-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(8, 20, 42, 0.95) 0%, rgba(8, 20, 42, 0.4) 100%);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 1.25rem 1rem;
    border-top: 1px solid rgba(200, 155, 60, 0.15);
}
@media (max-width: 768px) {
    .tribute-grid,
    .tribute-grid--reverse {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }
}

/* ── Global Utility ──────────────────────────────────────────── */
.hidden { display: none !important; }

/* -- CATERING PACKAGES ----------------------------------------- */
.packages-section {
    padding: 4rem 0 2rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.package-card {
    background: rgba(18, 39, 80, 0.4);
    border: 1px solid rgba(230, 192, 110, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(230, 192, 110, 0.5);
}
.package-card.gold-package {
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(230, 192, 110, 0.15);
}
.package-card.gold-package:hover {
    box-shadow: 0 20px 40px rgba(230, 192, 110, 0.25);
}
.package-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}
.package-card:hover .package-image img {
    transform: scale(1.08);
}
.package-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.package-card:hover .package-overlay {
    opacity: 1;
}
.view-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 50px;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
}
.package-info {
    padding: 1.5rem;
    flex-grow: 1;
}
.package-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.popular-tag {
    font-size: 0.7rem;
    background: var(--gold);
    color: var(--midnight);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.package-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(230, 192, 110, 0.3);
    opacity: 0;
}
.lightbox-content img.fade-in {
    animation: imageFadeIn 0.4s ease forwards;
}
@keyframes imageFadeIn {
    0% { opacity: 0; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}
.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    pointer-events: auto;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(230, 192, 110, 0.6);
    color: var(--gold);
    font-size: 2.5rem;
    padding: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
    backdrop-filter: blur(4px);
    pointer-events: auto;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--midnight);
}
.lightbox-prev { left: 2vw; }
.lightbox-next { right: 2vw; }
.lightbox-caption {
    margin-top: 1rem;
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; width: 45px; height: 45px; font-size: 1.8rem; }
    .lightbox-next { right: 10px; width: 45px; height: 45px; font-size: 1.8rem; }
    .lightbox-close { top: 1.5rem; right: 1.5rem; }
}


