:root {
      --primary-red: #dc2626;
      --red-dark: #b91c1c;
      --red-light: #fef2f2;
      --red-border: rgba(220, 38, 38, 0.1);
      --red-shadow: rgba(220, 38, 38, 0.3);
      --black: #111111;
      --text-primary: #1f2937;
      --text-secondary: #4b5563;
      --text-muted: #9ca3af;
      --off-white: #f7f5f2;
      --white: #ffffff;
      --border: #e2e0dc;
    
      --primary-black: #1f2937;
      --gradient-primary: linear-gradient(
        135deg,
        var(--primary-red),
        var(--primary-black)
      );

      --nav-h: 68px;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-mono: 'Space Mono', monospace;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      background: var(--off-white);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
    }
 


/* ── HERO ── */
    .hero-section {
      margin-top: var(--nav-h);
      min-height: 70vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-carousel-track {
      display: flex;
      width: 300%;
      height: 100%;
      animation: infiniteScroll 20s linear infinite;
    }

    .hero-carousel-slide {
      width: 33.333%;
      height: 100%;
      flex-shrink: 0;
    }

    .hero-carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
    }

    @keyframes infiniteScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-66.666%); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(220,38,38,0.82) 0%, rgba(17,17,17,0.72) 100%);
      z-index: 2;
    }

    .hero-content-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 1.5rem;
      position: relative;
      z-index: 3;
      display: flex;
      align-items: flex-start;
    }

    .hero-content { max-width: 680px; color: var(--white); text-align: left; }

    .hero-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .hero-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
    .hero-breadcrumb a:hover { color: var(--white); }
    .hero-breadcrumb span { color: rgba(255,255,255,0.5); }

    .hero-title {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 22px;
      line-height: 1.05;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.2s forwards;
    }

    .hero-description {
      font-family: var(--font-display);
      font-size: 1.2rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.9);
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.4s forwards;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

     /* ── SHARED ── */
    .section { padding: 90px 20px; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (max-width: 640px) {
      .container { padding: 0 16px; }
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
      position: relative;
    }

    .section-header::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 3px;
      background: var(--primary-red);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .section-title .accent { color: var(--primary-red); }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

     @media (max-width: 1024px) {
      /* Hero */
      .hero-section { min-height: 60vh; }

     }

    @media (max-width: 900px) {
      .nav-menu { display: none; }
      .mobile-toggle { display: flex; }

      /* Hero */
      .hero-title { font-size: 2.6rem; }
    }

      @media (max-width: 768px) {
      /* Hero */
      .hero-section { min-height: 55vh; }
       .hero-content-wrapper { padding: 0 1.25rem; }
      .hero-title { font-size: 2.5rem; }
      .hero-stats-bar { gap: 20px; flex-wrap: wrap; }
      .hero-stat-num { font-size: 1.5rem; }
      .hero-stat-label { font-size: 0.75rem; }

      }

      @media (max-width: 640px) {
      /* Hero */
      .hero-section { min-height: 60vh; }
      .hero-content-wrapper { padding: 40px 1.25rem; }
      .hero-title { font-size: 2rem; line-height: 1.1; }
      .hero-description { font-size: 0.97rem; line-height: 1.7; }
      .hero-stats-bar { gap: 14px; margin-top: 28px; }
      .hero-stat-divider { display: none; }
      .hero-stat-num { font-size: 1.35rem; }
      .hero-breadcrumb { font-size: 0.8rem; margin-bottom: 14px; }

       /* Reduce section padding */
      .section { padding: 60px 16px; }

      /* Navbar */
      .mobile-toggle { display: flex; }
    

      /* Section headers */
      .section-title { font-size: 1.75rem; }
      .section-header { margin-bottom: 48px; }


      }

       @media (max-width: 480px) {
      .hero-title { font-size: 1.75rem; }
      .hero-stats-bar { gap: 10px; }

       }

      @media (max-width: 400px) {
      .section { padding: 50px 12px; }
      .hero-title { font-size: 1.7rem; }
      .hero-description { font-size: 0.95rem; }
      .section-title { font-size: 1.75rem; }
      }


        /* ── 375px: smallest common phone ── */
      @media (max-width: 375px) {
      .hero-title { font-size: 1.55rem; }
      .section-title { font-size: 1.45rem; }
    }