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

/* ===== BODY ===== */
body {
  overflow: hidden;
  background: #F9F9F9;
  font-family: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loaded {
  overflow: auto;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #e483a0;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

#loader.hide {
  transform: translateY(-100%);
}

.gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gallery img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(100px, 16vw, 200px);
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}

.brand-container {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.brand-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(44px, 11vw, 140px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #0D111A;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.brand-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-text span.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter {
  position: absolute;
  top: -6px;
  right: -10px;
  transform: translate(100%, -60%);
  font-size: 13px;
  font-weight: 500;
  color: #0D111A;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
}

/* ===== MAIN ===== */
main {
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL UTILITIES
   ═══════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: #F9F9F9;
  color: #0D111A;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: relative;
  z-index: 10;
  animation: navFadeIn 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nav-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #f692b0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f692b0;
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px 80px;
  text-align: center;
}

.hero-title {
  font-size: clamp(72px, 22vw, 400px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: #0D111A;
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title span.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-line {
  width: 100%;
  max-width: 100%;
  height: 2px;
  background: #f692b0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  margin: 0 0 20px;
}

.hero-line.visible {
  transform: scaleX(1);
}

.hero-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f692b0;
  margin-bottom: 64px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-desc.visible {
  opacity: 1;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 900px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .hero-cards { grid-template-columns: 1fr; max-width: 340px; }
}

/* ===== PRODUCT CARD (shared) ===== */
.product-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: #F9F9F9;
}

.card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-img-main {
  opacity: 1;
  z-index: 2;
}

.card-img-hover {
  opacity: 0;
  z-index: 1;
}

.product-card:hover .card-img-main,
.scatter-card:hover .card-img-main {
  opacity: 0;
}

.product-card:hover .card-img-hover,
.scatter-card:hover .card-img-hover {
  opacity: 1;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #f692b0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-card:hover .card-hover-overlay,
.scatter-card:hover .card-hover-overlay {
  opacity: 0.55;
}

.product-card:hover .card-image img,
.scatter-card:hover .card-image img {
  transform: scale(1.04);
}

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 4px;
}

.card-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0D111A;
}

.card-price {
  font-size: 13px;
  font-weight: 500;
  color: #C16E80;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   SECTION 2 — BRAND PHILOSOPHY
   ═══════════════════════════════════════════════ */
.brand-intro {
  padding: 140px 48px 120px;
  text-align: center;
}

.brand-intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.brand-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #f692b0;
  margin-bottom: 32px;
}

.brand-intro-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0D111A;
  margin-bottom: 40px;
}

.brand-intro-title > * {
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-intro-title span:nth-child(1) { transition-delay: 0s; }
.brand-intro-title span:nth-child(2) { transition-delay: 0.06s; }
.brand-intro-title span:nth-child(3) { transition-delay: 0.12s; }
.brand-intro-title span:nth-child(4) { transition-delay: 0.18s; }
.brand-intro-title span:nth-child(5) { transition-delay: 0.22s; }
.brand-intro-title span:nth-child(6) { transition-delay: 0.26s; }

.brand-intro-text {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 620px;
  margin: 0 auto 60px;
}

.brand-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #f692b0;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .brand-intro { padding: 100px 24px 80px; }
  .brand-stats { gap: 40px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════
   SECTION 3 — THE COLLECTION
   ═══════════════════════════════════════════════ */
.gallery-scatter {
  padding: 100px 48px 80px;
  background: #F9F9F9;
}

.gallery-scatter-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f692b0;
  text-align: center;
  margin-bottom: 64px;
}

.scatter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.scatter-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.scatter-card .card-image {
  margin-bottom: 12px;
}

.gallery-cta-wrap {
  text-align: center;
  margin-top: 60px;
}

.gallery-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f692b0;
  text-decoration: none;
  border-bottom: 1px solid #f692b0;
  padding-bottom: 4px;
  transition: letter-spacing 0.4s ease, opacity 0.3s;
}

.gallery-cta:hover {
  opacity: 0.6;
  letter-spacing: 0.3em;
}

@media (max-width: 900px) {
  .scatter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-scatter { padding: 80px 24px 60px; }
}

@media (max-width: 500px) {
  .scatter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════
   SECTION 4 — LOOKBOOK HORIZONTAL STICKY
   ═══════════════════════════════════════════════ */
.lookbook-sticky {
  height: 600vh;
  background: #0D111A;
  position: relative;
}

.lookbook-sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
  pointer-events: none;
}

.lookbook-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f692b0;
  margin-bottom: 12px;
}

.lookbook-sub {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.lookbook-scroll-hint {
  font-size: 11px;
  color: rgba(245, 211, 221, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: hintPulse 2s infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.lookbook-sticky-track {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 10;
  margin-top: -100vh;
}

.lookbook-sticky-slide {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.lookbook-sticky-slide img {
  height: 100vh;
  width: auto;
  max-width: 45vw;
  object-fit: cover;
  flex-shrink: 0;
  padding: 48px 12px;
}

@media (max-width: 768px) {
  .lookbook-sticky-slide img {
    max-width: 80vw;
    padding: 32px 8px;
  }
  .lookbook-sticky-header {
    padding: 0 24px;
  }
}

/* ═══════════════════════════════════════════════
   SECTION 5 — THE IVELLE STANDARD (LUXURY EDITORIAL)
   ═══════════════════════════════════════════════ */
.excellence {
  position: relative;
  z-index: 30;
  padding: 160px 48px 160px;
  background: linear-gradient(180deg, #F9F9F9 0%, #FDF5F6 50%, #F9F9F9 100%);
  overflow: hidden;
  text-align: center;
}

/* ===== FLOATING SPARKLES ===== */
.excellence-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 14px;
  color: #f692b0;
  opacity: 0.18;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle:nth-child(2)  { animation-delay: 1.2s; }
.sparkle:nth-child(3)  { animation-delay: 2.4s; }
.sparkle:nth-child(4)  { animation-delay: 0.6s; }
.sparkle:nth-child(5)  { animation-delay: 3s; }
.sparkle:nth-child(6)  { animation-delay: 1.8s; font-size: 10px; }

.sparkle.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f692b0;
  display: inline-block;
  animation-duration: 5s;
}

.sparkle.dot:nth-child(8)  { animation-delay: 0.8s; }
.sparkle.dot:nth-child(9)  { animation-delay: 2s; }
.sparkle.dot:nth-child(10) { animation-delay: 3.2s; }

.sparkle.ribbon {
  animation-duration: 7s;
  opacity: 0.12;
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.18; }
  25%      { transform: translateY(-12px) scale(1.3); opacity: 0.35; }
  50%      { transform: translateY(4px) scale(0.85); opacity: 0.1; }
  75%      { transform: translateY(-6px) scale(1.15); opacity: 0.25; }
}

/* ===== HEADING AREA ===== */
.excellence-head {
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.excellence-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #f692b0;
  margin-bottom: 16px;
}

.excellence-title-main {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0D111A;
  margin-bottom: 28px;
  line-height: 1.05;
}

.excellence-title-main span {
  color: #f692b0;
}

.ornament-svg {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.excellence-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== WAVE CONTAINER ===== */
.excellence-wave {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 520px;
}

/* ===== CURVED CONNECTOR ===== */
.excellence-curve {
  position: absolute;
  top: 50%;
  left: 2%;
  width: 96%;
  height: 120px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease 0.8s;
  pointer-events: none;
}

.excellence-wave.revealed .excellence-curve {
  opacity: 1;
}

/* ===== INDIVIDUAL CARDS ===== */
.excellence-card {
  position: relative;
  z-index: 3;
  flex: 0 0 190px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.55s ease,
              border-color 0.45s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  overflow: hidden;
  opacity: 0;
  transform: translateY(120px);
  display: flex;
  flex-direction: column;
}

/* Wave stagger via transforms — applied AFTER reveal */
.e-card-3 { flex: 0 0 210px; }

.e-card-1,
.e-card-2,
.e-card-3,
.e-card-4,
.e-card-5 {
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Revealed state — cards enter one by one, left to right */
.excellence-wave.revealed .excellence-card:nth-child(2) {
  opacity: 1;
  transform: translateY(40px);
  /* e-card-1 */
}
.excellence-wave.revealed .excellence-card:nth-child(3) {
  opacity: 1;
  transform: translateY(-30px);
  transition-delay: 0.2s;
  /* e-card-2 */
}
.excellence-wave.revealed .excellence-card:nth-child(4) {
  opacity: 1;
  transform: translateY(-65px);
  transition-delay: 0.4s;
  /* e-card-3 focal */
}
.excellence-wave.revealed .excellence-card:nth-child(5) {
  opacity: 1;
  transform: translateY(-30px);
  transition-delay: 0.6s;
  /* e-card-4 */
}
.excellence-wave.revealed .excellence-card:nth-child(6) {
  opacity: 1;
  transform: translateY(40px);
  transition-delay: 0.8s;
  /* e-card-5 */
}

/* ===== CARD BODY — text first, centered ===== */
.e-card-body {
  padding: 24px 18px 0;
  text-align: center;
}

.e-card-num {
  font-size: 34px;
  font-weight: 900;
  color: #f692b0;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.45s ease;
}

.e-card-body h3 {
  font-size: 13px;
  font-weight: 600;
  color: #0D111A;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.e-card-line {
  width: 28px;
  height: 1px;
  background: #f692b0;
  margin: 0 auto 10px;
  transition: width 0.4s ease;
}

.e-card-tease {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: #999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.e-card-expand {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  color: #0D111A;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease 0.05s,
              margin 0.4s ease;
  margin-top: 0;
}

/* ===== CARD VISUAL — image below text ===== */
.e-card-visual {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  margin-top: auto;
}

.e-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.e-card-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
  pointer-events: none;
}

.excellence-card:hover .e-card-visual img {
  transform: scale(1.1);
}

/* ===== CARD HOVER ===== */
.excellence-card:hover {
  transform: translateY(-75px) scale(1.12) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 4px 16px rgba(245,211,221,0.3);
  border-color: #f692b0;
  z-index: 10;
}

.excellence-card:hover .e-card-num {
  color: #0D111A;
}

.excellence-card:hover .e-card-line {
  width: 48px;
}

.excellence-card:hover .e-card-tease {
  opacity: 0;
  transform: translateY(-6px);
  position: absolute;
}

.excellence-card:hover .e-card-expand {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

/* Focal card — bigger */
.e-card-3:hover {
  transform: translateY(-78px) scale(1.15) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .excellence-wave {
    flex-wrap: wrap;
    gap: 18px;
    min-height: auto;
  }
  .excellence-card {
    flex: 0 0 160px;
  }
  .e-card-1, .e-card-2, .e-card-3, .e-card-4, .e-card-5 {
    transform: translateY(0) !important;
  }
  .e-card-3 { flex: 0 0 180px; }
  .excellence-card:hover {
    transform: translateY(-12px) scale(1.06) !important;
  }
  .e-card-3:hover {
    transform: translateY(-12px) scale(1.08) !important;
  }
  .excellence-curve { display: none; }
}

@media (max-width: 600px) {
  .excellence { padding: 100px 20px 100px; }
  .excellence-wave {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .excellence-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }
  .e-card-visual { height: 100px; }
  .e-card-body { padding: 20px 16px 0; }
  .excellence-card:hover {
    transform: scale(1.03) !important;
  }
}

/* ═══════════════════════════════════════════════
   SECTION 6 — CTA / NEWSLETTER
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: 120px 48px;
  background: #F9F9F9;
  text-align: center;
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f692b0;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  border-bottom: 1px solid #f692b0;
  padding-bottom: 8px;
}

.cta-form input {
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  color: #0D111A;
  outline: none;
  padding: 8px 0;
}

.cta-form input::placeholder {
  color: #bbb;
}

.cta-form button {
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f692b0;
  cursor: pointer;
  padding: 8px 0 8px 16px;
  transition: opacity 0.3s;
}

.cta-form button:hover {
  opacity: 0.5;
}

@media (max-width: 500px) {
  .cta-section { padding: 80px 24px; }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: #0D111A;
  color: #fff;
  padding: 80px 48px 100px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #f692b0;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #f692b0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #666;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #f692b0;
}

@media (max-width: 768px) {
  .footer { padding: 60px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE GLOBAL
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero-body { padding: 48px 24px 64px; }
  .hero-title { margin-bottom: 24px; }
  .hero-desc { margin-bottom: 48px; }
}
