@font-face { font-display: swap; }
:root {
    --red: #C8102E;
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --navy: #0A1628;
    --blue: #1E3A8A;
    --white: #F5F0E8;
    --dark: #080C14;
    --mid: #111827;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-slides {
    position: absolute; inset: 0;
  }

  .hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }

  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }

  .hero-slide.active { opacity: 1; }

  /* Each slide uses a different key visual color treatment */
  .slide-1 {
    background-image:
      linear-gradient(to right, rgba(8,12,20,0.55) 30%, rgba(8,12,20,0.0) 65%);
    background-color: #0d1520;
  }
  .slide-2 {
    background-image:
      linear-gradient(to right, rgba(8,12,20,0.55) 30%, rgba(8,12,20,0.0) 65%);
    background-color: #1a1200;
  }
  .slide-3 {
    background-image:
      linear-gradient(to right, rgba(8,12,20,0.55) 30%, rgba(8,12,20,0.0) 65%);
    background-color: #0a1020;
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--dark) 100%);
    pointer-events: none; z-index: 2;
  }

  .hero-content {
    position: relative; z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6vw;
    max-width: 700px;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-logo-ww {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 900;
    font-style: italic;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-logo-ww .wonder {
    display: block;
    color: var(--white);
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  }

  .hero-logo-ww .woman {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    text-shadow: 0 0 60px rgba(201,168,76,0.4);
  }

  .hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2.4rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201,168,76,0.4);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201,168,76,0.07);
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }

  .hero-cta {
    margin-top: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
  }

  .btn-primary {
    display: inline-block;
    padding: 1rem 2.4rem;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover {
    background: #e0102a;
    transform: translateY(-2px);
  }

  .btn-ghost {
    display: inline-block;
    padding: 1rem 2.4rem;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  /* slide indicators */
  .slide-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 6vw;
    z-index: 5;
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }

  .dot.active {
    background: var(--gold);
    width: 48px;
  }

  /* ─── SECTION BASE ─── */
  section {
    padding: 6rem 6vw;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.01em;
  }

  .divider {
    width: 48px; height: 3px;
    background: var(--red);
    margin: 1.6rem 0;
  }

  /* ─── MANIFESTO ─── */
  .manifesto {
    background: var(--mid);
    position: relative;
    overflow: hidden;
  }

  .manifesto::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .manifesto::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
  }

  .manifesto-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .manifesto-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(100px, 18vw, 240px);
    font-weight: 900;
    font-style: italic;
    color: rgba(200,16,46,0.04);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
  }

  .manifesto-text {
    position: relative; z-index: 1;
  }

  .manifesto-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
  }

  .manifesto-big em {
    color: var(--gold);
    font-style: normal;
  }

  .manifesto-body {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,240,232,0.7);
    margin-bottom: 1.5rem;
  }

  .manifesto-body strong {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .manifesto-visual {
    position: relative; z-index: 1;
    text-align: center;
  }

  .manifesto-visual img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 60px rgba(200,16,46,0.3));
  }

  .stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
  }

  /* ─── MODELS ─── */
  .models {
    background: var(--dark);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .models-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .model-card {
    position: relative;
    overflow: hidden;
    background: var(--mid);
    cursor: pointer;
    group: true;
  }

  .model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    z-index: 3;
    pointer-events: none;
  }

  .model-card:hover::before {
    border-color: var(--gold);
  }

  .model-img-wrap {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem 2rem;
    position: relative;
    overflow: hidden;
  }

  /* Color-specific bg glows */
  .model-card.blue .model-img-wrap { background: radial-gradient(ellipse at center, rgba(30,58,138,0.3) 0%, transparent 70%); }
  .model-card.white .model-img-wrap { background: radial-gradient(ellipse at center, rgba(200,16,46,0.2) 0%, transparent 70%); }
  .model-card.yellow .model-img-wrap { background: radial-gradient(ellipse at center, rgba(201,168,76,0.2) 0%, transparent 70%); }

  .model-img {
    width: 90%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6));
  }

  .model-card:hover .model-img {
    transform: translateY(-8px) scale(1.04);
  }

  .model-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
  }

  .model-card.blue .model-accent { background: linear-gradient(to right, #1E3A8A, #3B82F6); }
  .model-card.white .model-accent { background: linear-gradient(to right, var(--red), #ff6080); }
  .model-card.yellow .model-accent { background: linear-gradient(to right, #B45309, var(--gold-light)); }

  .model-info {
    padding: 1.8rem 2rem 2.2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .model-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .model-card.blue .model-tag { color: #60a5fa; }
  .model-card.white .model-tag { color: #fca5a5; }
  .model-card.yellow .model-tag { color: var(--gold-light); }

  .model-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.8rem;
  }

  .model-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(245,240,232,0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .model-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-light);
    transition: gap 0.2s, color 0.2s;
  }

  .model-btn:hover {
    color: var(--gold);
    gap: 1rem;
  }

  .model-btn::after {
    content: '→';
    font-size: 16px;
  }

  /* ─── KIT ─── */
  .kit {
    background: var(--mid);
    position: relative;
    overflow: hidden;
  }

  .kit::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,16,46,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(30,58,138,0.1) 0%, transparent 60%);
  }

  .kit-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative; z-index: 1;
  }

  .kit-img {
    position: relative;
  }

  .kit-img img {
    width: 100%;
    border-radius: 2px;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,0.7));
  }

  .kit-items {
    margin-top: 3rem;
  }

  .kit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .kit-item:last-child { border-bottom: none; }

  .kit-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    flex-shrink: 0;
    width: 24px;
    padding-top: 3px;
  }

  .kit-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.2rem;
  }

  .kit-item-desc {
    font-size: 15px;
    color: rgba(245,240,232,0.5);
    line-height: 1.5;
  }

  /* ─── CTA FINAL ─── */
  .cta-final {
    position: relative;
    background: var(--red);
    text-align: center;
    padding: 7rem 6vw;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: 'WW';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(200px, 30vw, 400px);
    font-weight: 900;
    font-style: italic;
    color: rgba(255,255,255,0.05);
    pointer-events: none;
    user-select: none;
  }

  .cta-final-inner {
    position: relative; z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
  }

  .cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 1rem;
  }

  .cta-title span {
    color: var(--gold-light);
    display: block;
  }

  .cta-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  .cta-btn-white {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: #fff;
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }

  .limited-note {
    margin-top: 1.5rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 2.5rem 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand-logo svg {
    width: 100%;
    height: auto;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
    text-align: right;
    line-height: 1.6;
  }

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

  /* Feature sections grid */
  .feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .feature-grid--armor {
    grid-template-columns: 1fr 2fr;
  }

  @media (max-width: 900px) {
    .feature-grid--armor {
      grid-template-columns: 1fr;
    }
    /* Image goes first on mobile for armor frame */
    .feature-grid--armor .armor-img {
      order: -1;
      margin-right: 0 !important;
      justify-content: center !important;
    }
    .feature-grid--armor .armor-img img {
      width: 90% !important;
      max-width: 360px !important;
      transform: none !important;
    }
  }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .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) {
  /* Gallery 3 col → 1 col on mobile */
  section[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  section[style*="grid-template-columns:1fr 1fr 1fr"] > div {
    height: 260px;
  }

  /* New feature sections */
  section > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  section > div[style*="grid-template-columns:1fr 1fr"] > div:first-child img {
    max-width: 320px !important;
  }


    .manifesto-inner,
    .kit-inner { grid-template-columns: 1fr; gap: 3rem; }
    .models-grid { grid-template-columns: 1fr; gap: 1px; }
    .manifesto-visual { order: -1; }
    .manifesto-visual img { max-width: 320px; }
    .stats-row { gap: 1.5rem; }
    .model-img-wrap { height: 260px; }
    footer { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
  }

  @media (max-width: 600px) {
    section { padding: 4rem 5vw; }
    .hero-content { padding: 0 5vw; max-width: 100%; justify-content: flex-end; padding-bottom: 5rem; }
    .slide-dots { left: 5vw; }
    .hero-logo-ww { font-size: clamp(48px, 14vw, 80px); margin-bottom: 1rem; }
    .hero-tagline { font-size: clamp(14px, 4vw, 20px); margin-bottom: 1.2rem; }
    .hero-badges { gap: 0.5rem; }
    .badge { padding: 0.35rem 0.7rem; font-size: 11px; }
    .hero-cta { margin-top: 1.5rem; }
    .kit-item { flex-direction: column; gap: 0.4rem; }
  }