  :root {
    --red: #D72B2B;
    --red-dark: #A51E1E;
    --navy: #0D1B2A;
    --navy-mid: #152234;
    --gold: #F4C430;
    --white: #F8F6F0;
    --gray: #8A8F94;
    --light: #EEE9E0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 64px;
    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
  }
  .nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--red); }
  .nav-logo svg { width: 28px; height: 28px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5vw;
    padding-top: 64px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(215,43,43,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(244,196,48,0.08) 0%, transparent 60%),
      var(--navy);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(248,246,240,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(248,246,240,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-stripe {
    position: absolute;
    top: 0; bottom: 0;
    right: 12vw;
    width: 6px;
    background: linear-gradient(to bottom, transparent, var(--red), var(--gold), transparent);
    opacity: 0.6;
  }
  .hero-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: flex-start;
    gap: 500px;
    width: 100%;
  }
  .hero-content { max-width: 560px; flex-shrink: 0; }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block; width: 40px; height: 2px;
    background: var(--gold);
  }
  h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 0.88;
    letter-spacing: 4px;
    margin-bottom: 28px;
  }
  h1 .line2 { color: var(--red); display: block; }
  .hero-sub {
    font-size: 1.1rem;
    color: var(--light);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.85;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(248,246,240,0.3);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-badge {
    position: absolute;
    right: 6vw; bottom: 12vh;
    width: 140px; height: 140px;
    background: var(--red);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    animation: spin-slow 20s linear infinite;
    z-index: 2;
  }
  .hero-badge-inner {
    position: absolute; inset: 0;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    animation: spin-slow 20s linear infinite reverse;
  }
  .hero-badge .badge-main {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
  }
  .hero-badge .badge-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.4;
    text-align: center;
    padding: 0 10px;
  }
  @keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* IMAGE ROTATOR */
  .hero-rotator {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    height: 480px;
    background: var(--navy-mid);
    border: 1px solid rgba(248,246,240,0.1);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    overflow: hidden;
  }
  .rotator-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .rotator-slide.active { opacity: 1; }
  .rotator-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .rotator-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 22px 16px;
    background: linear-gradient(to top, rgba(13,27,42,0.9), transparent);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
  }
  .rotator-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(13,27,42,0.7);
    border: 1px solid rgba(248,246,240,0.2);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 3;
    transition: background 0.2s, border-color 0.2s;
    user-select: none;
  }
  .rotator-arrow:hover { background: var(--red); border-color: var(--red); }
  .rotator-arrow.prev { left: 14px; }
  .rotator-arrow.next { right: 14px; }
  .rotator-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 3;
  }
  .rotator-dots-wrap { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 14px; display: flex; justify-content: center; }
  .rotator-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(248,246,240,0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .rotator-dot.active { background: var(--gold); transform: scale(1.25); }

  @media (max-width: 968px) {
    .hero-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero-rotator { width: 100%; height: 340px; }
  }

  /* TICKER */
  .ticker {
    background: var(--red);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-flex;
    animation: ticker 18s linear infinite;
    gap: 0;
  }
  .ticker-item {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 0 32px;
    color: var(--white);
    display: inline-flex; align-items: center; gap: 16px;
  }
  .ticker-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS */
  section { padding: 100px 5vw; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--red);
  }
  .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .section-title em { color: var(--red); font-style: normal; }

  /* CATEGORIES */
  .cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 50px;
  }
  .cat-card {
    background: var(--navy-mid);
    border: 1px solid rgba(248,246,240,0.07);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .cat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(215,43,43,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cat-card:hover { transform: translateY(-6px); border-color: var(--red); }
  .cat-card:hover::before { opacity: 1; }
  .cat-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; }
  .cat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }
  .cat-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 6px;
    line-height: 1.5;
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
  }
  .why-features { display: flex; flex-direction: column; gap: 28px; }
  .why-feat {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px;
    background: var(--navy-mid);
    border-left: 3px solid var(--red);
    transition: transform 0.2s;
  }
  .why-feat:hover { transform: translateX(6px); }
  .why-feat-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: rgba(215,43,43,0.15);
    display: flex; align-items: center; justify-content: center;
  }
  .why-feat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--white);
  }
  .why-feat-body { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
  .why-visual {
    position: relative;
    display: flex; flex-direction: column; gap: 16px;
  }
  .stat-block {
    background: var(--navy-mid);
    border: 1px solid rgba(248,246,240,0.07);
    padding: 30px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    display: flex; align-items: center; gap: 20px;
  }
  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
  }
  .stat-text-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
  }
  .stat-text-body { font-size: 0.85rem; color: var(--gray); }

  /* LOCATION */
  .location-section { background: var(--navy-mid); }
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
  }
  .location-card {
    background: var(--navy);
    border: 1px solid rgba(248,246,240,0.08);
    padding: 40px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  }
  .loc-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .info-row {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248,246,240,0.06);
  }
  .info-row:last-child { border-bottom: none; }
  .info-icon { font-size: 1.3rem; flex-shrink: 0; width: 24px; }
  .info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .info-value { font-size: 0.95rem; color: var(--white); line-height: 1.6; }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 8px; }
  .hours-row { font-size: 0.88rem; color: var(--gray); display: flex; justify-content: space-between; gap: 12px; }
  .hours-row .day { color: var(--white); font-weight: 500; }
  .map-placeholder {
    background: var(--navy);
    border: 1px solid rgba(248,246,240,0.08);
    height: 100%;
    min-height: 360px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
    position: relative;
    overflow: hidden;
  }
  .map-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(215,43,43,0.08), transparent 60%),
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(248,246,240,0.02) 40px, rgba(248,246,240,0.02) 41px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(248,246,240,0.02) 40px, rgba(248,246,240,0.02) 41px);
  }
  .map-pin { font-size: 3.5rem; position: relative; z-index: 1; animation: pin-bounce 2s ease-in-out infinite; }
  @keyframes pin-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  .map-text { position: relative; z-index: 1; text-align: center; }
  .map-text strong {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
  }
  .map-text span { font-size: 0.85rem; color: var(--gray); }
  .map-link {
    position: relative; z-index: 1;
    background: var(--red);
    color: var(--white);
    padding: 10px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: background 0.2s;
  }
  .map-link:hover { background: var(--red-dark); }

  /* FOOTER */
  footer {
    background: #080f18;
    padding: 60px 5vw 32px;
    border-top: 2px solid var(--red);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-tagline { font-size: 0.9rem; color: var(--gray); line-height: 1.7; max-width: 300px; }
  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(248,246,240,0.07);
    font-size: 0.8rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom a { color: var(--gray); text-decoration: none; }
  .footer-bottom a:hover { color: var(--red); }

  /* SCROLL ANIMATION */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-badge { display: none; }
    .why-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
    .cats-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .hero-stripe { display: none; }
  }
