/* ═══════════════════════════════════════════
   NEWWAY — Design System
   ═══════════════════════════════════════════ */

:root {
  --red: #EE271A;
  --red-dark: #C91710;
  --blue: #227DC4;
  --blue-dark: #1A6BA8;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --gray-800: #3A3A52;
  --gray-600: #6C757D;
  --gray-400: #ADB5BD;
  --gray-200: #E9ECEF;
  --gray-100: #F4F5F7;
  --white: #FFFFFF;
  --off-white: #F8F9FA;

  --font-display: 'Syne', 'Inter', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 72px;
  --section-pad: clamp(60px, 10vw, 120px);
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h-card {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.25;
}
.text-lg { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.65; }
.text-body { font-size: 1rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-xs { font-size: 0.75rem; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

.text-gray { color: var(--gray-600); }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }

/* ── Layout ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--narrow { max-width: 960px; }
.container--wide { max-width: 1440px; }

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.grid { display: grid; gap: clamp(16px, 3vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ── Navbar ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo svg, .nav__logo img { height: 42px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.nav.at-top .nav__logo-text { color: var(--dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}
.nav.at-top .nav__link { color: var(--dark); }
.nav.at-top .nav__link:hover { color: var(--red); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out-expo);
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.at-top .nav__mobile-toggle span { background: var(--dark); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 40px;
    gap: 24px;
  }
  .nav__links.open .nav__link { color: var(--dark); font-size: 1.2rem; }
}

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding:
    calc(var(--nav-height) + clamp(56px, 9vh, 104px))
    clamp(20px, 4vw, 56px)
    clamp(56px, 9vh, 96px);
}

/* Left column */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  align-self: stretch;
}

.hero__title {
  color: var(--dark);
  max-width: 18ch;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero__sub {
  color: var(--gray-600);
  max-width: 52ch;
  margin-bottom: 36px;
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Secondary action is a quiet text link, not a second button */
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.hero__link svg { width: 16px; height: 16px; transition: transform 200ms ease; }
.hero__link:hover { border-bottom-color: var(--dark); }
.hero__link:hover svg { transform: translateX(3px); }

/* Stat row — replaces the scrolling ticker */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  align-self: stretch;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hero__stat-value span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--gray-600);
  letter-spacing: 0;
}

/* Right column — the single focal image */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 60px -20px rgba(15, 23, 42, 0.18);
}
.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.hero__media-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.hero__media-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Subtle, one-shot entrance — no looping motion in the hero */
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__actions,
.hero__stats,
.hero__media {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp 600ms var(--ease-out-expo) forwards;
}
.hero__eyebrow { animation-delay: 60ms; }
.hero__title   { animation-delay: 140ms; }
.hero__sub     { animation-delay: 220ms; }
.hero__actions { animation-delay: 300ms; }
.hero__stats   { animation-delay: 380ms; }
.hero__media   { animation-delay: 180ms; transform: translateY(16px); }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__sub,
  .hero__actions, .hero__stats, .hero__media {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__media {
    aspect-ratio: 16 / 10;
    order: -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero__inner {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 56px;
  }
  .hero__actions { gap: 18px; margin-bottom: 40px; }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
  .hero__media { aspect-ratio: 4 / 3; }
}


/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(227,30,36,0.3); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover { background: var(--dark-soft); transform: translateY(-2px); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,143,213,0.3); }

.btn svg { width: 18px; height: 18px; }

/* ── Categories Section ────────────────── */
.categories { background: var(--off-white); }

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  cursor: pointer;
  group: true;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.category-card__images {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.category-card__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.category-card:hover .category-card__img-main {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.category-card:hover .category-card__overlay { opacity: 1; }

.category-card__peek {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.category-card:hover .category-card__peek {
  transform: translateY(0);
  opacity: 1;
}
.category-card__peek-thumb {
  width: 56px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.category-card__peek-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 24px;
}
.category-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.category-card__tag--red { background: rgba(227,30,36,0.08); color: var(--red); }
.category-card__tag--blue { background: rgba(45,143,213,0.08); color: var(--blue); }

.category-card__title {
  margin-bottom: 8px;
}
.category-card__desc {
  color: var(--gray-600);
  margin-bottom: 16px;
}
.category-card__meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.category-card__meta-item {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.category-card__meta-item strong {
  color: var(--dark);
  font-weight: 700;
}
.category-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: rotate(-45deg);
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
  z-index: 3;
}
.category-card:hover .category-card__arrow {
  transform: rotate(0deg);
  background: var(--red);
  color: var(--white);
}
.category-card__arrow svg { width: 18px; height: 18px; }

/* ── Product Carousel ──────────────────── */
.carousel-section { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: 20px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.carousel__track:hover { animation-play-state: paused; }
.carousel__item {
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.carousel__item:hover img { transform: scale(1.08); }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel__track--reverse {
  animation-direction: reverse;
}

/* ── Why NewWay / Advantages ───────────── */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .advantages__grid { grid-template-columns: 1fr; }
}

.adv-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.adv-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.adv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.adv-card__icon--red { background: rgba(227,30,36,0.08); color: var(--red); }
.adv-card__icon--blue { background: rgba(45,143,213,0.08); color: var(--blue); }
.adv-card__icon--dark { background: rgba(26,26,46,0.06); color: var(--dark); }

.adv-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.adv-card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.adv-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.adv-card:hover .adv-card__accent { transform: scaleX(1); }
.adv-card__accent--red { background: var(--red); }
.adv-card__accent--blue { background: var(--blue); }
.adv-card__accent--dark { background: var(--dark); }

/* ── Process Timeline ──────────────────── */
.process { background: var(--dark); color: var(--white); }

.process__track {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 60px;
  margin-top: 48px;
}
.process__line {
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--dark-soft);
}
.process__line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out-expo);
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
}
.process__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark-soft);
  border: 3px solid var(--dark);
  position: absolute;
  top: -38px;
  transition: background 0.4s, box-shadow 0.4s;
}
.process__step.active .process__dot {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227,30,36,0.2);
}
.process__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.process__label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.process__sublabel {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .process__track {
    flex-direction: column;
    gap: 32px;
    padding-top: 0;
    padding-left: 40px;
  }
  .process__line {
    top: 0;
    bottom: 0;
    left: 16px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .process__step { align-items: flex-start; text-align: left; flex-direction: row; gap: 16px; }
  .process__dot { left: -32px; top: 8px; }
}

/* ── Trust / Certifications ────────────── */
.trust__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.trust__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.trust__badge:hover { opacity: 1; }
.trust__badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.trust__badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}

/* ── CTA Banner ────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #ff4757 50%, var(--blue) 100%);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-banner__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  background: var(--white);
  color: var(--red);
}
.cta-banner .btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ── Factory Gallery ───────────────────── */
.factory-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}
.factory-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.factory-gallery__item:first-child { grid-row: 1 / 3; }
.factory-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.factory-gallery__item:hover img { transform: scale(1.05); }
.factory-gallery__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 768px) {
  .factory-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .factory-gallery__item:first-child { grid-row: auto; }
}

/* ── Footer ────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer__heading {
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1;
}
.footer__social:hover { color: #0A66C2; }

.footer__simple {
  padding: 28px 0;
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.footer__simple .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Section Headers ───────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header__overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.section-header__overline::before,
.section-header__overline::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  opacity: 0.3;
}
.section-header__desc {
  color: var(--gray-600);
  max-width: 560px;
  margin: 16px auto 0;
}


/* ── Reveal Animations ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ── Utility ───────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ── Loading Screen ────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader__logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  animation: logo-entrance 0.9s var(--ease-out-expo) forwards;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
@keyframes logo-entrance {
  0%   { opacity: 0; transform: scale(0.6) translateY(16px); }
  60%  { opacity: 1; transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.loader__bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px;
  animation: loader-progress 1.2s var(--ease-out-expo) 0.3s forwards;
}
@keyframes loader-progress {
  to { width: 100%; }
}

/* ── Navbar logo ───────────────────────── */
.nav__logo-img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ══ LOOKBOOK GRID ══════════════════════════════════════════════
   Editorial product browsing: no card chrome, images on the page,
   whisper captions. Tile shows the on-model shot and cross-fades to
   the dress-form shot on hover. */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 36px;
}
@media (max-width: 1024px) {
  .lookbook-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
}
@media (max-width: 520px) {
  .lookbook-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
}

.lookbook-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lookbook-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f1f1f3;
}
.lookbook-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.lookbook-card__img--form { opacity: 0; }
.lookbook-card:hover .lookbook-card__img--model { opacity: 0; }
.lookbook-card:hover .lookbook-card__img--form { opacity: 1; }
.lookbook-card:hover .lookbook-card__img { transform: scale(1.04); }

.lookbook-card__caption { padding: 16px 2px 0; }
.lookbook-card__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.4;
}
.lookbook-card__meta {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: #8a8a93;
  letter-spacing: 0.01em;
}
.lookbook-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .lookbook-card__img { transition: opacity 0.2s ease; }
  .lookbook-card:hover .lookbook-card__img { transform: none; }
}
