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

  :root {
    --black: #060608;
    --off-black: #0e0e11;
    --dark: #141418;
    --mid: #1e1e24;
    --border: rgba(255,255,255,0.08);
    --white: #f5f3ef;
    --muted: rgba(245,243,239,0.45);
    --accent: #c8a96e;
    --accent-dim: rgba(200,169,110,0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    transition: background 0.4s, padding 0.4s;
  }

  #hamburger {
    display: none;
  }

  #mobileMenu {
    display: none;
  }
  nav.scrolled {
    background: rgba(6,6,8,0.92);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-logo span { color: var(--accent); }

  .nav-logo-icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    fill: var(--white);
    margin-right: 4px;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--accent);
    transition: right 0.3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { right: 0; }

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

  .hero video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(6,6,8,0.2) 0%,
      rgba(6,6,8,0) 40%,
      rgba(6,6,8,0.7) 80%,
      rgba(6,6,8,1) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 80px;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

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

  .hero-sub {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 20px;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 14px 36px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .hero-cta:hover {
    background: var(--accent);
    color: var(--black);
  }

  .scroll-hint {
    position: absolute;
    bottom: 36px; right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
  }
  .scroll-hint span {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ─── DIVIDER ─── */
  .divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 16px;
  }

  /* ─── SECTION LABELS ─── */
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  /* ─── SERVICES SECTION ─── */
  .services {
    padding: 140px 60px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }

  .services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
  }

  .services-header p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
    max-width: 400px;
    justify-self: end;
  }

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

  .service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }

  .service-card-media {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
  }

  .service-card video,
  .service-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.5) saturate(0.8);
  }

  .service-card:hover video,
  .service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.65) saturate(1);
  }

  .service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,8,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 36px;
    pointer-events: none;
  }

  .service-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }

  .service-card p {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.7;
    max-width: 280px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s, transform 0.4s;
  }

  .service-card:hover p {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
    pointer-events: auto;
  }
  .service-card:hover .service-card-link {
    opacity: 1;
    transform: translateY(0);
  }
  .service-card-link::after {
    content: '→';
    transition: transform 0.3s;
  }
  .service-card-link:hover::after { transform: translateX(4px); }

  /* ─── ABOUT STRIP ─── */
  .about-strip {
    background: var(--mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 60px;
  }

  .about-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
  }

  .about-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.2;
  }

  .about-right p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 2;
    margin-bottom: 20px;
  }

  .about-stats {
    display: flex;
    gap: 60px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
  }

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

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
  }

  /* ─── CONTACT ─── */
  .contact-section {
    padding: 140px 60px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .contact-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 16px;
  }

  .contact-header p {
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
  }

  .contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .contact-item a,
  .contact-item span {
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-item a:hover { color: var(--accent); }

  /* ─── FORM ─── */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--mid);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--accent);
  }

  .form-group select option { background: var(--dark); }

  .form-group textarea { height: 140px; }

  .form-honeypot { display: none; }

  .submit-btn {
    align-self: flex-start;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .submit-btn:hover {
    background: var(--accent);
    color: var(--black);
  }

  /* ─── MODAL ─── */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }

  .modal.active {
    display: flex;
  }

  .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 8, 0.7);
    backdrop-filter: blur(4px);
  }

  .modal-content {
    position: relative;
    z-index: 1001;
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 48px 40px;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: scale(0.95) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }

  .modal-close:hover {
    color: var(--accent);
  }

  .modal-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .modal-content p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  .modal-close-btn {
    padding: 12px 32px;
    background: var(--accent);
    border: none;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
  }

  .modal-close-btn:hover {
    background: rgba(200, 169, 110, 0.85);
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
  }
  .footer-logo span { color: var(--accent); }

  .footer-copy {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--muted);
  }

  .footer-socials {
    display: flex;
    gap: 24px;
  }

  .footer-socials a {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-socials a:hover { color: var(--accent); }

  /* ─── PORTFOLIO ─── */
  .portfolio {
    padding: 140px 60px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .portfolio-header {
    margin-bottom: 80px;
  }

  .portfolio-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-top: 12px;
  }

  .portfolio-category {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
  }

  .portfolio-category-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }

  .portfolio-category-label h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }

  .portfolio-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* Two horizontal videos side by side */
  .videos-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* One vertical + one horizontal */
  .videos-mixed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
  }

  .yt-embed {
    position: relative;
    background: var(--mid);
    border: 1px solid var(--border);
    overflow: hidden;
  }

  /* 16:9 horizontal */
  .yt-embed.horizontal { aspect-ratio: 16/9; }

  /* In mixed layout, make horizontal video same height as vertical */
  .videos-mixed .yt-embed.horizontal {
    max-height: 460px;
  }

  /* 9:16 vertical — fixed width so it doesn't stretch */
  .yt-embed.vertical {
    width: 260px;
    aspect-ratio: 9/16;
  }

  .yt-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .yt-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
    cursor: pointer;
  }

  .yt-embed:hover .video-play-button {
    background: rgba(0, 0, 0, 0.5);
  }

  .play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, border-color 0.3s;
  }

  .yt-embed:hover .play-icon {
    transform: scale(1.1);
    border-color: var(--accent);
  }

  .play-icon::after {
    content: '▶';
    font-size: 24px;
    color: var(--white);
    margin-left: 4px;
  }

  .video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .yt-embed:hover .video-progress-bar {
    opacity: 1;
  }

  .video-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
  }

  /* placeholder shown when no ID set */
  .yt-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--mid);
  }

  .yt-placeholder-icon {
    width: 52px; height: 52px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .yt-placeholder-icon::after {
    content: '▶';
    font-size: 0.9rem;
    color: var(--accent);
    margin-left: 3px;
  }

  .yt-placeholder span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ─── CUSTOM / WHATEVER YOU NEED ─── */
  .custom-section {
    background: var(--mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .custom-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .custom-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
  }

  .custom-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .custom-inner h2 em {
    font-style: italic;
    color: var(--accent);
  }

  .custom-inner p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 2;
    margin-bottom: 16px;
  }

  .custom-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 36px 0 48px;
  }

  .custom-tag {
    padding: 8px 20px;
    border: 1px solid var(--border);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: border-color 0.3s, color 0.3s;
  }

  .custom-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* ─── RESPONSIVE additions ─── */
  @media (max-width: 900px) {
    .portfolio { padding: 80px 28px; }
    .videos-2col { grid-template-columns: 1fr; }
    .videos-mixed { grid-template-columns: 1fr; }
    .yt-embed.vertical { width: 100%; aspect-ratio: 9/16; }
    .custom-section { padding: 80px 28px; }
  }

  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

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

  /* ─── OBSERVE FADE ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 24px 28px; }
    nav.scrolled { padding: 16px 28px; }
    .nav-links { display: none; }
    .hero-content { padding: 0 28px 60px; }
    .scroll-hint { right: 28px; }
    .services { padding: 80px 28px; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: 16/9; }
    .about-strip { padding: 80px 28px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { gap: 36px; }
    .contact-section { padding: 80px 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 20px; text-align: center; }

    /* ─── HAMBURGER BUTTON ─── */
    #hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 16px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 150;
      flex-shrink: 0;
    }
    #hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--white);
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                  opacity 0.3s ease,
                  background-color 0.3s ease;
    }
    #hamburger:hover span {
      background-color: var(--accent);
    }
    #hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
      background-color: var(--accent);
    }
    #hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    #hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
      background-color: var(--accent);
    }

    /* ─── MOBILE DRAWER MENU ─── */
    #mobileMenu {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100vh;
      background: rgba(6, 6, 8, 0.98);
      z-index: 120;
      gap: 32px;
      transform: translateX(100%);
      transition: transform 0.55s cubic-bezier(0.85, 0, 0.15, 1);
    }
    @supports (backdrop-filter: blur(25px)) {
      #mobileMenu {
        background: rgba(6, 6, 8, 0.82);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
      }
    }
    #mobileMenu.active {
      transform: translateX(0);
    }

    /* Staggered mobile links */
    #mobileMenu a {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease,
                  transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                  color 0.3s;
    }
    #mobileMenu a:hover {
      color: var(--white);
      transform: scale(1.04);
    }
    #mobileMenu.active a {
      opacity: 1;
      transform: translateY(0);
    }
    #mobileMenu.active a:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.active a:nth-child(2) { transition-delay: 0.16s; }
    #mobileMenu.active a:nth-child(3) { transition-delay: 0.22s; }
    #mobileMenu.active a:nth-child(4) { transition-delay: 0.28s; }
    #mobileMenu.active a:nth-child(5) { transition-delay: 0.34s; }

    /* Premium Overlay Enhancements */
    body:has(#mobileMenu.active) nav {
      background: transparent !important;
      border-bottom: 1px solid transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }
    body:has(#mobileMenu.active) {
      overflow: hidden;
    }
  }
