        :root {
            --midnight: #46d8bb;
            --mint: #0b6d93;
            --coral: #E07A5F;
            --gold: #CBB279;
            --teal: #4DA1A9;
            --midnight-dark: #dedfe5;
        }

        body {
            background-color: var(--midnight);
            color: var(--mint);
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
            ::selection {
                background: var(--coral);
                color: var(--midnight);
                }
        }

        h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; }
        .font-mono { font-family: 'Space Grotesk', sans-serif; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 3px; }
        ::-webkit-scrollbar-track { background: var(--midnight); }
        ::-webkit-scrollbar-thumb { background: var(--gold); }

        /* FORCE full-bleed hero */
.hero-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
/* ========================= */
/* HERO SLIDESHOW */
/* ========================= */

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition:
    opacity 1.6s ease,
    transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

        /* Layout Grid */
        .app-container {
            display: grid;
            grid-template-columns: 240px 1fr 100px;
            height: 100vh;
            overflow: hidden;
        }

        @media (max-width: 1024px) {
            .app-container { grid-template-columns: 80px 1fr 60px; }
            .nav-label { display: none; }
        }

        /* Sidebar Panels */
        .sidebar-left {
            border-right: 1px solid rgba(204, 229, 207, 0.08);
            background: var(--midnight-dark);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            z-index: 100;
        }

        .sidebar-right {
            border-left: 1px solid rgba(204, 229, 207, 0.08);
            background: var(--midnight-dark);
            display: flex;
            color:crimson;
            flex-direction: column;
            align-items: center;
            padding: 60px 0;
            z-index: 100;
        }

        .main-content {
            overflow-y: auto;
            scroll-behavior: smooth;
            background: var(--midnight);
        }

        /* Nav Links */
        .nav-link {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            margin-bottom: 2.5rem;
            color: var(--mint);
            opacity: 0.5;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            display: block;
        }

        .nav-link:hover, .nav-link.active {
            opacity: 1;
            color: var(--gold);
            transform: translateX(8px);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            left: -20px; top: 50%;
            width: 0; height: 1px;
            background: var(--coral);
            transition: width 0.4s ease;
        }
        .nav-link:hover::before { width: 12px; }

        /* Buttons */
        .btn-coral {
            background: var(--coral);
            color: var(--midnight);
            padding: 1.25rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.4s;
            border: none;
            cursor: pointer;
        }
        .btn-coral:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224, 122, 95, 0.2); }

        .btn-gold-outline {
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 1.25rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.4s;
            background: transparent;
            cursor: pointer;
        }
        .btn-gold-outline:hover { background: var(--gold); color: var(--midnight); }

        /* Views */
        .view-section { display: none; }
        .view-section.active { display: block; animation: viewFade 1.2s ease-out; }

        @keyframes viewFade {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Panels */
        .slide-panel {
            position: fixed;
            top: 0; right: -100%;
            width: 450px; height: 100vh;
            background: var(--midnight-dark);
            z-index: 1000;
            transition: right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 80px 60px;
            border-left: 1px solid rgba(203, 178, 121, 0.2);
        }
        .slide-panel.open { right: 0; }

        .editorial-img {
            filter: grayscale(30%) brightness(0.9);
            transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .group:hover .editorial-img { filter: grayscale(0%) brightness(1.1); transform: scale(1.03); }

        .parallax-text {
            font-size: 18vw;
            color: rgba(204, 229, 207, 0.02);
            position: absolute;
            z-index: 0;
            white-space: nowrap;
            font-weight: 900;
            pointer-events: none;
        }

        .vertical-text { writing-mode: vertical-rl; text-orientation: mixed; }
        
        .divider-gold { width: 40px; height: 1px; background: var(--gold); margin: 2rem 0; }
/* ========================= */
/* MOBILE & TABLET FIXES */
/* ========================= */

@media (max-width: 1024px) {

  /* Hide sidebars */
  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  /* Convert grid to single column */
  .app-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  /* Let page scroll normally */
  .main-content {
    height: auto;
    overflow-y: visible;
  }
}
@media (max-width: 768px) {

  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.4rem; }

  .parallax-text {
    font-size: 32vw;
  }
}
@media (max-width: 768px) {

  .btn-coral,
  .btn-gold-outline {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
  }
}
.slide-panel {
  width: 450px;
}
@media (max-width: 768px) {
  .slide-panel {
    width: 100vw;
    padding: 60px 24px;
  }
}
@media (max-width: 768px) {
  .nav-link:hover {
    transform: none;
  }
}
/* ========================= */
/* MOBILE MENU */
/* ========================= */

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(222, 223, 229, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(203,178,121,0.15);
}

.mobile-logo {
    font-size: 10px;
    letter-spacing: 0.6em;
    font-weight: 700;
}

.mobile-menu-btn {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    background: none;
    border: none;
    color: var(--mint);
    cursor: pointer;
}

/* Slide-down panel */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--midnight-dark);
    z-index: 1100;
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 120px 32px 40px;
}

.mobile-menu.open {
    transform: translateY(0);
}

/* Menu links */
.mobile-nav a {
    display: block;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 1.8rem;
    color: var(--mint);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.mobile-nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 3rem 0;
}

/* Prevent header overlap */
@media (max-width: 768px) {
    .main-content {
        padding-top: 80px;
    }
}
@media (max-width: 1024px) {
  .app-container {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1024px) {
  .main-content > section:first-of-type {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
