  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96B;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --cream: #F5F0E8;
    --cream-dim: #D4CCBA;
    --text: #E8E2D4;
    --text-dim: #8A8070;
    --red-accent: #8B1A1A;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }
/* Mobile Menu Toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}
  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,10,0.98), transparent);
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .logo-mark {
    width: 32px; height: 32px;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 600;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream-dim); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 0.55rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.12em;
    transition: all 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 60%, rgba(139,26,26,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; text-align: center;
    max-width: 860px; padding: 0 2rem;
    animation: fadeUp 1s ease both;
  }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: 1rem;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
    color: var(--cream); margin-bottom: 1.5rem;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 1rem; color: var(--text-dim); line-height: 1.7;
    max-width: 520px; margin: 0 auto 3rem;
  }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    padding: 0.9rem 2.5rem;
    background: var(--gold); color: var(--dark);
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-dim); animation: bounce 2s infinite;
  }
  .scroll-hint::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  /* SECTION BASE */
  section { padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; color: var(--cream); margin-bottom: 1.5rem; line-height: 1.15;
  }
  .section-divider {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    margin: 0;
  }

  /* ABOUT */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .about-text p { color: var(--text-dim); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.95rem; }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
  }
  .stat { padding: 1.5rem; border: 1px solid rgba(201,168,76,0.15); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; color: var(--gold); font-weight: 300; line-height: 1;
  }
  .stat-label { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.08em; margin-top: 0.4rem; }
  .about-visual {
    position: relative; height: 460px;
    background: var(--dark-3);
    overflow: hidden;
  }
  .about-visual-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  /* Cinema SVG illustration */


  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
  .service-card {
    padding: 2.5rem; background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.08);
    transition: border-color 0.3s, transform 0.3s;
  }
  .service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
  .service-icon {
    width: 48px; height: 48px; margin-bottom: 1.8rem;
    color: var(--gold);
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--cream);
    margin-bottom: 0.8rem;
  }
  .service-desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.8; }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: rgba(201,168,76,0.1); float: right;
    margin-top: -0.5rem;
  }

  /* BUILD PLAN */
  .plan-section { background: var(--dark-2); max-width: 100%; padding: 7rem 4rem; }
  .plan-inner { max-width: 1300px; margin: 0 auto; }
  .plan-steps { margin-top: 4rem; position: relative; }
  .plan-steps::before {
    content: ''; position: absolute;
    left: 28px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
  }
  .plan-step {
    display: grid; grid-template-columns: 56px 1fr; gap: 2rem;
    margin-bottom: 3rem; position: relative;
  }
  .step-num {
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--gold);
    background: var(--dark-2); z-index: 1; flex-shrink: 0;
  }
  .step-content { padding-top: 0.6rem; }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; color: var(--cream); font-weight: 400;
    margin-bottom: 0.6rem;
  }
  .step-desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.85; }
  .step-meta {
    margin-top: 0.8rem; display: flex; gap: 1.5rem;
  }
  .step-badge {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.2rem 0.7rem;
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold-light);
  }

  /* BRANDS SECTION */
  .brands-section { background: var(--dark-2); max-width: 100%; padding: 7rem 4rem; }
  .brands-inner { max-width: 1300px; margin: 0 auto; }
  .brands-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
  .brands-categories { display: flex; flex-direction: column; gap: 3rem; }
  .brand-category-title {
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .brand-category-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(201,168,76,0.25), transparent);
  }
  .brands-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.08);
  }
  .brand-card {
    background: var(--dark-2); padding: 2.2rem 1.5rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s; position: relative; overflow: hidden;
  }
  .brand-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .brand-card:hover { background: var(--dark-3); }
  .brand-card:hover::before { transform: scaleX(1); }
  .brand-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300; letter-spacing: 0.12em;
    color: rgba(225,225,225,0.9);
    transition: color 0.25s;
    text-align: center;
  }
  .brand-card:hover .brand-wordmark { color: var(--cream); }

  /* PROCESS BADGES */
  .badge-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .badge {
    padding: 0.45rem 1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.2); color: var(--text-dim);
  }

  /* CTA */
  .cta-section {
    background: var(--dark-3); max-width: 100%;
    padding: 7rem 4rem; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: radial-gradient(circle at center, var(--gold) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300; color: var(--cream); margin-bottom: 1.2rem;
  }
  .cta-sub { color: var(--text-dim); margin-bottom: 2.5rem; font-size: 0.95rem; line-height: 1.7; }

  /* FOOTER */
  footer {
    background: var(--dark); border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 4rem 2.5rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    max-width: 1300px; margin: 0 auto 3rem;
  }
  .footer-brand p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.8; margin-top: 1rem; max-width: 280px; }
  .footer-col h4 {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { font-size: 0.85rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--cream); }
  .footer-bottom {
    max-width: 1300px; margin: 0 auto;
    padding-top: 1.5rem; border-top: 1px solid rgba(201,168,76,0.08);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
  }
  .fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* CONTACT FORM */
  .contact-form { max-width: 600px; margin: 3rem auto 0; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--dark-3); border: 1px solid rgba(201,168,76,0.15);
    color: var(--text); padding: 0.8rem 1rem; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(201,168,76,0.5);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--dark-3); }

  /* LOGO DESIGN */
  .logo-full {
    display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem;
  }
  .logo-full .logo-mark-big {
    width: 80px; height: 80px; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
  }
  .logo-full .logo-mark-big::before, .logo-full .logo-mark-big::after {
    content: ''; position: absolute;
    border: 1px solid rgba(201,168,76,0.3);
  }
  .logo-full .logo-mark-big::before { inset: 4px; }
  .logo-full .logo-mark-big::after { inset: 8px; }
  .logo-full .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--cream);
  }
  .logo-full .logo-tagline {
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-dim); margin-top: 0.4rem;
  }
  /* =========================================
   1. Modern & Premium UI Enhancements
   ========================================= */

/* Glassmorphism Navbar */
nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0.4)) !important;
}
nav.scrolled {
  background: rgba(10,10,10,0.75) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Elevated Buttons with Glow */
.btn-primary {
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(201,168,76,0.15);
}
.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  border-radius: 2px;
}
.btn-outline:hover {
  box-shadow: 0 0 15px rgba(201,168,76,0.1) inset, 0 4px 15px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

/* Card Hover Animations & Cinematic Shadows */
.service-card {
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.15);
}

.brand-card {
  border-radius: 4px;
  transition: all 0.4s ease;
}
.brand-card:hover {
  background: var(--dark-4);
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Modernized Form Inputs */
.form-group input, .form-group select, .form-group textarea {
  border-radius: 4px;
  background: rgba(26,26,26,0.6);
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(10,10,10,0.8);
  transform: translateY(-1px);
}

/* Polished Visuals & Text */
.about-visual {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}
.hero h1 {
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}


/* =========================================
   2. Responsive & Mobile-Friendly Layout
   ========================================= */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Fluid images & containers */
  img, video, iframe, svg {
    max-width: 100% !important;
    height: auto !important;
  }
  section, .container, footer, header, .plan-section, .brands-section, .cta-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Typography Scaling */
  .hero h1 { font-size: 2.8rem !important; }
  .section-title { font-size: 2.2rem !important; }
  .cta-title { font-size: 2.2rem !important; }

   /* Navbar Mobile Stack */
  #navbar {
    padding: 1rem 1.5rem;
    background: rgba(10,10,10,0.95) !important;
    flex-wrap: wrap; /* Allows links to fall below the logo and hamburger */
  }
  
  .menu-toggle {
    display: flex; /* Show hamburger icon */
  }

  .nav-links {
    display: none; /* Hide links initially */
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 1rem;
    padding: 0;
    text-align: center;
  }
  
  .nav-links.active {
    display: flex; /* Display links when active */
  }
  /* Grids to Single Column */
  .about-grid, .services-grid, .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Brands Grid 2-columns on mobile */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer Stack */
  .footer-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-brand p {
    margin: 1rem auto 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}