/* ══════════════════════════════════════════════════════
   METROKART — PREMIUM LUXURY LANDING PAGE
   Brand: Navy #133e76 | Amber #eebc3b | Cream #f5f5f1 | Dark #1d1c24
══════════════════════════════════════════════════════ */

/* ─── RESET & ROOT ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --navy: #133e76;
  --navy-deep: #0b2a52;
  --navy-mid: #1a4d8f;
  --amber: #eebc3b;
  --amber-deep: #d4a52a;
  --amber-light: #f5d06a;
  --cream: #f5f5f1;
  --dark: #1d1c24;
  --dark-mid: #2a2938;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-bg-hover: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: rgba(19, 62, 118, 0.15);
  --glass-blur: blur(16px) saturate(180%);

  /* Typography */
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Spacing */
  --section-pad: 6rem 1.5rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-smooth);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
}

/* ─── SELECTION ─────────────────────────────────────── */
::selection {
  background: var(--amber);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════
   LIQUID GLASS CARD
═══════════════════════════════════════════════════════ */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(19, 62, 118, 0.12),
    0 2px 8px rgba(19, 62, 118, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 60px rgba(19, 62, 118, 0.2),
    0 4px 16px rgba(19, 62, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(238, 188, 59, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(238, 188, 59, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid rgba(19, 62, 118, 0.3);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(19, 62, 118, 0.08);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(245, 245, 241, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(19, 62, 118, 0.12);
  box-shadow: 0 4px 30px rgba(19, 62, 118, 0.08);
  padding: 0.7rem 0;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo link acts as a cropped viewport — clips the PNG whitespace */
/* PNG: square canvas, content spans ~12%–92% wide, ~28%–83% tall */
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  width: 200px;
  /* crop window: shows ~80% of content width */
  height: 108px;
  /* crop window: shows ~55% of image = content height at 250px render */
  overflow: hidden;
  position: relative;
}

.nav-logo-img {
  width: 250px;
  /* 200 / 0.80 = 250px so content fills the viewport width */
  height: auto;
  position: absolute;
  top: -70px;
  /* 28% × 250px = 70px top whitespace to skip */
  left: -30px;
  /* 12% × 250px = 30px left whitespace to skip */
  transition: transform 0.3s;
  display: block;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--navy-deep);
  background: rgba(19, 62, 118, 0.06);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(19, 62, 118, 0.2);
  transition: var(--transition);
}

.btn-nav-call:hover {
  background: rgba(19, 62, 118, 0.06);
  border-color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f0fb 0%, #f0e8c8 40%, #f5f5f1 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 62, 118, 0.5) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.7) 0%, transparent 70%);
  top: 20%;
  right: 5%;
  animation-delay: -3s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(19, 62, 118, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: 40%;
  animation-delay: -5s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  animation: particleFly var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFly {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 0.7;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1.5) rotate(180deg);
  }
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 0.9s var(--ease-smooth) both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  background: rgba(238, 188, 59, 0.15);
  border: 1px solid rgba(238, 188, 59, 0.4);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(238, 188, 59, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(238, 188, 59, 0);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-highlight {
  position: relative;
  color: var(--amber-deep);
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  border-radius: 4px;
  opacity: 0.6;
  transform: skewX(-4deg);
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(29, 28, 36, 0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(29, 28, 36, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(19, 62, 118, 0.2);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  animation: fadeInRight 0.9s var(--ease-smooth) 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px rgba(19, 62, 118, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.glass-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(19, 62, 118, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  animation: pillFloat 4s ease-in-out infinite;
  white-space: nowrap;
}

.pill-top {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.pill-bottom {
  bottom: 24px;
  left: -20px;
  animation-delay: -2s;
}

@keyframes pillFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.trending-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: badgePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(19, 62, 118, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(19, 62, 118, 0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6) translateY(30%);
  }
}

/* ═══════════════════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--navy);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.9rem 0;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-track span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-dot {
  color: var(--amber) !important;
  font-size: 0.7rem !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════ */
.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--amber-deep);
  transform: translateY(-50%);
}

.section-label::before {
  right: 100%;
}

.section-label::after {
  left: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--amber-deep);
}

.section-subtitle {
  color: rgba(29, 28, 36, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   COLLECTIONS
═══════════════════════════════════════════════════════ */
.collections {
  background: white;
  position: relative;
  overflow: hidden;
}

.collections::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--cream);
}

.collection-card.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(19, 62, 118, 0.1);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.collection-card--large .card-image-wrap {
  height: 380px;
}

.collection-card--full {
  grid-column: 1 / -1;
}

.collection-card--full .card-image-wrap {
  height: 320px;
}

.collection-card--full .card-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.collection-card--full .card-title {
  font-size: 1.6rem;
}

.collection-card--full .card-desc {
  margin-bottom: 0;
  max-width: 500px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-smooth);
}

.collection-card:hover .card-img {
  transform: scale(1.07);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 62, 118, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(238, 188, 59, 0.15);
  border: 1px solid rgba(238, 188, 59, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(29, 28, 36, 0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.3s;
}

.card-cta:hover {
  gap: 10px;
  color: var(--amber-deep);
}

/* ═══════════════════════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════════════════════ */
.story-section {
  background: linear-gradient(135deg, #eef3fc 0%, #f5f5f1 60%, #faf5e4 100%);
  position: relative;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.12) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  filter: blur(60px);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-images-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(19, 62, 118, 0.18);
}

.story-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.story-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.8);
}

.story-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.story-stat-bubble {
  position: absolute;
  top: -20px;
  right: 20px;
  padding: 1rem 1.4rem;
  text-align: center;
  background: rgba(19, 62, 118, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.bubble-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.bubble-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.03em;
  max-width: 80px;
  display: block;
  text-align: center;
  margin-top: 4px;
}

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

.story-para {
  color: rgba(29, 28, 36, 0.72);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.story-values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.story-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  background: rgba(19, 62, 118, 0.07);
  border: 1px solid rgba(19, 62, 118, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.story-pill svg {
  flex-shrink: 0;
}

.story-pill:hover {
  background: var(--navy);
  color: white;
}

.story-pill:hover svg path,
.story-pill:hover svg circle {
  stroke: white;
  fill: white;
}

/* ═══════════════════════════════════════════════════════
   SHOWCASE CAROUSEL
═══════════════════════════════════════════════════════ */
.showcase-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.showcase-section .section-container {
  padding: 0 2rem 0;
}

.showcase-section .section-label {
  color: var(--amber);
}

.showcase-section .section-label::before,
.showcase-section .section-label::after {
  background: var(--amber);
}

.showcase-section .section-title {
  color: white;
}

.showcase-carousel {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
  left: 1.5rem;
}

.carousel-btn--next {
  right: 1.5rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.carousel-dot.active {
  width: 24px;
  background: var(--amber);
}

/* ═══════════════════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════════════════ */
.values-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--amber) 50%, var(--navy) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.8rem;
  background: rgba(245, 245, 241, 0.8);
  border: 1px solid rgba(19, 62, 118, 0.08);
  box-shadow: 0 4px 24px rgba(19, 62, 118, 0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s;
}

.value-card:hover::before {
  transform: scale(2);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(19, 62, 118, 0.1) 0%, rgba(238, 188, 59, 0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--navy);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(29, 28, 36, 0.65);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   MISSION & VISION
═══════════════════════════════════════════════════════ */
.mission-vision-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(19, 62, 118, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(19, 62, 118, 0.1);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(19, 62, 118, 0.14),
    0 4px 16px rgba(19, 62, 118, 0.08);
}

.mv-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.mv-icon--mission {
  background: linear-gradient(135deg, rgba(19, 62, 118, 0.12) 0%, rgba(238, 188, 59, 0.18) 100%);
  color: var(--navy);
}

.mv-icon--vision {
  background: linear-gradient(135deg, rgba(238, 188, 59, 0.18) 0%, rgba(19, 62, 118, 0.12) 100%);
  color: var(--amber-deep);
}

.mv-card:hover .mv-icon-wrap {
  background: var(--navy);
  color: var(--amber);
}

.mv-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.6rem;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.mv-text {
  font-size: 1rem;
  color: rgba(29, 28, 36, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mv-accent-bar {
  height: 4px;
  border-radius: 4px;
  width: 60px;
}

.mv-accent-bar--mission {
  background: linear-gradient(90deg, var(--navy) 0%, var(--amber) 100%);
}

.mv-accent-bar--vision {
  background: linear-gradient(90deg, var(--amber) 0%, var(--navy) 100%);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, #eef3fc 0%, #f5f5f1 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 62, 118, 0.08);
  position: relative;
}

.testimonial-featured {
  background: rgba(19, 62, 118, 0.92);
  border-color: rgba(238, 188, 59, 0.4);
  transform: translateY(-12px);
  box-shadow:
    0 24px 60px rgba(19, 62, 118, 0.25),
    0 4px 16px rgba(19, 62, 118, 0.15);
}

.testimonial-featured .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-featured .author-name {
  color: white;
}

.testimonial-featured .author-loc {
  color: rgba(255, 255, 255, 0.6);
}

.stars {
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(29, 28, 36, 0.75);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-featured .author-avatar {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--navy);
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-loc {
  font-size: 0.78rem;
  color: rgba(29, 28, 36, 0.5);
}

/* ═══════════════════════════════════════════════════════
   CAREERS
═══════════════════════════════════════════════════════ */
.careers-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.careers-content {
  position: relative;
  z-index: 2;
}

.careers-text {
  font-size: 1.05rem;
  color: rgba(29, 28, 36, 0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.careers-visual {
  position: relative;
}

.careers-image-frame {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease-bounce);
}

.careers-image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.careers-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.careers-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(19, 62, 118, 0.1);
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(19, 62, 118, 0.15);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.cta-blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(238, 188, 59, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cta-headline em {
  color: var(--amber);
  font-style: italic;
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.cta-section .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 84px;
  width: auto;
  /* Invert for dark bg: make logo visible */
  filter: brightness(1) invert(0);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--amber);
}

.footer-contact-item:hover {
  color: var(--amber);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-links-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links-group a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--amber);
}

/* ═══════════════════════════════════════════════════════
   INTERSECTION OBSERVER ANIMATIONS
═══════════════════════════════════════════════════════ */
[data-index] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

[data-index].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-index="0"] {
  transition-delay: 0.0s;
}

[data-index="1"] {
  transition-delay: 0.1s;
}

[data-index="2"] {
  transition-delay: 0.2s;
}

[data-index="3"] {
  transition-delay: 0.3s;
}

[data-index="4"] {
  transition-delay: 0.4s;
}

[data-index="5"] {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card--large {
    grid-column: 1 / -1;
  }

  .collection-card--large .card-image-wrap {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-badge {
    display: inline-flex;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .pill-top {
    right: -10px;
  }

  .pill-bottom {
    left: -10px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-images-stack {
    padding-bottom: 40px;
    padding-right: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    transform: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 1.25rem;
  }

  /* Navbar: no padding so logo can hug the top-left corner */
  .navbar {
    padding: 0;
  }

  .navbar.scrolled {
    padding: 0;
  }

  /* Make the container relative so absolute children work */
  .nav-container {
    position: relative;
    align-items: flex-start;
    padding: 0;
    min-height: 72px;
  }

  /* Logo: cropped viewport for mobile — clips PNG whitespace */
  .nav-logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    /* Mobile crop: viewport 160px wide, img = 160/0.80 = 200px */
    width: 160px;
    height: 86px;
    /* 55% × 200px = 110, trimmed a little */
    overflow: hidden;
  }

  .nav-logo-img {
    width: 200px;
    /* 160 / 0.80 = 200px so content fills viewport */
    height: auto;
    position: absolute;
    top: -56px;
    /* 28% × 200px */
    left: -24px;
    /* 12% × 200px */
  }

  /* Hamburger pinned to top-right */
  .nav-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 241, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .nav-links.open a {
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav-call {
    display: none;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure collection card images load and display correctly on mobile */
  .card-image-wrap {
    height: 220px;
  }

  .collection-card--large .card-image-wrap {
    height: 260px;
  }

  .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .careers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Carousel images on mobile */
  .carousel-slide img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Story section images on mobile */
  .story-img-main img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .story-img-secondary img {
    height: 130px;
    width: 100%;
    object-fit: cover;
  }

  /* Hero main image */
  .hero-main-image {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .nav-container {
    min-height: 75px;
  }

  /* Small phone crop: viewport 140px → img = 140/0.80 = 175px */
  .nav-logo {
    width: 140px;
    height: 75px;
    /* 55% × 175px ≈ 96px, cropped a bit */
  }

  .nav-logo-img {
    width: 175px;
    /* 140 / 0.80 */
    top: -49px;
    /* 28% × 175px */
    left: -21px;
    /* 12% × 175px */
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-image-frame {
    max-width: 100%;
  }

  /* Smaller screens: tighter image heights */
  .card-image-wrap {
    height: 200px;
  }

  .collection-card--large .card-image-wrap {
    height: 230px;
  }

  .carousel-slide img {
    height: 200px;
    object-fit: cover;
  }

  .story-img-main img {
    height: 180px;
  }

  .glass-pill {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
  }

  .pill-top {
    right: 0;
    top: 10px;
  }

  .pill-bottom {
    bottom: 10px;
    left: 0;
  }
}