/* ============================================================================
   FONTS
   — Canela (self-hosted, licensed from Commercial Type)
     Place your Canela font files in /assets/fonts/canela/
   — DM Sans via Google Fonts (body / UI text)
   ============================================================================ */

/* ── Canela — self-hosted @font-face ─────────────────────────────────────── */
@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-Light.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-Light.woff')  format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-LightItalic.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-LightItalic.woff')  format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-Regular.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-Regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-RegularItalic.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-RegularItalic.woff')  format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-Medium.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-Medium.woff')  format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-Bold.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-Bold.woff')  format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/canela/Canela-BoldItalic.woff2') format('woff2'),
         url('/assets/fonts/canela/Canela-BoldItalic.woff')  format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ── DM Sans — Google Fonts (body / UI / labels) ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================================
   DESIGN TOKENS — Updated Colour Palette (Maroon + Cream)
   ============================================================================ */
:root {
    /* ── Maroon Section Colors ───────────────────────────────────────────── */
    --maroon-bg: #3D000E;
    --maroon-heading: #F5EBDD;
    --maroon-text: #EADFD6;
    --maroon-btn-bg: #E8D9A8;
    --maroon-btn-text: #000000;
    --maroon-btn-hover: #DCCB94;

    /* ── Cream Section Colors ────────────────────────────────────────────── */
    --cream-bg: #E8D9A8;
    --cream-heading: #1A1A1A;
    --cream-text: #333333;
    --cream-btn-bg: #000000;
    --cream-btn-text: #FFFFFF;
    --cream-btn-hover: #1F1F1F;

    /* ── Legacy variable mapping (for backward compatibility) ────────────── */
    --gold: #E8D9A8;              /* Updated to cream beige */
    --gold-light: #DCCB94;        /* Hover state for cream */
    --gold-glow: #E8D9A8;
    --gold-dark: #DCCB94;          /* Deeper cream for gradients */

    --dark-bg: #6B0018;            /* Updated to maroon */
    --dark-bg-alt: #6B0018;        /* Same maroon for alt sections */
    --secondary-bg: #6B0018;       /* Maroon */

    --border-color: #4D0012;       /* Darker maroon for borders */
    --white: #FFFFFF;
    --text-primary: #F5EBDD;        /* Maroon section heading color */
    --text-secondary: #EADFD6;      /* Maroon section body text */
    --text-muted: #DCCB94;          /* Muted cream */
    --text-light: #EADFD6;          /* Light text on maroon */

    /* ── Destructive ──────────────────────────────────────────────────────── */
    --destructive: #E05555;

    /* ── Sharp edges ──────────────────────────────────────────────────────── */
    --radius: 0px;

    /* ── Typography ───────────────────────────────────────────────────────── */
--font-heading: 'Cormorant Garamond', 'Georgia', serif;
--font-serif:   'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Cormorant Garamond', 'Georgia', serif;
}

/* ============================================================================
   SECTION WRAPPERS — Alternating Maroon & Cream
   ============================================================================ */
.section-maroon {
    background: var(--maroon-bg);
    color: var(--maroon-text);
    padding: 100px 0;
}

.section-maroon h1, 
.section-maroon h2, 
.section-maroon h3, 
.section-maroon h4, 
.section-maroon h5, 
.section-maroon h6 {
    color: var(--maroon-heading);
}

.section-cream {
    background: var(--cream-bg);
    color: var(--cream-text);
    padding: 100px 0;
}

.section-cream h1, 
.section-cream h2, 
.section-cream h3, 
.section-cream h4, 
.section-cream h5, 
.section-cream h6 {
    color: var(--cream-heading);
}

/* Legacy section classes mapped to new colors */
.section-dark {
    background: var(--maroon-bg);
    color: var(--maroon-text);
    padding: 100px 0;
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4, 
.section-dark h5, 
.section-dark h6 {
    color: var(--maroon-heading);
}

.section-dark-alt {
    background: var(--maroon-bg);
    color: var(--maroon-text);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-light {
    background: var(--cream-bg);
    color: var(--cream-text);
    padding: 100px 0;
}

.section-light h1, 
.section-light h2, 
.section-light h3, 
.section-light h4, 
.section-light h5, 
.section-light h6 {
    color: var(--cream-heading);
}

/* ============================================================================
   BUTTONS — Updated for Maroon & Cream sections
   ============================================================================ */

/* Maroon Section Buttons */
.btn-maroon {
    display: inline-block;
    background: var(--maroon-btn-bg);
    color: var(--maroon-btn-text);
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-maroon:hover {
    background: var(--maroon-btn-hover);
    color: var(--maroon-btn-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Cream Section Buttons */
.btn-cream {
    display: inline-block;
    background: var(--cream-btn-bg);
    color: var(--cream-btn-text);
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-cream:hover {
    background: var(--cream-btn-hover);
    color: var(--cream-btn-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Legacy button mapping */
.btn-gold {
    background: var(--maroon-btn-bg);
    color: var(--maroon-btn-text);
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--maroon-btn-hover);
    color: var(--maroon-btn-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--maroon-btn-bg);
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: 1px solid var(--maroon-btn-bg);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: var(--maroon-btn-bg);
    color: var(--maroon-btn-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-cream .btn-gold-outline {
    color: var(--cream-btn-bg);
    border-color: var(--cream-btn-bg);
}

.section-cream .btn-gold-outline:hover {
    background: var(--cream-btn-bg);
    color: var(--cream-btn-text);
}

.btn-sm-gold {
    background: var(--maroon-btn-bg);
    color: var(--maroon-btn-text);
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-sm-gold:hover { background: var(--maroon-btn-hover); }

.section-cream .btn-sm-gold {
    background: var(--cream-btn-bg);
    color: var(--cream-btn-text);
}
.section-cream .btn-sm-gold:hover {
    background: var(--cream-btn-hover);
}

.btn-sm-danger {
    background: var(--destructive);
    color: var(--white);
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-sm-danger:hover { background: #c82333; }

/* ============================================================================
   GLOBAL BASE
   ============================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    border-color: var(--border-color);
}

html { 
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    font-size: 20px;
    background: var(--maroon-bg);
    color: var(--maroon-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection {
    background: rgba(232, 217, 168, 0.30);
    color: var(--maroon-bg);
}

/* ── Custom Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 8px; }
::-webkit-scrollbar-track        { background: #4D0012; }
::-webkit-scrollbar-thumb        { background: #E8D9A8; border-radius: 0px; }
::-webkit-scrollbar-thumb:hover  { background: #DCCB94; }

/* ============================================================================
   TYPOGRAPHY — CANELA HEADINGS
   Canela is a transitional serif with ink-trap details and editorial character.
   It works best at slightly looser tracking and generous line-height.
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--maroon-heading);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.section-cream h1, 
.section-cream h2, 
.section-cream h3, 
.section-cream h4, 
.section-cream h5, 
.section-cream h6 {
    color: var(--cream-heading);
}

/* Italic variant helper — Canela italic is exceptionally beautiful */
.font-italic-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
}

.font-serif-display {
    font-family: var(--font-serif);
    font-weight: 300;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.glass-panel {
    background: rgba(107, 0, 24, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
}

.text-glow {
    text-shadow: 0 0 20px rgba(232, 217, 168, 0.50);
}

.cinematic-shadow {
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}

.gold { color: var(--gold); }

.gold-line        { width: 60px; height: 2px; background: var(--gold); margin-bottom: 30px; }
.gold-line-center { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 30px; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Section Labels (DM Sans — utility style) ────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-cream .section-label {
    color: var(--cream-heading);
    opacity: 0.8;
}

/* ── Section Titles (Canela — editorial heading style) ───────────────────── */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--maroon-text);
    max-width: 650px;
}

.section-cream .section-description {
    color: var(--cream-text);
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
/* ── Logo / Brand — two-line stacked mark ────────────────────────────────
   Line 1: Name     — Canela Light, large, gold, wide tracking
   Line 2: Tagline  — DM Sans, tiny, gold, ultra-wide tracking, centered
   Matches the uploaded reference logo precisely.
   ─────────────────────────────────────────────────────────────────────── */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.brand-logo:hover { opacity: 0.82; }

/* "CHANDRANI" — primary name line */
.brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

/* "ACTRESS & MODEL" — secondary tagline line */
.brand-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 7.5px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-top: 4px;
    white-space: nowrap;
    opacity: 0.90;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white) !important;
    padding: 8px 20px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 55%; }

.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--maroon-bg);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 217, 168, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    20%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content { position: relative; z-index: 2; }

/* ── Hero Subtitle (DM Sans — uppercase label) ───────────────────────────── */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

/* ── Hero Title (Canela — the star of the page) ──────────────────────────── */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.0;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
    color: var(--maroon-heading);
}

/* Italic accent inside hero title */
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--maroon-text);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

.hero-cta { opacity: 0; animation: fadeInUp 1s 1.2s forwards; }

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s 1.5s forwards;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-slider { position: relative; height: 100vh; width: 100%; overflow: hidden; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* ============================================================================
   PROJECT CARDS
   ============================================================================ */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 30px;
    background: var(--maroon-bg);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
}

.section-cream .project-card {
    background: var(--cream-bg);
    border-color: rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(232, 217, 168, 0.4);
}

.section-cream .project-card:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

/* ── .card-img — default (used in Featured Work, Press, etc.) ─────────────
   Fixed height here is intentional for content cards that need alignment.
   Gallery overrides this below with .gallery-section .project-card rules.
   ─────────────────────────────────────────────────────────────────────── */
.project-card .card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #4D0012 0%, #6B0018 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.project-card:hover .card-img { transform: scale(1.04); }

.project-card .card-body { padding: 28px; }

.project-card .card-category {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-cream .card-category {
    color: var(--cream-heading);
    opacity: 0.8;
}

/* Canela card title */
.project-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--maroon-heading);
}

.section-cream .card-title {
    color: var(--cream-heading);
}

.project-card .card-year {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.section-cream .card-year {
    color: #666;
}

.project-card .card-text { 
    font-size: 0.9rem; 
    color: var(--maroon-text); 
    line-height: 1.6; 
}

.section-cream .card-text {
    color: var(--cream-text);
}

/* ============================================================================
   GALLERY SECTION — Natural-height masonry layout
   Cards in #gallery expand to fit their image's natural aspect ratio.
   No fixed height — the image drives the container size.
   ============================================================================ */

/* CSS Columns masonry — browser-native, no JS needed */
#gallery .gallery-masonry {
    column-count: 4;
    column-gap: 12px;
}

/* Each card breaks across columns correctly */
#gallery .gallery-masonry .gallery-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 12px;
    display: block;
}

/* Card wrapper — no fixed height, auto height from image */
#gallery .gallery-masonry .project-card {
    height: auto;
    margin-bottom: 0;
    overflow: hidden;
    cursor: pointer;
}

/* Image container — no fixed height, natural aspect ratio */
#gallery .gallery-masonry .project-card .card-img {
    height: auto;
    min-height: 0;
    display: block;
    background: #4D0012;
    overflow: hidden;
    position: relative;
}

/* The <img> inside fills its natural dimensions */
#gallery .gallery-masonry .project-card .card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter    0.5s ease;
    filter: brightness(0.92);
}

#gallery .gallery-masonry .project-card:hover .card-img img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* Gold overlay on hover */
#gallery .gallery-masonry .project-card .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 217, 168, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

#gallery .gallery-masonry .project-card:hover .card-img::after {
    background: rgba(232, 217, 168, 0.08);
}

/* ── Optional caption — slides up from bottom on hover ───────────────────── */
#gallery .gallery-masonry .project-card {
    position: relative;
}

#gallery .gallery-masonry .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#gallery .gallery-masonry .project-card:hover .gallery-caption {
    transform: translateY(0);
}

#gallery .gallery-masonry .gallery-caption span {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

/* Responsive column counts */
@media (max-width: 1199px) { #gallery .gallery-masonry { column-count: 3; } }
@media (max-width: 767px)  { #gallery .gallery-masonry { column-count: 2; column-gap: 8px; } #gallery .gallery-masonry .gallery-item { margin-bottom: 8px; } }
@media (max-width: 479px)  { #gallery .gallery-masonry { column-count: 1; } }

/* ============================================================================
   SHOWREEL
   ============================================================================ */
.showreel-section { 
    position: relative; 
    background: var(--maroon-bg); 
    padding: 100px 0; 
}

.showreel-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #4D0012 0%, #6B0018 100%);
    border: 1px solid rgba(232, 217, 168, 0.18);
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
}

.showreel-placeholder .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.showreel-placeholder:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(232, 217, 168, 0.35);
}

.showreel-placeholder .play-btn i { 
    font-size: 2rem; 
    color: var(--maroon-bg); 
    margin-left: 5px; 
}

/* ============================================================================
   COUNTER / STATS
   ============================================================================ */
.counter-section { 
    background: var(--maroon-bg); 
    padding: 80px 0; 
}

.section-cream.counter-section {
    background: var(--cream-bg);
}

.counter-item    { text-align: center; padding: 30px 15px; }

/* Canela numerals look outstanding */
.counter-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-cream .counter-number {
    color: var(--cream-heading);
}

.counter-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-cream .counter-label {
    color: #666;
}

/* ============================================================================
   PHILOSOPHY / QUOTE
   ============================================================================ */
.philosophy-section {
    background: var(--maroon-bg);
    padding: 100px 0;
    position: relative;
}

/* Canela italic is exceptional for pull quotes */
.philosophy-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0em;
    line-height: 1.55;
    color: var(--maroon-text);
    position: relative;
    padding-left: 32px;
    border-left: 2px solid var(--gold);
}

.section-cream .philosophy-quote {
    color: var(--cream-text);
    border-left-color: var(--cream-heading);
}

/* ============================================================================
   VISION CARDS
   ============================================================================ */
.vision-card {
    background: rgba(232, 217, 168, 0.05);
    border: 1px solid rgba(232, 217, 168, 0.15);
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.section-cream .vision-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.vision-card:hover {
    background: rgba(232, 217, 168, 0.09);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 217, 168, 0.28);
}

.section-cream .vision-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.vision-card .icon       { font-size: 2.2rem; color: var(--gold); margin-bottom: 22px; }
.vision-card h4          { 
    font-family: var(--font-heading); 
    font-size: 1.3rem; 
    font-weight: 300; 
    letter-spacing: -0.01em; 
    margin-bottom: 14px; 
    color: var(--maroon-heading); 
}

.section-cream .vision-card h4 {
    color: var(--cream-heading);
}

.vision-card p           { 
    font-size: 0.9rem; 
    color: var(--maroon-text); 
    line-height: 1.75; 
}

.section-cream .vision-card p {
    color: var(--cream-text);
}

/* ============================================================================
   BUSINESS TEASER
   ============================================================================ */
.business-teaser {
    background: var(--maroon-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.business-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 217, 168, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================================
   AWARDS
   ============================================================================ */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.award-item {
    background: rgba(232, 217, 168, 0.05);
    border: 1px solid rgba(232, 217, 168, 0.15);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.section-cream .award-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.award-item:hover {
    background: rgba(232, 217, 168, 0.09);
    transform: translateY(-5px);
    border-color: rgba(232, 217, 168, 0.28);
}

.section-cream .award-item:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.award-item .award-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.award-item h5          { 
    font-family: var(--font-heading); 
    font-size: 1.05rem; 
    font-weight: 300; 
    letter-spacing: -0.01em; 
    margin-bottom: 6px; 
    color: var(--maroon-heading);
}

.section-cream .award-item h5 {
    color: var(--cream-heading);
}

.award-item p           { 
    font-family: var(--font-body); 
    font-size: 10px; 
    letter-spacing: 0.4em; 
    text-transform: uppercase; 
    color: var(--text-muted); 
}

.section-cream .award-item p {
    color: #666;
}

/* ============================================================================
   PRESS CARDS
   ============================================================================ */
.press-card {
    background: var(--maroon-bg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.section-cream .press-card {
    background: var(--cream-bg);
    border-color: rgba(0, 0, 0, 0.08);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(232, 217, 168, 0.28);
}

.section-cream .press-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.press-card .press-img {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, #4D0012 0%, #6B0018 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 2rem;
}

.press-card .press-body { padding: 26px; }

.press-card .press-source {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}

.section-cream .press-source {
    color: var(--cream-heading);
    opacity: 0.8;
}

.press-card .press-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--maroon-heading);
    margin-bottom: 16px;
}

.section-cream .press-title {
    color: var(--cream-heading);
}

.press-card .press-link {
    font-family: var(--font-body);
    font-size: 10px; color: var(--gold);
    letter-spacing: 0.4em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
}

.section-cream .press-link {
    color: var(--cream-heading);
}

.press-card .press-link:hover { color: var(--gold-light); }
.section-cream .press-link:hover { color: #000; }

/* ============================================================================
   TIMELINE
   ============================================================================ */
.timeline-section { 
    background: var(--maroon-bg); 
    padding: 100px 0; 
}

.timeline { position: relative; padding: 20px 0; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(232,217,168,0.4), transparent);
}

.timeline-item { position: relative; margin-bottom: 50px; width: 50%; }
.timeline-item:nth-child(odd)  { padding-right: 50px; text-align: right; }
.timeline-item:nth-child(even) { padding-left: 50px; margin-left: 50%; }

.timeline-item::after {
    content: '';
    position: absolute; top: 15px;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--maroon-bg);
}

.timeline-item:nth-child(odd)::after  { right: -5px; }
.timeline-item:nth-child(even)::after { left: -5px; }

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-text { 
    font-size: 0.9rem; 
    color: var(--maroon-text); 
    line-height: 1.65; 
}

/* ============================================================================
   INSTAGRAM GRID
   ============================================================================ */
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 4px; }

.insta-item {
    position: relative; padding-bottom: 100%;
    background: linear-gradient(135deg, #4D0012 0%, #6B0018 100%);
    overflow: hidden;
}

.insta-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s ease;
}

.insta-item .insta-overlay {
    position: absolute; inset: 0;
    background: rgba(232, 217, 168, 0);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease;
}

.insta-item:hover .insta-overlay { background: rgba(232, 217, 168, 0.25); }
.insta-item:hover img             { transform: scale(1.08); }

.insta-item .insta-overlay i {
    font-size: 1.5rem; color: var(--white);
    opacity: 0; transform: scale(0.5);
    transition: all 0.3s ease;
}
.insta-item:hover .insta-overlay i { opacity: 1; transform: scale(1); }

.insta-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 2rem;
}

/* ============================================================================
   GLOBAL VISION & CTA
   ============================================================================ */
.global-vision {
    background: var(--maroon-bg);
    padding: 100px 0; text-align: center;
}

.cta-section {
    background: var(--maroon-bg);
    padding: 120px 0; text-align: center; position: relative;
}

.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 217, 168, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--maroon-heading);
}

.section-cream .cta-title {
    color: var(--cream-heading);
}

/* ============================================================================
   INTRO SECTION
   ============================================================================ */
.intro-section .intro-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 300;
    line-height: 1.75;
    font-style: italic;
    letter-spacing: 0em;
    color: var(--maroon-text);
}

.section-cream .intro-text {
    color: var(--cream-text);
}

.intro-section .intro-text .gold { color: var(--gold); font-style: normal; font-weight: 400; }

.intro-section .intro-signature {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    margin-top: 32px;
    font-style: italic;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: #4D0012;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(232, 217, 168, 0.15);
    color: var(--maroon-text);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 16px;
}

.footer-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

.footer-social { display: flex; gap: 12px; margin-top: 22px; }

.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(232, 217, 168, 0.22);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all 0.3s ease; text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold); color: var(--maroon-bg);
    border-color: var(--gold); transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }

.footer-divider { border-color: rgba(232, 217, 168, 0.12); margin: 40px 0 20px; }

.footer-copyright {
    font-family: var(--font-body);
    font-size: 10px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--text-muted);
}

.footer-admin-link {
    font-family: var(--font-body);
    font-size: 10px; color: var(--text-muted);
    letter-spacing: 0.4em; text-transform: uppercase; text-decoration: none;
    transition: color 0.3s ease;
}
.footer-admin-link:hover { color: var(--gold); }

/* ============================================================================
   PAGE HEADER
   ============================================================================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--maroon-bg);
    text-align: center; position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(232,217,168,0.3), transparent);
}

.page-header h1 {
    color: var(--maroon-heading);
}

/* ============================================================================
   CONTACT
   ============================================================================ */
.contact-form {
    background: var(--maroon-bg);
    border: 1px solid rgba(232, 217, 168, 0.15);
    border-radius: var(--radius);
    padding: 44px;
}

.section-cream .contact-form {
    background: var(--cream-bg);
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-cream .form-control {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 217, 168, 0.15);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.contact-form .form-label {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
}

.contact-info-card {
    background: rgba(232, 217, 168, 0.05);
    border: 1px solid rgba(232, 217, 168, 0.15);
    border-radius: var(--radius);
    padding: 32px; text-align: center;
    transition: all 0.3s ease; height: 100%;
}

.section-cream .contact-info-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
    background: rgba(232, 217, 168, 0.09);
    transform: translateY(-3px);
    border-color: rgba(232, 217, 168, 0.28);
}

.section-cream .contact-info-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-info-card .icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.contact-info-card h5    { 
    font-family: var(--font-heading); 
    font-size: 1.05rem; 
    font-weight: 300; 
    letter-spacing: -0.01em; 
    margin-bottom: 8px; 
    color: var(--maroon-heading);
}

.section-cream .contact-info-card h5 {
    color: var(--cream-heading);
}

.contact-info-card p     { 
    font-family: var(--font-body); 
    font-size: 10px; 
    letter-spacing: 0.4em; 
    text-transform: uppercase; 
    color: var(--text-muted); 
}

.section-cream .contact-info-card p {
    color: #666;
}

/* ============================================================================
   BUSINESS SECTION
   ============================================================================ */
.business-section .biz-card {
    background: rgba(232, 217, 168, 0.05);
    border: 1px solid rgba(232, 217, 168, 0.15);
    border-radius: var(--radius);
    padding: 32px; text-align: center;
    transition: all 0.4s ease; height: 100%;
}

.section-cream .biz-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.business-section .biz-card:hover {
    background: rgba(232, 217, 168, 0.09);
    transform: translateY(-5px);
    border-color: rgba(232, 217, 168, 0.28);
}

.section-cream .biz-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.business-section .biz-card .icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.business-section .biz-card h5    { 
    font-family: var(--font-heading); 
    font-size: 1.15rem; 
    font-weight: 300; 
    letter-spacing: -0.01em; 
    line-height: 1.2; 
    margin-bottom: 10px; 
    color: var(--maroon-heading);
}

.section-cream .biz-card h5 {
    color: var(--cream-heading);
}

.business-section .biz-card p     { 
    font-size: 0.9rem; 
    color: var(--maroon-text); 
    line-height: 1.65; 
}

.section-cream .biz-card p {
    color: var(--cream-text);
}

/* ============================================================================
   ADMIN PANEL
   ============================================================================ */
.admin-login-page {
    min-height: 100vh; display: flex;
    align-items: center; justify-content: center;
    background: var(--maroon-bg);
}

.admin-login-box {
    background: var(--maroon-bg);
    border: 1px solid rgba(232, 217, 168, 0.18);
    border-radius: var(--radius);
    padding: 50px 40px; width: 100%; max-width: 420px;
}

.admin-login-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 300;
    letter-spacing: -0.01em; line-height: 1.1;
    color: var(--gold); text-align: center; margin-bottom: 32px;
}

.admin-login-box .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white); border-radius: var(--radius);
    padding: 12px 16px; font-family: var(--font-body);
}

.admin-login-box .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 217, 168, 0.15);
    outline: none;
}

.admin-login-box label {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-muted);
}

.admin-body { background: #F0EAF0; min-height: 100vh; font-family: var(--font-body); }

.admin-sidebar {
    background: var(--maroon-bg);
    min-height: 100vh; padding: 30px 0;
    position: fixed; width: 250px;
    top: 0; left: 0; z-index: 1000;
    border-right: 1px solid rgba(232,217,168,0.08);
}

.admin-sidebar .brand {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    padding: 0 25px 30px;
    border-bottom: 1px solid rgba(232, 217, 168, 0.12);
    margin-bottom: 20px;
}

.admin-sidebar .nav-link {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-muted) !important;
    padding: 12px 25px !important;
    border-left: 2px solid transparent;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--gold) !important;
    background: rgba(232, 217, 168, 0.06);
    border-left-color: var(--gold);
}

.admin-sidebar .nav-link::after { display: none; }
.admin-content { margin-left: 250px; padding: 32px; }

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px; margin-bottom: 20px;
}

.admin-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 300;
    letter-spacing: -0.01em; line-height: 1.1;
    color: var(--maroon-bg);
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 1px solid rgba(232,217,168,0.3);
}

.admin-stat {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px; text-align: center;
    border-top: 2px solid var(--gold);
}

.admin-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 300;
    letter-spacing: -0.02em; line-height: 1;
    color: var(--gold);
}

.admin-stat .stat-label {
    font-family: var(--font-body);
    font-size: 10px; letter-spacing: 0.4em;
    text-transform: uppercase; color: #888; margin-top: 6px;
}

.admin-table { width: 100%; }

.admin-table th {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: #888; padding: 12px; border-bottom: 2px solid #eee;
}

.admin-table td {
    padding: 12px; border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem; color: #333; vertical-align: middle;
}

.admin-table img { width: 60px; height: 40px; object-fit: cover; border-radius: var(--radius); }

.alert-success-custom {
    background: rgba(232, 217, 168, 0.10);
    border: 1px solid var(--gold); color: var(--gold);
    padding: 12px 20px; margin-bottom: 20px;
    font-size: 0.9rem; border-radius: var(--radius);
}

.alert-error-custom {
    background: rgba(242, 85, 85, 0.08);
    border: 1px solid var(--destructive); color: var(--destructive);
    padding: 12px 20px; margin-bottom: 20px;
    font-size: 0.9rem; border-radius: var(--radius);
}

/* ============================================================================
   NAVBAR — TRANSPARENT → SOLID MAROON ON SCROLL
   ============================================================================ */
.site-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 26px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background    0.45s cubic-bezier(0.4, 0, 0.2, 1),
        padding       0.45s cubic-bezier(0.4, 0, 0.2, 1),
        border-color  0.45s ease,
        box-shadow    0.45s ease;
}

.site-navbar.scrolled {
    background: var(--maroon-bg);
    padding: 14px 0;
    border-bottom: 1px solid rgba(232, 217, 168, 0.12);
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.5);
}

.site-navbar.scrolled::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 217, 168, 0.28), transparent);
}

/* Navbar brand — inherits from .brand-logo / .brand-name / .brand-tagline */
.site-navbar .navbar-brand {
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.site-navbar .navbar-brand:hover { opacity: 1; } /* handled by .brand-logo:hover */

.site-navbar .nav-link {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--white) !important;
    padding: 8px 18px !important;
    position: relative; transition: color 0.3s ease;
}

.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.35s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after { width: 50%; }

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active { color: var(--gold) !important; }

/* ============================================================================
   HAMBURGER BUTTON
   ============================================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(232, 217, 168, 0.25);
    cursor: pointer; padding: 10px;
    transition: border-color 0.3s ease, background 0.3s ease;
    z-index: 9100; flex-shrink: 0;
}

.nav-hamburger:hover {
    border-color: var(--gold);
    background: rgba(232, 217, 168, 0.06);
}

.nav-hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.nav-hamburger span:nth-child(2) { width: 15px; margin-left: -4px; }

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; background: var(--gold); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; background: var(--gold); }

/* ============================================================================
   MOBILE DRAWER — SLIDES IN FROM RIGHT
   ============================================================================ */
.nav-drawer-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9050; opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-drawer-overlay.open { display: block; opacity: 1; }

.nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--maroon-bg);
    border-left: 1px solid rgba(232, 217, 168, 0.15);
    z-index: 9100;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.nav-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(232, 217, 168, 0.10);
}

.nav-drawer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 0;
    line-height: 1;
}

.nav-drawer-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(232, 217, 168, 0.20);
    color: var(--text-muted); font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s ease; line-height: 1;
}

.nav-drawer-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232, 217, 168, 0.06);
}

.nav-drawer-links {
    display: flex; flex-direction: column;
    padding: 36px 0; flex: 1;
}

.nav-drawer-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 17px 28px;
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-drawer.open .nav-drawer-link {
    animation: drawerLinkIn 0.4s ease forwards;
    opacity: 0;
}

.nav-drawer.open .nav-drawer-link:nth-child(1) { animation-delay: 0.08s; }
.nav-drawer.open .nav-drawer-link:nth-child(2) { animation-delay: 0.14s; }
.nav-drawer.open .nav-drawer-link:nth-child(3) { animation-delay: 0.20s; }
.nav-drawer.open .nav-drawer-link:nth-child(4) { animation-delay: 0.26s; }
.nav-drawer.open .nav-drawer-link:nth-child(5) { animation-delay: 0.32s; }
.nav-drawer.open .nav-drawer-link:nth-child(6) { animation-delay: 0.38s; }
.nav-drawer.open .nav-drawer-link:nth-child(7) { animation-delay: 0.44s; }

@keyframes drawerLinkIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.nav-drawer-link::after {
    content: '→'; font-size: 0.65rem;
    color: transparent;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-drawer-link:hover {
    color: var(--gold); border-left-color: var(--gold);
    background: rgba(232, 217, 168, 0.05);
    padding-left: 36px;
}

.nav-drawer-link:hover::after { color: var(--gold); transform: translateX(4px); }
.nav-drawer-link.active { color: var(--gold); border-left-color: var(--gold); }

.nav-drawer-divider {
    height: 1px;
    background: rgba(232, 217, 168, 0.09);
    margin: 8px 28px;
}

.nav-drawer-footer {
    padding: 24px 28px 40px;
    border-top: 1px solid rgba(232, 217, 168, 0.10);
}

.nav-drawer-footer .btn-gold {
    width: 100%; text-align: center;
    display: block; margin-bottom: 24px;
}

.nav-drawer-social { display: flex; gap: 10px; }

.nav-drawer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(232, 217, 168, 0.20);
    color: var(--text-muted); font-size: 0.8rem;
    text-decoration: none; transition: all 0.3s ease;
}

.nav-drawer-social a:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(232, 217, 168, 0.06);
}

body.drawer-open { overflow: hidden; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 991px) {
    .nav-hamburger { display: flex; }
    .site-navbar .navbar-collapse,
    .site-navbar .navbar-nav { display: none !important; }
    .admin-sidebar { position: relative; width: 100%; min-height: auto; }
    .admin-content { margin-left: 0; }
}

@media (max-width: 768px) {
    .hero-title         { font-size: clamp(2.8rem, 10vw, 4rem); }
    .section-title      { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .counter-number     { font-size: 3rem; }
    .philosophy-quote   { font-size: 1.2rem; }
    .cta-title          { font-size: clamp(2rem, 8vw, 3rem); }
    .awards-grid        { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid     { grid-template-columns: repeat(3, 1fr); }
    .timeline::before   { left: 20px; }
    .timeline-item      { width: 100%; padding-left: 50px !important; padding-right: 0 !important; text-align: left !important; margin-left: 0 !important; }
    .timeline-item::after { left: 13px !important; right: auto !important; }
}

/* ============================================================================
   REELS SECTION — reels-section.css
   All rules scoped under .rl-* — zero conflict with Bootstrap or style.css.
   Include in <head> on any page that uses reels-section.php:
       <link href="/assets/css/reels-section.css" rel="stylesheet">
   ============================================================================ */

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.rl-section {
    background: var(--maroon-bg);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.rl-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 65% 40%,
        rgba(232, 217, 168, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.rl-header {
    text-align: center;
    margin-bottom: 56px;
}

.rl-label {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.rl-title {
    font-family: var(--font-heading, 'Canela', Georgia, serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--maroon-heading);
    margin-bottom: 20px;
}

.rl-title em {
    font-style: italic;
    color: var(--gold);
}

.rl-rule {
    width: 44px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    margin: 0 auto;
}

/* ── Slider root — arrow · viewport · arrow ─────────────────────────────── */
.rl-root {
    display: flex;
    align-items: center;
}

/* ── Viewport — clips track on desktop; overflow:visible on mobile ──────── */
.rl-viewport {
    flex: 1;
    overflow: hidden;
}

/* ── Track ───────────────────────────────────────────────────────────────── */
.rl-track {
    display: flex;
    gap: 20px;
    transition: transform 0.60s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.rl-track.no-transition { transition: none !important; }
.rl-track.dragging       { cursor: grabbing; transition: none; }

/* ── Individual reel item ────────────────────────────────────────────────── */
.rl-item {
    flex-shrink: 0;
    transition:
        transform 0.60s cubic-bezier(0.4, 0, 0.2, 1),
        opacity   0.55s ease;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE WIDTHS & PEEK BEHAVIOUR
   ════════════════════════════════════════════════════════════════════════════ */

/* Desktop ≥ 992px — 3 reels per view */
@media (min-width: 992px) {
    .rl-item { width: calc((100% - 40px) / 3); }
}

/* Tablet 768–991px — 2 reels per view */
@media (min-width: 768px) and (max-width: 991px) {
    .rl-item { width: calc((100% - 20px) / 2); }
}

/* Mobile < 768px — PEEK SLIDER
   Active reel: scale(1) full opacity
   Inactive reels: scale(0.73) → ~30% smaller, dimmed, peek from right       */
@media (max-width: 767px) {
    .rl-section   { overflow: hidden; }   /* clip horizontal overflow at section */
    .rl-viewport  { overflow: visible; }  /* let track overflow so peek is visible */
    .rl-track     { gap: 14px; }

    .rl-item {
        width: 68vw;
        transform: scale(0.73);
        transform-origin: top center;
        opacity: 0.50;
    }

    .rl-item.is-active {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Reel card — SHARP CORNERS ───────────────────────────────────────────── */
.rl-card {
    border-radius: 0;                 /* sharp corners as specified */
    overflow: hidden;
    background: var(--maroon-bg);
    border: 1px solid rgba(232, 217, 168, 0.12);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.rl-card:hover {
    border-color: rgba(232, 217, 168, 0.30);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ── Thumbnail — 9:16 portrait aspect ratio ──────────────────────────────── */
.rl-thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: var(--maroon-bg);
    display: block;
}

/* FIXED: Video display - ensures entire video is visible without zooming/cropping */
.rl-thumb video {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Shows entire video with letterboxing */
    background: #0a0a0a;  /* Dark background for letterbox areas */
    display: block;
}

.rl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.55s ease;
    filter: brightness(0.82);
}

.rl-card:hover .rl-thumb img {
    transform: scale(1.05);
    filter: brightness(0.65);
}

/* Placeholder — no thumbnail uploaded */
.rl-thumb-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 217, 168, 0.22);
    background: linear-gradient(
        160deg,
        var(--maroon-bg) 0%,
        #4D0012 100%
    );
}

/* ── Platform badge — top left of thumbnail ──────────────────────────────── */
.rl-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(232, 217, 168, 0.22);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

/* ── Play button ─────────────────────────────────────────────────────────── */
.rl-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.80);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(232, 217, 168, 0.14);
    border: 1.5px solid rgba(232, 217, 168, 0.42);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    padding-left: 3px;              /* optical centering of play icon */
    transition:
        opacity  0.30s ease,
        transform 0.30s ease,
        background 0.30s ease;
    z-index: 3;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Show play button on active item (mobile visible state) */
.rl-item.is-active .rl-play  { opacity: 0.75; }

/* Full reveal on hover */
.rl-card:hover .rl-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rl-play:hover {
    background: rgba(232, 217, 168, 0.30);
    transform: translate(-50%, -50%) scale(1.10) !important;
}

/* ── In-card title at bottom of thumbnail ────────────────────────────────── */
.rl-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 16px;
    z-index: 2;
}

.rl-card-title span {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--maroon-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ════════════════════════════════════════════════════════════════════════════
   DESKTOP NAVIGATION ARROWS
   ════════════════════════════════════════════════════════════════════════════ */
.rl-arrow {
    display: none;                  /* hidden on mobile */
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(232, 217, 168, 0.22);
    color: rgba(232, 217, 168, 0.65);
    cursor: pointer;
    transition: all 0.30s ease;
    z-index: 5;
}

.rl-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232, 217, 168, 0.06);
}

.rl-arrow:disabled {
    opacity: 0.20;
    cursor: default;
    pointer-events: none;
}

.rl-arrow--prev { margin-right: 16px; }
.rl-arrow--next { margin-left:  16px; }

/* Show arrows on desktop only */
@media (min-width: 992px) {
    .rl-arrow { display: flex; }
}

/* ════════════════════════════════════════════════════════════════════════════
   DOT INDICATORS
   ════════════════════════════════════════════════════════════════════════════ */
.rl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.rl-dot {
    width: 5px;
    height: 5px;
    background: rgba(232, 217, 168, 0.25);
    border: none;
    border-radius: 0;               /* sharp — matches site aesthetic */
    cursor: pointer;
    padding: 0;
    transition: all 0.30s ease;
}

.rl-dot.is-active {
    width: 24px;
    background: var(--gold);
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.rl-empty {
    text-align: center;
    padding: 60px 0;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
   ════════════════════════════════════════════════════════════════════════════ */
.rl-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.rl-lightbox.is-open { display: flex; }

.rl-lb-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.rl-lb-wrap {
    position: relative;
    z-index: 1;
    width: min(88vw, 420px);
}

.rl-lb-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(232, 217, 168, 0.28);
    color: rgba(232, 217, 168, 0.75);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s ease;
    line-height: 1;
}

.rl-lb-close:hover {
    border-color: var(--gold);
    color: var(--gold);

.rl-lb-screen {
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    border: 1px solid rgba(232, 217, 168, 0.10);
}

.rl-lb-screen iframe,
.rl-lb-screen video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: contain;  /* Ensure video fits properly in lightbox */
    background: #000;
}
/* ── Body font size responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
    body {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 21px;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    html { font-size: 19px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    html { font-size: 18px; }
}

@media (min-width: 992px) {
    html { font-size: 18px; }
}