﻿:root{
  --bg: #f5f1eb;
  --text: #111111;
  --muted: #7d766d;
  --line: rgba(17, 17, 17, 0.08);
  --accent: #111111;
  --accent-2: #2a2a2a;
  --dark: #050505;
  --white: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.58);
  --card: rgba(255, 255, 255, 0.08);
  --max: 1400px;
  --radius: 28px;

  --brands-bg: #f5f1eb;
  --brands-panel: #efebe6;
  --brands-panel-border: rgba(94, 108, 128, 0.08);
  --brands-shadow: 0 16px 36px rgba(80, 78, 86, 0.08);
  --brands-shadow-hover: 0 24px 48px rgba(40, 40, 40, 0.14);
  --brands-title: #060606;
  --brands-muted: #7a7f87;
  --brands-tag: #8c98a7;
  --brands-accent-1: #111111;
  --brands-accent-2: #2f2f2f;
  --brands-overlay: rgba(16, 20, 28, 0.12);
  --section-title-first-size: clamp(4.65rem, 5.9vw, 5.35rem);
  --section-title-second-size: clamp(3.75rem, 4.9vw, 4.45rem);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open{
  overflow: hidden;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea{
  cursor: pointer;
}

.topbar__inner,
.container{
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.topbar__inner{
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand{
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  justify-self: start;
}

.brand span{
  color: #444444;
}

.nav{
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #6b665f;
  justify-self: end;
}

.nav a{
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #111111;
  transition: width 0.25s ease;
}

.nav a:hover{
  color: var(--text);
}

.nav a:hover::after{
  width: 100%;
}

.nav-cta{
  justify-self: end;
}


.btn{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 75%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn:hover{
  transform: translateY(-3px) scale(1.01);
}

.btn:hover::before{
  left: 150%;
}

/* Primary – filled dark */
.btn--dark,
.brands-viewall{
  background: linear-gradient(180deg, #191919 0%, #050505 100%);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.btn--dark:hover,
.brands-viewall:hover{
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Secondary – outline */
.btn--light{
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn--light:hover{
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* 기존 hero 코드 
.hero{
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 40%, rgba(0, 0, 0, 0.34) 100%),
    url("https://images.unsplash.com/photo-1571781926291-c477ebfd024b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}
*/

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.76) 100%);
}

.hero__content{
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: end;
  min-height: calc(100vh - 86px);
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.eyebrow::before{
  content: "";
  width: 44px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.hero h1{
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 7.6rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-align: right;
}

.hero h1 .ghost{
  display: block;
  color: rgba(255, 255, 255, 0.16);
  font-style: italic;
  font-weight: 300;
}

.hero h1 .accent{
  display: block;
  color: rgba(255, 255, 255, 0.88);
}

.hero__copy{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-bottom: 16px;
}

.hero__copy p{
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 26px;
}

.hero__actions{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.hero__actions .btn{
  width: 244px;
}

.hero__stats{
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat{
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong{
  display: block;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.stat span{
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* =========================
   LOGO TICKER - seamless infinite logo strip
========================= */

.ticker-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-wrap::before,
.ticker-wrap::after{
  content: none;
  display: none;
}

.ticker{
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}

.ticker__group{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 44px;
  padding: 18px 22px;
}

.ticker__image{
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.96;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.18) contrast(1.14);
}

.ticker__image--wide{
  max-width: 170px;
}

.ticker__image--compact{
  max-width: 120px;
}

.ticker__pipe,
.ticker__item,
.ticker__dot,
.ticker__emoji,
.ticker__logo{
  display: none !important;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .ticker__group{
    gap: 30px;
    padding: 15px 15px;
  }

  .ticker__image{
    height: 28px;
    max-width: 128px;
  }

  .ticker__image--wide{
    max-width: 145px;
  }

  .ticker__image--compact{
    max-width: 102px;
  }
}


/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(244, 223, 227, 0.45), transparent 24%),
    linear-gradient(180deg, #f7f3ee 0%, #f2ece5 100%);
}

.about-shell{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-heading{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 340px);
  gap: 24px;
  align-items: start;
}

.about-kicker{
  margin-bottom: 10px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #bf726d;
}

.about-title{
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  color: #111111;
}

.about-title span{
  display: block;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 800;
}

.about-title em{
  display: block;
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  font-style: italic;
  font-weight: 300;
  color: #8d5e63;
}

.about-intro{
  margin: 0;
  max-width: 320px;
  justify-self: end;
  font-size: 0.84rem;
  line-height: 1.72;
  color: #726960;
  text-align: right;
}

.about-layout{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.84fr);
  gap: 24px;
  align-items: stretch;
}

.about-tabs{
  display: grid;
  gap: 12px;
}

.about-tab{
  position: relative;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 16px 16px 16px 14px;
  border: 1px solid rgba(169, 124, 128, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 249, 0.64));
  box-shadow: 0 12px 24px rgba(61, 41, 42, 0.04);
  text-align: left;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.about-tab:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(61, 41, 42, 0.07);
}

.about-tab.is-active{
  transform: translateY(-1px);
  border-color: #d76c7d;
  background: linear-gradient(180deg, #f7dce1 0%, #f3cdd5 100%);
  box-shadow: 0 20px 34px rgba(173, 92, 108, 0.16);
}

.about-tab__accent{
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(225, 156, 166, 0.14), rgba(217, 110, 125, 0.58));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.about-tab.is-active .about-tab__accent{
  transform: scaleX(1.35);
  background: linear-gradient(180deg, #efb7c0 0%, #d85f73 100%);
  box-shadow: 0 0 0 6px rgba(217, 110, 125, 0.14);
}

.about-tab__body{
  display: grid;
  gap: 7px;
}

.about-tab__tag{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(244, 229, 231, 0.8);
  color: #a36c73;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-tab.is-active .about-tab__tag{
  background: rgba(255, 255, 255, 0.5);
  color: #a3495c;
}

.about-tab__body strong{
  font-size: 0.92rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #181514;
}

.about-tab.is-active .about-tab__body strong{
  color: #3d1d24;
}

.about-tab__body small{
  font-size: 0.88rem;
  line-height: 1.6;
  color: #70665f;
}

.about-tab.is-active .about-tab__body small{
  color: #6b3d46;
}

.about-highlight{
  margin-top: 2px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #181313 0%, #2b1c1f 100%);
  color: #f7f0ea;
  box-shadow: 0 20px 34px rgba(26, 17, 18, 0.14);
}

.about-highlight__label{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 237, 240, 0.54);
}

.about-highlight__text{
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.68;
}

.about-stage{
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #191213 0%, #100c0d 100%);
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(34, 22, 23, 0.12);
}

.about-stage__panel{
  padding: 24px 22px 18px;
}

.about-stage__eyebrow{
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 224, 230, 0.68);
}

.about-stage__title{
  margin: 0;
  max-width: 460px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-stage__copy{
  margin: 12px 0 0;
  max-width: 440px;
  font-size: 0.82rem;
  line-height: 1.66;
  color: rgba(255, 244, 245, 0.78);
}

.about-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 224, 230, 0.08);
}

.about-metric{
  padding: 16px 20px 18px;
}

.about-metric + .about-metric{
  border-left: 1px solid rgba(255, 224, 230, 0.08);
}

.about-metric strong{
  display: block;
  font-size: clamp(1.18rem, 1.5vw, 1.48rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-metric span{
  display: block;
  margin-top: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 228, 232, 0.58);
}

.about-stage.is-transitioning .about-stage__panel,
.about-stage.is-transitioning .about-metrics{
  opacity: 0.76;
  transform: translateY(8px);
}


/* =========================
   BRANDS SECTION
========================= */

.brands-section{
  background: var(--brands-bg);
  padding: 76px 0 88px;
}

.brands-shell{
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.brands-heading{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 440px);
  gap: 36px;
  align-items: start;
}

.brands-kicker{
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brands-tag);
  margin-bottom: 10px;
}

.brands-display{
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--brands-title);
}

.brands-display span{
  display: block;
  font-size: clamp(4rem, 7vw, 6.4rem);
  font-weight: 800;
}

.brands-display em{
  display: block;
  font-size: clamp(3.5rem, 6vw, 5.7rem);
  font-style: italic;
  font-weight: 300;
}

.brands-heading__copy{
  margin: 26px 0 0 auto;
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.78;
  font-weight: 400;
  color: var(--brands-muted);
  text-align: right;
}

.brands-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.brand-tile{
  position: relative;
  min-height: 130px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16)), var(--brands-panel);
  border: 1px solid var(--brands-panel-border);
  box-shadow: var(--brands-shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  isolation: isolate;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.brand-tile::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}

.brand-tile:hover{
  transform: translateY(-8px);
  box-shadow: var(--brands-shadow-hover);
  border-color: rgba(30, 30, 30, 0.14);
}

.brand-tile__name{
  position: relative;
  z-index: 3;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #404549;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  text-align: center;
}

.brand-tile:hover .brand-tile__name{
  transform: translateY(-1px);
}

.brand-tile--preview:hover .brand-tile__name{
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.brand-tile--preview .brand-tile__name{
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.brand-tile--imageonly .brand-tile__name{
  opacity: 0;
}

.brand-tile--imageonly:hover .brand-tile__name{
  opacity: 0;
  transform: none;
}

.brand-preview{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #f7f4ef;
}

.brand-preview::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 18, 22, 0.12), rgba(15, 18, 22, 0.34));
  opacity: 1;
  transition: opacity 0.28s ease;
}

.brand-tile--preview:hover .brand-preview::after{
  opacity: 1;
}

.brand-preview__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 1.1s ease;
}

.brand-preview__img.is-visible{
  opacity: 1;
  transform: scale(1);
}

.brand-preview__img.animate{
  animation: brandPreviewSequence 1.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes brandPreviewSequence {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  18% {
    opacity: 1;
    transform: scale(0.98);
  }
  62% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.brands-actions{
  display: flex;
  justify-content: center;
}

.brands-viewall{
  min-width: 244px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    border-color 0.28s ease;
}


/* =========================
   BRAND SHOWCASE SECTION
========================= */

.brand-showcase-section{
  padding: 20px 0 110px;
  background: var(--bg);
  overflow: hidden;
}

.brand-showcase-shell{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.brand-showcase-heading{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 420px);
  gap: 30px;
  align-items: end;
}

.brand-showcase-kicker{
  margin-bottom: 10px;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8f877e;
}

.brand-showcase-title{
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #111111;
}

.brand-showcase-title span{
  display: block;
  font-size: clamp(3.1rem, 6vw, 5.3rem);
  font-weight: 800;
}

.brand-showcase-title em{
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
  font-style: italic;
  font-weight: 300;
}

.brand-showcase-copy{
  margin: 0 0 8px auto;
  max-width: 390px;
  font-size: 0.95rem;
  line-height: 1.72;
  font-weight: 400;
  color: #756e66;
  text-align: right;
}

.brand-showcase-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.brand-showcase-card{
  position: relative;
  display: block;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 34px rgba(24, 24, 24, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.brand-showcase-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(24, 24, 24, 0.1);
  border-color: rgba(17, 17, 17, 0.1);
}

.brand-showcase-media{
  position: relative;
  aspect-ratio: 4 / 5.3;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f3ee 0%, #ebe4db 100%);
}

.brand-showcase-media::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.06) 60%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
}

.brand-showcase-main,
.brand-showcase-frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-showcase-main{
  z-index: 1;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.8s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-showcase-card:hover .brand-showcase-main{
  transform: scale(1.03);
}

.brand-showcase-main.is-dimmed{
  opacity: 0;
}

.brand-showcase-frame{
  z-index: 2;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.8s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.brand-showcase-frame.is-active{
  opacity: 1;
  transform: scale(1.04);
}

.brand-showcase-overlay{
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 18px 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
}

.brand-showcase-name{
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}


/* =========================
   OPPORTUNITY SECTION
========================= */

.opportunity-section{
  padding: 48px 0 72px;
  background: #050505;
  color: #f5f1eb;
}

.opportunity-shell{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.opportunity-heading{
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.opportunity-kicker{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
}


.opportunity-title{
  margin: 0;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.07em;
}

.opportunity-title span{
  display: block;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 800;
}

.opportunity-title em{
  display: block;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.14);
}

.opportunity-copy{
  display: grid;
  gap: 18px;
  max-width: 430px;
  margin-left: auto;
}

.opportunity-copy p{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.opportunity-metrics{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.opportunity-card{
  position: relative;
  min-height: 184px;
  padding: 26px 26px 22px;
  background: rgba(255, 255, 255, 0.01);
  transition: background 0.3s ease, transform 0.3s ease;
}

.opportunity-card + .opportunity-card{
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.opportunity-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 51, 51, 0), rgba(214, 51, 51, 0.94), rgba(214, 51, 51, 0));
  transform: scaleX(0.1);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.opportunity-card:hover{
  background: rgba(255, 255, 255, 0.035);
}

.opportunity-card:hover::before{
  opacity: 1;
  transform: scaleX(1);
}

.opportunity-card strong{
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 3vw, 3.15rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.opportunity-card:hover strong{
  transform: translateY(-3px);
  color: #ffffff;
}

.opportunity-card h3{
  margin: 0 0 6px;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 700;
}

.opportunity-card p{
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.48;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
}

/* =========================
   SIGNALS SECTION
========================= */

.signals-section{
  padding: 0 0 68px;
  background: #050505;
}

.signals-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signal-card{
  min-height: 494px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.signal-card__media{
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.signal-card__media::before{
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: grayscale(0.08);
}

.signal-card__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.14) 52%, rgba(8, 8, 8, 0.72) 100%);
}

.signal-card:hover .signal-card__media::before{
  transform: scale(1.08);
  filter: grayscale(0) saturate(1.04);
}

.signal-card__media--formula::before{
  background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=80');
}

.signal-card__media--culture::before{
  background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=80');
}

.signal-card__media--audience::before{
  background-image: url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80');
}

.signal-card__tag{
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  min-height: 32px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.7);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card__index{
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 3.7rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.16);
}

.signal-card__body{
  padding: 20px 20px 22px;
  background: #070707;
}

.signal-card__body h3{
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.signal-card__body p{
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.58);
}

/* =========================
   MANIFESTO SECTION
========================= */

.manifesto-section{
  padding: 10px 0 94px;
  background: #050505;
}

.manifesto-card{
  width: 100%;
  margin: 0;
  padding: 48px 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.manifesto-quote{
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(1.75rem, 3.3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #ffffff;
}

.manifesto-quote em{
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
}

.manifesto-credit{
  display: inline-block;
  margin-top: 22px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.process-section{
  padding: 0 0 112px;
  background: #050505;
  color: #f4efe8;
}

.process-shell{
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.process-heading{
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(280px, 520px);
  gap: 28px 56px;
  align-items: end;
}

.process-kicker{
  grid-column: 1 / -1;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.36);
}

.process-title{
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.process-title span{
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 800;
  color: #f6f1eb;
}

.process-title em{
  display: block;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.process-intro{
  margin: 0;
  padding-bottom: 40px;
  max-width: 500px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-card__media{
  position: relative;
  min-height: 378px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.process-card__media::before,
.process-card__media::after{
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
  background-size: cover;
  background-position: center;
}

.process-card__media::before{
  opacity: 1;
  filter: grayscale(1) brightness(0.82);
  transform: scale(1);
}

.process-card__media::after{
  opacity: 0;
  transform: scale(1.04);
}

.process-card:hover .process-card__media::before{
  opacity: 0;
  transform: scale(1.05);
}

.process-card:hover .process-card__media::after{
  opacity: 1;
  transform: scale(1);
}

.process-card__media--research::before,
.process-card__media--research::after{
  background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=80');
}

.process-card__media--import::before,
.process-card__media--import::after{
  background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=900&q=80');
}

.process-card__media--marketing::before,
.process-card__media--marketing::after{
  background-image: url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=900&q=80');
}

.process-card__media--expansion::before,
.process-card__media--expansion::after{
  background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=900&q=80');
}

.process-card__index{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 3.6rem;
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.process-card__body{
  display: grid;
  gap: 8px;
}

.process-card__body h3{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #f6f1eb;
}

.process-card__body p{
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.56);
}
.reviews-section{
  padding: 86px 0 110px;
  background: #0c0c0d;
  color: #f5efe8;
}

.reviews-shell{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reviews-heading{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 470px);
  gap: 28px;
  align-items: start;
  margin-bottom: 50px;
}

.reviews-kicker{
  margin-bottom: 20px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245, 239, 232, 0.42);
}

.reviews-title{
  margin: 0;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.reviews-title span{
  display: flex;
  align-items: center;
  min-height: 0.82em;
  font-size: var(--section-title-first-size);
  line-height: 0.82;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.07em;
  color: #f6f1eb;
}

.reviews-title em{
  display: flex;
  align-items: center;
  min-height: 0.88em;
  font-size: var(--section-title-second-size);
  line-height: 0.88;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.065em;
  color: rgba(246, 241, 235, 0.34);
}

.reviews-intro{
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  margin: 56px 0 0 auto !important;
  max-width: 450px;
  padding-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.82;
  color: rgba(245, 239, 232, 0.62);
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.review-card{
  min-height: 250px;
  padding: 26px 24px 22px;
  border-radius: 26px;
  background: #111111;
  color: #f5efe8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  background: #f2ece5;
  color: #151515;
  border-color: rgba(21, 21, 21, 0.08);
  box-shadow: 0 22px 42px rgba(48, 40, 33, 0.12);
}

.review-card__quote{
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: inherit;
}

.review-card__meta{
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.28s ease;
}

.review-card:hover .review-card__meta{
  border-color: rgba(21, 21, 21, 0.08);
}

.review-card__avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5efe8;
  flex: 0 0 auto;
  transition: background 0.28s ease, color 0.28s ease;
}

.review-card:hover .review-card__avatar{
  background: rgba(21, 21, 21, 0.08);
  color: #151515;
}

.review-card__meta strong{
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
  color: inherit;
}

.review-card__meta div span{
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(245, 239, 232, 0.62);
  transition: color 0.28s ease;
}

.review-card:hover .review-card__quote,
.review-card:hover .review-card__meta strong,
.review-card:hover .review-card__meta div{
  color: #151515;
}

.review-card:hover .review-card__meta div span{
  color: rgba(21, 21, 21, 0.58);
}

.site-footer{
  padding: 38px 0 24px;
  background: #090909;
  color: #f5efe8;
}

.footer-shell{
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(2, minmax(220px, 0.85fr));
  gap: 36px;
  align-items: start;
}

.footer-brand{
  display: inline-block;
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.footer-brand span{
  color: rgba(255, 255, 255, 0.38);
}

.footer-copy{
  margin: 0 0 22px;
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 239, 232, 0.62);
}

.footer-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pills span{
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 239, 232, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h3{
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-column p,
.footer-column a,
.footer-column span{
  display: block;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 239, 232, 0.72);
}

.footer-column p,
.footer-column a{
  margin-bottom: 4px;
}

.footer-column span{
  margin-bottom: 16px;
  color: rgba(245, 239, 232, 0.48);
}

.footer-column a:hover{
  color: #ffffff;
}

.footer-bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom span{
  font-size: 0.82rem;
  color: rgba(245, 239, 232, 0.42);
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a{
  font-size: 0.84rem;
  color: rgba(245, 239, 232, 0.7);
}

.footer-links a:hover{
  color: #ffffff;
}
@media (max-width: 1600px) {
  .brand-showcase-grid{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .brand-showcase-grid::-webkit-scrollbar{
    height: 8px;
  }

  .brand-showcase-grid::-webkit-scrollbar-thumb{
    background: rgba(17, 17, 17, 0.16);
    border-radius: 999px;
  }

  .brand-showcase-card{
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
}

@media (max-width: 1100px) {
  .opportunity-heading,
.signals-grid,
.about-heading,
.about-layout,
.brands-heading,
.brand-showcase-heading,
.process-heading,
.reviews-heading,
.footer-shell{
    grid-template-columns: 1fr;
  }

  .opportunity-copy,
.about-intro,
.brands-heading__copy,
.brand-showcase-copy,
.partner-network-copy{
    margin: 0;
    max-width: none;
    text-align: left;
    justify-self: start;
  }

  .opportunity-metrics{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-card:nth-child(3){
    border-left: 0;
  }

  .opportunity-card:nth-child(n + 3){
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar__inner{
    grid-template-columns: 1fr auto;
  }

  .nav{
    display: none;
  }

  .hero__content{
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
    padding-top: 36px;
  }

  .hero h1,
.hero__copy{
    text-align: left;
    align-items: flex-start;
  }

  .hero__actions{
    align-items: flex-start;
  }

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

  .brands-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .topbar__inner,
  .container,
  .hero__content,
  .hero__stats{
      width: min(calc(100% - 28px), var(--max));
    }

  .topbar__inner{
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand{
    font-size: 1.55rem;
  }

  .nav-cta .btn{
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .hero{
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 0;
    overflow: hidden;
    padding-top: 74px;
    box-sizing: content-box;
  }

  .hero__video{
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    height: calc(100% - 74px);
    object-fit: cover;
    object-position: center center;
  }

  .hero__content{
    display: none !important;
  }

  .hero__stats{
    display: none !important;
  }

  .hero__copy p{
    font-size: 0.95rem;
  }

  .hero__actions .btn{
    width: 100%;
  }

  .ticker__group{
    padding: 15px 14px;
    gap: 18px;
  }

  .ticker__item{
    font-size: 0.84rem;
  }

  .ticker__dot{
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .about-section{
    padding: 60px 0 72px;
  }

  .about-shell{
    gap: 24px;
  }

  .about-title span{
    font-size: 3rem;
  }

  .about-title em{
    font-size: 2.46rem;
  }

  .about-tab{
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .about-tab__accent{
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }

  .about-tab__body strong{
    font-size: 1.08rem;
  }

  .about-tab__body small,
  .about-highlight__text,
  .about-intro,
  .about-stage__copy{
      font-size: 0.95rem;
    }

  .about-highlight{
    padding: 20px 18px;
    border-radius: 20px;
  }

  .about-stage{
    border-radius: 24px;
  }

  .about-stage__media{
    min-height: 320px;
  }

  .about-stage__panel{
    padding: 20px 16px 18px;
  }

  .about-stage__title{
    font-size: 1.85rem;
  }

  .about-metrics{
    grid-template-columns: 1fr;
  }

  .about-metric{
    padding: 18px 16px;
  }

  .about-metric + .about-metric{
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .brands-section{
    padding: 56px 0 70px;
  }

  .brands-display span{
    font-size: 3.2rem;
  }

  .brands-display em{
    font-size: 2.9rem;
  }

  .brands-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .brand-tile{
    min-height: 148px;
    padding: 18px;
    border-radius: 20px;
  }

  .brand-preview__img{
    padding: 0;
  }

  .brands-viewall{
    width: 100%;
  }

  .brand-showcase-section{
    padding: 18px 0 70px;
  }

  .brand-showcase-card{
    flex: 0 0 220px;
    border-radius: 22px;
  }

  .brand-showcase-media{
    aspect-ratio: 4 / 5.5;
  }

  .brand-showcase-overlay{
    padding: 14px 12px 14px;
  }

  .brand-showcase-name{
    font-size: 0.84rem;
  }

  .opportunity-section{
    padding: 24px 0 34px;
  }

  .opportunity-shell{
    gap: 24px;
  }

  .opportunity-title span{
    font-size: 2.8rem;
  }

  .opportunity-title em{
    font-size: 2.45rem;
  }

  .opportunity-copy p{
    font-size: 0.94rem;
  }

  .opportunity-metrics{
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .opportunity-card{
    min-height: auto;
    padding: 24px 20px 22px;
  }

  .opportunity-card + .opportunity-card{
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .opportunity-card strong{
    font-size: 2.7rem;
  }

  .signals-grid{
    gap: 16px;
  }

  .signal-card{
    min-height: auto;
    border-radius: 22px;
  }

  .signal-card__media{
    min-height: 250px;
  }

  .signal-card__tag{
    top: 14px;
    right: 14px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .signal-card__index{
    left: 14px;
    bottom: 14px;
    font-size: 4.2rem;
  }

  .signal-card__body{
    padding: 22px 18px 24px;
  }

  .signal-card__body h3{
    font-size: 1.45rem;
  }

  .signal-card__body p{
    font-size: 0.84rem;
  }

  .manifesto-section{
    padding: 0 0 64px;
  }

  .manifesto-card{
    padding: 34px 20px;
    border-radius: 22px;
  }

  .manifesto-quote{
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .manifesto-credit{
    margin-top: 22px;
    font-size: 0.78rem;
  }

  .process-section{
    padding: 0 0 84px;
  }

  .process-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card{
    gap: 14px;
  }

  .process-card__media{
    min-height: 260px;
    border-radius: 18px;
  }

  .process-card__index{
    top: 14px;
    left: 14px;
    font-size: 2.8rem;
  }

  .process-card__body h3{
    font-size: 1rem;
  }

  .process-card__body p{
    font-size: 0.82rem;
  }

  .partner-network-section{
    padding: 28px 0 72px;
  }

  .partner-network-shell{
    gap: 24px;
  }

  .partner-network-title span{
    font-size: 2.28rem;
  }

  .partner-network-title em{
    font-size: 1.9rem;
  }

  .partner-network-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-network-card{
    min-height: 236px;
    border-radius: 22px;
  }

  .partner-network-card__copy{
    padding: 18px 18px 18px;
    gap: 7px;
  }

  .partner-network-card__copy span{
    font-size: 0.66rem;
  }

  .partner-network-card__copy strong{
    max-width: none;
    font-size: 1.34rem;
  }
}


/* =============================================================
   HAMBURGER BUTTON
============================================================= */
.nav-hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: background 0.22s ease;
  justify-self: end;
}

.nav-hamburger:hover{ background: rgba(17,17,17,0.06); }

.nav-hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2){ opacity: 0; width: 0; }
.nav-hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   MOBILE NAV DRAWER
============================================================= */
.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 800;
  pointer-events: none;
}

body:has(.mobile-nav.is-open) .topbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open{ pointer-events: auto; }

.mobile-nav__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.46);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop{ opacity: 1; }

.mobile-nav__drawer{
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100%;
  background: #f7f3ee;
  border-left: 1px solid rgba(17,17,17,0.08);
  box-shadow: -16px 0 44px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  padding: 0 0 36px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__drawer{ transform: translateX(0); }

.mobile-nav__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.mobile-nav__brand{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #111111;
}

.mobile-nav__brand span{ color: #888888; }

.mobile-nav__close{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: #555555;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.25s ease;
}

.mobile-nav__close:hover{ background: #111111; color: #ffffff; transform: rotate(90deg); }

.mobile-nav__links{
  list-style: none;
  margin: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav__link{
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__link:hover{ background: rgba(17,17,17,0.07); color: #111111; transform: translateX(4px); }

.mobile-nav__cta{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #191919 0%, #050505 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-nav__cta:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,0,0,0.28); }

/* =============================================================
   FOOTER PARTNER CTA
============================================================= */
.footer-partner-cta{
  display: inline-flex !important;
  align-items: center;
  margin-top: 14px !important;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a2a2a 0%, #111111 100%);
  color: #f5efe8 !important;
  font-size: 0.84rem !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  width: fit-content;
}

.footer-partner-cta:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); color: #ffffff !important; }

/* =============================================================
   MOBILE BREAKPOINT — show hamburger,
hide desktop nav
============================================================= */
@media (max-width: 768px){
  .nav      { display: none !important; }
  .nav-cta  { display: none !important; }
  .nav-hamburger { display: flex; }
}

/* =============================================================
   PREFERS-REDUCED-MOTION
============================================================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker { animation: none; }
}

/* =============================================================
   EXOD INTRO SPLASH + SMART HEADER
   필요 없으면 이 블록 전체 삭제하면 됨
============================================================= */

/* ===== Intro splash ===== */
.intro-splash{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro-splash.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-splash__inner{
  padding: 24px;
  text-align: center;
}

.intro-splash__text{
  display: inline-block;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #111111;
  opacity: 0;
  transform: translateY(10px);
  animation: introTextIn 0.7s ease forwards;
}

@keyframes introTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero / header base ===== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

/* 헤더를 항상 상단 고정으로 두되,
상태에 따라 투명도/배경만 바뀜 */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

/* 첫 화면에서는 글자만 보이는 상태 */
body.header-hero .topbar{
  background: rgba(255, 255, 255, 0);
  border-bottom-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  opacity: 1;
}

body.header-hero .brand,
body.header-hero .nav a{
  color: #ffffff !important;
}

body.header-hero .brand span{
  color: rgba(255, 255, 255, 0.72) !important;
}

body.header-hero .nav a::after{
  background: #ffffff;
}

/* 첫 화면에서 버튼도 배경 없이 가볍게 */
body.header-hero .nav-cta .btn--dark{
  background: rgba(255, 255, 255, 0);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

/* hero 첫 화면에서 hover 하면 헤더가 잠깐 나타나는 느낌 */
body.header-hero .topbar:hover,
body.header-hero.header-hover .topbar{
  background: rgba(245, 241, 235, 0.92);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.header-hero .topbar:hover .brand,
body.header-hero .topbar:hover .nav a,
body.header-hero.header-hover .topbar .brand,
body.header-hero.header-hover .topbar .nav a{
  color: #111111 !important;
}

body.header-hero .topbar:hover .brand span,
body.header-hero.header-hover .topbar .brand span{
  color: #888888 !important;
}

body.header-hero .topbar:hover .nav a::after,
body.header-hero.header-hover .topbar .nav a::after{
  background: #111111;
}

body.header-hero .topbar:hover .nav-cta .btn--dark,
body.header-hero.header-hover .topbar .nav-cta .btn--dark{
  background: linear-gradient(180deg, #191919 0%, #050505 100%);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.08);
}

/* 스크롤 중 점점 밝아지는 상태 */
.topbar.is-scrolled{
  background: rgba(255, 255, 255, var(--header-bg-alpha, 0.78));
  border-bottom-color: rgba(17, 17, 17, calc(var(--header-line-alpha, 0.08)));
  backdrop-filter: blur(calc(var(--header-blur, 14) * 1px));
  -webkit-backdrop-filter: blur(calc(var(--header-blur, 14) * 1px));
  box-shadow: 0 10px 30px rgba(0, 0, 0, calc(var(--header-shadow-alpha, 0.06)));
  opacity: 1;
}

.topbar.is-scrolled .brand,
.topbar.is-solid .brand,
.topbar.is-scrolled .nav a,
.topbar.is-solid .nav a{
  color: #111111;
}

.topbar.is-scrolled .brand span,
.topbar.is-solid .brand span{
  color: #666666;
}

.topbar.is-scrolled .nav a::after,
.topbar.is-solid .nav a::after{
  background: #111111;
}

.topbar.is-scrolled .nav-cta .btn--dark,
.topbar.is-solid .nav-cta .btn--dark{
  background: linear-gradient(180deg, #191919 0%, #050505 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

/* hero를 완전히 지나면 고정 헤더처럼 단단하게 */
.topbar.is-solid{
  background: rgba(245, 241, 235, 0.94);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.back-to-top{
  position: fixed;
  right: clamp(18px, 2.4vw, 28px);
  bottom: clamp(18px, 2.4vw, 28px);
  z-index: 480;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(245, 241, 235, 0.82);
  color: #111111;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover{
  transform: translateY(-2px) scale(1);
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  border-color: rgba(17, 17, 17, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.back-to-top svg{
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }
}

/* 모바일에서도 첫 화면 느낌 유지 */
@media (max-width: 768px){
  body.header-hero .nav-hamburger {
    border-color: rgba(17, 17, 17, 0.18);
    background: transparent;
  }

  body.header-hero .nav-hamburger span {
    background: #111111;
  }

  .topbar.is-scrolled .nav-hamburger,
  .topbar.is-solid .nav-hamburger {
    border-color: rgba(17, 17, 17, 0.12);
    background: transparent;
  }

  .topbar.is-scrolled .nav-hamburger span,
  .topbar.is-solid .nav-hamburger span {
    background: #111111;
  }
}

/* =============================================================
   RETAIL PARTNERS SECTION — BEAUTY FOCUSED RESET
   필요 없으면 이 블록 전체 삭제
============================================================= */
/* =============================================================
   RETAIL PARTNERS SECTION
============================================================= */

.partner-network-section{
  padding: 52px 0 110px;
  background: #050505;
}

.partner-network-shell{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.partner-network-heading{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.partner-network-kicker{
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
}

.partner-network-title{
  margin: 0;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.partner-network-title span{
  display: block;
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  font-weight: 800;
  color: #ffffff;
}

.partner-network-title em{
  display: block;
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.partner-network-grid.partner-network-grid--eight{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partner-network-card{
  position: relative;
  min-height: 304px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: #ffffff;
  background: #181818;
  box-shadow: 0 18px 38px rgba(20, 16, 18, 0.1);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.partner-network-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(20, 16, 18, 0.16);
}

.partner-network-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.partner-network-card__image,
.partner-network-card__overlay,
.partner-network-card__copy{
  position: absolute;
  inset: 0;
}

.partner-network-card__image{
  z-index: 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
      opacity 4.2s ease-in-out,
      transform 5.2s ease,
      filter 4.2s ease-in-out;
}

.partner-network-card__bg.is-active{
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}

.partner-network-card__bg.is-leaving{
  opacity: 0;
  transform: scale(1.012);
  filter: brightness(0.9);
}

.partner-network-card__bg.is-entering{
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}

.partner-network-card__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.025);
  filter: brightness(0.9);

  transition:
    opacity 7s ease-in-out,
    transform 8.5s ease,
    filter 7s ease-in-out;
}

.partner-network-card:hover .partner-network-card__image{
  transform: scale(1.04);
  filter: saturate(1.03);
}

.partner-network-card__overlay{
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.04) 0%,
      rgba(10, 10, 10, 0.16) 38%,
      rgba(10, 10, 10, 0.88) 100%
    );
}

.partner-network-card__copy{
  z-index: 4;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 24px 24px;
}

.partner-network-card__eyebrow{
  display: inline-block;
  font-size: 0.64rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.partner-network-card__partners{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-height: 116px;
}

.partner-network-card__partners span{
  display: inline-block;
  width: max-content;
  max-width: 100%;
  font-size: clamp(0.92rem, 1.25vw, 1.28rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 850;
  text-transform: none;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
}

@media (max-width: 1100px) {
  .partner-network-grid.partner-network-grid--eight{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .partner-network-card{
    min-height: 256px;
  }

  .partner-network-card__partners span{
    font-size: clamp(1.2rem, 3.2vw, 1.48rem);
  }
}

@media (max-width: 720px) {
  .partner-network-section{
    padding: 30px 0 80px;
  }

  .partner-network-shell{
    gap: 24px;
  }

  .partner-network-title span{
    font-size: 2.28rem;
  }

  .partner-network-title em{
    font-size: 1.95rem;
  }

  .partner-network-grid.partner-network-grid--eight{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-network-card{
    min-height: 220px;
    border-radius: 22px;
  }

  .partner-network-card__copy{
    padding: 18px 18px 18px;
    gap: 10px;
  }

  .partner-network-card__eyebrow{
    font-size: 0.6rem;
  }

  .partner-network-card__partners{
    max-width: 100%;
    min-height: auto;
  }

  .partner-network-card__partners span{
    font-size: clamp(1.12rem, 5vw, 1.38rem);
  }
}

.partner-network-section--gallery-test{
  padding-top: 0;
}

.partner-gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 86px;
  grid-auto-flow: dense;
  gap: 12px;
}

.partner-gallery-card{
  position: relative;
  min-height: 0;
  grid-row: span 2;
  overflow: hidden;
  isolation: isolate;
  background: #161616;
  color: #ffffff;
}

.partner-gallery-card--wide{
  grid-column: span 2;
}

.partner-gallery-card--tall{
  grid-row: span 4;
}

.partner-gallery-card:nth-child(1){
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.partner-gallery-card:nth-child(2){
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

.partner-gallery-card:nth-child(3){
  grid-column: 4 / span 1;
  grid-row: 1 / span 2;
}

.partner-gallery-card:nth-child(4){
  grid-column: 5 / span 2;
  grid-row: 1 / span 2;
}

.partner-gallery-card:nth-child(5){
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.partner-gallery-card:nth-child(6){
  grid-column: 3 / span 1;
  grid-row: 3 / span 2;
}

.partner-gallery-card:nth-child(7){
  grid-column: 4 / span 2;
  grid-row: 3 / span 2;
}

.partner-gallery-card:nth-child(8){
  grid-column: 6 / span 1;
  grid-row: 3 / span 2;
}

.partner-gallery-card:nth-child(9){
  grid-column: 1 / span 1;
  grid-row: 5 / span 2;
}

.partner-gallery-card:nth-child(10){
  grid-column: 2 / span 1;
  grid-row: 5 / span 2;
}

.partner-gallery-card:nth-child(11){
  grid-column: 3 / span 2;
  grid-row: 5 / span 2;
}

.partner-gallery-card:nth-child(12){
  grid-column: 5 / span 1;
  grid-row: 5 / span 2;
}

.partner-gallery-card:nth-child(13){
  grid-column: 6 / span 1;
  grid-row: 5 / span 2;
}

.partner-gallery-card:nth-child(14){
  grid-column: 6 / span 1;
  grid-row: 7 / span 2;
}

.partner-gallery-card:nth-child(15){
  grid-column: 1 / span 1;
  grid-row: 7 / span 2;
}

.partner-gallery-card:nth-child(16){
  grid-column: 2 / span 2;
  grid-row: 7 / span 2;
}

.partner-gallery-card:nth-child(17){
  grid-column: 4 / span 2;
  grid-row: 7 / span 2;
}

.partner-gallery-card img,
.partner-gallery-card__overlay,
.partner-gallery-card__copy{
  position: absolute;
  inset: 0;
}

.partner-gallery-card img{
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.partner-gallery-card__overlay{
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.14) 38%, rgba(5, 5, 5, 0.84) 100%);
}

.partner-gallery-card__copy{
  z-index: 3;
  inset: auto 0 0 0;
  display: grid;
  gap: 8px;
  padding: clamp(14px, 1.35vw, 20px);
}

.partner-gallery-card__copy h3,
.partner-gallery-card__copy p{
  margin: 0;
  color: #ffffff;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
}

.partner-gallery-card__copy h3{
  font-size: clamp(1.12rem, 1.46vw, 1.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.partner-gallery-card--wide .partner-gallery-card__copy h3,
.partner-gallery-card--tall .partner-gallery-card__copy h3{
  font-size: clamp(1.32rem, 1.95vw, 2rem);
}

.partner-gallery-card__copy p{
  max-width: 100%;
  font-size: 0.62rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.partner-gallery-card:hover img{
  transform: scale(1.075);
  filter: saturate(1.05) brightness(1.02);
}

.partner-gallery-card:nth-child(1) img,
.partner-gallery-card:nth-child(4) img,
.partner-gallery-card:nth-child(8) img,
.partner-gallery-card:nth-child(11) img,
.partner-gallery-card:nth-child(14) img,
.partner-gallery-card:nth-child(16) img,
.partner-gallery-card:nth-child(17) img{
  transform: scale(1.02);
}

@media (max-width: 1100px) {
  .partner-gallery-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 84px;
  }

  .partner-gallery-card:nth-child(n){
    grid-column: auto;
    grid-row: span 2;
  }

  .partner-gallery-card--wide{
    grid-column: span 2;
  }

  .partner-gallery-card--tall{
    grid-row: span 3;
  }
}

@media (max-width: 720px) {
  .partner-gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .partner-gallery-card,
  .partner-gallery-card--wide,
  .partner-gallery-card--tall{
    min-height: 220px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .partner-gallery-card:nth-child(n){
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .partner-gallery-card__copy{
    padding: 18px;
  }
}

/* =========================
   FINAL OVERRIDES
========================= */

.brand,
.mobile-nav__brand,
.footer-brand{
  letter-spacing: -0.04em;
}

.brand span,
.mobile-nav__brand span,
.footer-brand span,
body.header-hero .brand span,
.topbar.is-scrolled .brand span,
.topbar.is-solid .brand span{
  color: inherit;
}

.hero__stats{
  gap: 18px;
}

.stat{
  position: relative;
  padding: 24px 18px 14px 0;
  overflow: hidden;
}

.stat::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stat::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02));
}

.stat strong{
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.stat.is-live strong{
  transform: translateY(-3px);
  filter: blur(0.35px);
}

.stat.is-ready::before,
.stat:hover::before{
  transform: scaleX(1);
}

.btn,
.btn::before,
.brands-viewall,
.topbar,
.mobile-nav__drawer,
.mobile-nav__close,
.brand-tile,
.brand-preview,
.brand-showcase-card,
.opportunity-metrics,
.opportunity-card,
.signal-card,
.signal-card__tag,
.manifesto-card,
.process-card__media,
.review-card,
.footer-pills span,
.footer-partner-cta,
.partner-network-card,
.partner-network-card::before{
  border-radius: 0 !important;
}

.opportunity-section--about{
  padding: 58px 0 84px;
  background: #050505;
}

.opportunity-shell{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.opportunity-heading--about{
  display: grid;
  grid-template-columns: minmax(320px, 500px) minmax(320px, 1fr);
  gap: 28px 54px;
  align-items: start;
}

.opportunity-body{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.opportunity-title--about span{
  display: block;
  max-width: 100%;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  line-height: 0.92;
}

.opportunity-title--about em{
  display: block;
  max-width: 100%;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
  line-height: 0.94;
  color: rgba(255, 255, 255, 0.34);
}

.opportunity-copy--wide{
  margin: 0;
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.74;
  color: rgba(245, 241, 235, 0.68);
  justify-self: end;
  text-align: left;
  align-self: start;
  padding-top: 54px;
}

.opportunity-video-card{
  position: relative;
  min-height: 720px;
  width: 100%;
  max-width: 340px;
  justify-self: end;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.opportunity-video-card::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.7));
  pointer-events: none;
}

.opportunity-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.partner-network-section--featured{
  padding-top: 0;
}

.partner-featured-directory{
  display: grid;
  gap: 16px;
}

.partner-directory-band{
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  align-items: start;
}

.partner-directory-band__eyebrow{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.partner-directory-band__meta h3{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.partner-directory-band__logos{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.partner-directory-logo{
  width: 150px;
  min-width: 150px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #ffffff;
  overflow: hidden;
}

.partner-directory-logo img{
  --logo-x: -6px;
  --logo-y: -6px;
  --logo-scale: 1.22;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: none;
  transform: translate(var(--logo-x), var(--logo-y)) scale(var(--logo-scale));
}

.partner-directory-logo img[src*="holt"],
.partner-directory-logo img[src*="wellca"]{
  --logo-scale: 1.34;
}

.partner-directory-logo img[src*="shoppers"],
.partner-directory-logo img[src*="loblaws"],
.partner-directory-logo img[src*="kiokii"],
.partner-directory-logo img[src*="superstore"],
.partner-directory-logo img[src*="oomomo"],
.partner-directory-logo img[src*="rennai"],
.partner-directory-logo img[src*="walmart_marketplace"]{
  --logo-scale: 1;
}

.partner-directory-logo img[src*="oomomo"]{
  --logo-x: 0;
  --logo-y: 1px;
}

.partner-directory-logo img[src*="walmart_marketplace"]{
  --logo-x: 0;
  --logo-y: 0;
}

@media (max-width: 1100px) {
  .partner-directory-band{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .partner-directory-band{
    padding: 18px 16px;
    gap: 16px;
  }

  .partner-directory-logo{
    width: calc(50% - 6px);
    min-width: calc(50% - 6px);
    height: 78px;
  }
}

.opportunity-metrics--about{
  grid-template-columns: 1fr;
  gap: 14px;
  border: 0;
  background: transparent;
  max-width: 100%;
}

.opportunity-card--about{
  min-height: 0;
  padding: 26px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.opportunity-card__eyebrow{
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214, 179, 139, 0.92);
}

.opportunity-card--about h3{
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #f8f2ea;
}

.opportunity-card--about p{
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(245, 241, 235, 0.66);
}

@media (max-width: 900px) {
  .hero__stats{
    gap: 14px;
  }

  .opportunity-heading--about{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .opportunity-body{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .opportunity-copy--wide{
    margin-top: 0;
    max-width: 100%;
    justify-self: start;
  }

  .opportunity-video-card{
    min-height: 420px;
    max-width: 420px;
    justify-self: start;
  }

  .opportunity-metrics--about{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
}

/* =========================
   FINAL LAYOUT TUNING
========================= */

.process-section--brands{
  padding: 88px 0 120px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(237, 207, 194, 0.28), transparent 22%),
    linear-gradient(180deg, #f7f3ee 0%, #f1ebe3 100%);
  color: #151515;
}

.process-shell--editorial{
  display: grid;
  gap: 44px;
}

.process-heading--editorial{
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: 36px;
  align-items: end;
}

.process-heading__side{
  display: grid;
  justify-items: end;
  gap: 12px;
}

.process-section--brands .process-kicker{
  color: rgba(21, 21, 21, 0.36);
}

.process-section--brands .process-title span{
  color: #151515;
}

.process-section--brands .process-title em{
  color: rgba(21, 21, 21, 0.28);
}

.process-section--brands .process-intro{
  margin-left: auto;
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(21, 21, 21, 0.62);
}

.case-carousel{
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
}

.case-carousel__viewport{
  overflow: hidden;
}

.case-carousel__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.process-controls__btn{
  position: static;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #151515;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(34, 26, 21, 0.08);
}

.process-controls__btn:hover{
  background: #151515;
  color: #f5efe8;
}

.event-card{
  position: relative;
  min-height: 304px;
  overflow: hidden;
  isolation: isolate;
  background: #1a1a1a;
}

.event-card__image,
.event-card__overlay,
.event-card__copy{
  position: absolute;
  inset: 0;
}

.event-card__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.event-card__overlay{
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.18) 42%, rgba(10, 10, 10, 0.88) 100%);
}

.event-card__copy{
  z-index: 2;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 20px 18px;
}

.event-card__eyebrow{
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.event-card__copy h3{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  transition: transform 0.32s ease;
}

.event-card__details{
  display: grid;
  gap: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.36s ease, opacity 0.28s ease, transform 0.32s ease;
}

.event-card__copy p{
  margin: 0;
  max-width: 92%;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.event-card__metrics{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-card__metrics span{
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.event-card:hover .event-card__image{
  transform: scale(1.04);
  filter: saturate(1.03);
}

.event-card:hover .event-card__overlay{
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.28) 36%, rgba(10, 10, 10, 0.92) 100%);
}

.event-card:hover .event-card__copy h3{
  transform: translateY(-2px);
}

.event-card:hover .event-card__details{
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .process-heading--editorial{
    grid-template-columns: 1fr;
  }

  .process-heading__side{
    justify-items: start;
  }

  .process-section--brands .process-intro{
    margin-left: 0;
    max-width: none;
  }

  .process-controls__btn{
    width: 52px;
    height: 52px;
  }

  .case-carousel__track{
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 720px) {
  .process-section--brands{
    padding: 64px 0 82px;
  }

  .process-controls__btn{
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .case-carousel__track{
    grid-auto-columns: 100%;
  }

  .event-card{
    min-height: 220px;
  }

  .event-card__copy{
    padding: 16px 16px 14px;
  }

  .event-card__copy h3{
    font-size: 1rem;
  }

  .event-card__copy p{
    font-size: 0.76rem;
  }

  .event-card__details{
    max-height: 180px;
    opacity: 1;
    transform: none;
  }
}


/* =============================================================
   UNIFIED SECTION TITLE SYSTEM
============================================================= */

.brands-display,
.opportunity-title,
.partner-network-title,
.process-title{
  margin: 0;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.brands-display span,
.opportunity-title span,
.opportunity-title--about span,
.partner-network-title span,
.process-title span,
.process-section--brands .process-title span{
  display: flex;
  align-items: center;
  min-height: 0.82em;
  font-size: var(--section-title-first-size);
  line-height: 0.82;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.07em;
}

.brands-display em,
.opportunity-title em,
.opportunity-title--about em,
.partner-network-title em,
.process-title em,
.process-section--brands .process-title em{
  display: flex;
  align-items: center;
  min-height: 0.88em;
  font-size: var(--section-title-second-size);
  line-height: 0.88;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.065em;
}

.brands-display span,
.process-section--brands .process-title span{
  color: #111111;
}

.brands-display em,
.process-section--brands .process-title em{
  color: rgba(17, 17, 17, 0.34);
}

.opportunity-title span,
.opportunity-title--about span,
.partner-network-title span{
  color: #f6f1eb;
}

.opportunity-title em,
.opportunity-title--about em,
.partner-network-title em{
  color: rgba(246, 241, 235, 0.34);
}

.opportunity-kicker::before{
  display: none;
  content: none;
}

.opportunity-kicker{
  gap: 0;
}

.brands-kicker,
.opportunity-kicker,
.partner-network-kicker,
.process-kicker{
  margin-bottom: 20px;
}

.process-heading .process-kicker{
  grid-column: auto;
}

.process-section--brands .process-kicker{
  margin-bottom: 22px;
}

@media (max-width: 1100px) {
  :root{
    --section-title-first-size: clamp(3.8rem, 8vw, 4.6rem);
    --section-title-second-size: clamp(3.15rem, 6.8vw, 3.85rem);
  }

  .reviews-heading{
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .reviews-intro{
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin: 0 !important;
    max-width: none;
  }
}

@media (max-width: 720px) {
  :root{
    --section-title-first-size: clamp(3rem, 12vw, 4rem);
    --section-title-second-size: clamp(2.55rem, 10vw, 3.35rem);
  }

  .brands-kicker,
.opportunity-kicker,
.partner-network-kicker,
.process-kicker,
.reviews-kicker{
    margin-bottom: 14px;
  }

}

/* =============================================================
   BRANDS MODAL - EDITORIAL DIRECTORY STYLE
   HTML required: .brands-directory / .brands-group / .brand-card
============================================================= */

.brands-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
}

.brands-modal.is-open {
  pointer-events: auto;
}

.brands-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.brands-modal.is-open .brands-modal__backdrop {
  opacity: 1;
}

.brands-modal__panel {
  position: relative;
  width: min(calc(100vw - 44px), 980px);
  height: min(88vh, 820px);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 28px 40px 34px;
  border-radius: 18px;
  background: rgba(252, 249, 245, 0.96);
  border: 1px solid rgba(30, 24, 18, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.brands-modal.is-open .brands-modal__panel {
  transform: translateY(0);
  opacity: 1;
}

.brands-modal__panel::-webkit-scrollbar {
  width: 8px;
}

.brands-modal__panel::-webkit-scrollbar-thumb {
  background: rgba(42, 39, 36, 0.22);
  border-radius: 999px;
}

.brands-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.brands-modal__heading {
  max-width: 520px;
}

.brands-modal__close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 39, 36, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(42, 39, 36, 0.58);
  font-size: 26px;
  line-height: 1;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.brands-modal__close:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #111111;
  border-color: rgba(42, 39, 36, 0.16);
}

.brands-modal__alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(42, 39, 36, 0.08);
}

.brands-modal__alphabet button:hover {
  color: #111111;
  background: rgba(42, 39, 36, 0.05);
}

.brands-modal__alphabet button.is-active {
  background: rgba(42, 39, 36, 0.08);
  color: #111111;
  font-weight: 600;
  padding: 8px 12px;
}

.brands-directory {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brands-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brands-group.is-hidden {
  display: none;
}

.brands-group__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-card {
  min-height: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(42, 39, 36, 0.09);
  border-radius: 8px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(42, 39, 36, 0.16);
}

.brand-card--small {
  max-width: 165px;
}

@media (max-width: 900px) {
  .brands-modal__panel {
    width: min(calc(100vw - 28px), 900px);
    height: min(88vh, 820px);
    padding: 24px 22px 28px;
  }

  .brands-group__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brands-modal {
    padding: 10px;
  }

  .brands-modal__panel {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    padding: 20px 16px 22px;
    border-radius: 14px;
  }

  .brands-modal__alphabet {
    gap: 5px;
  }

  .brands-group__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-card {
    min-height: 48px;
    padding: 10px 12px;
  }

}

.hero {
  position: relative;
}

.hero__hotspots {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero__hotspot {
  position: absolute;
  display: block;
  pointer-events: auto;
  cursor: pointer;

  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;

  /* 위치 잡을 때만 보이게 */
  background: transparent;
}

/* =========================
   PC 클릭 영역
========================= */

/* PC - Explore Brands */
.hero__hotspot--brands {
  left: 77.8%;
  top: 53.6%;
  width: 16.8%;
  height: 6.5%;
}

/* PC - Become a Partner */
.hero__hotspot--partner {
  left: 77.8%;
  top: 63.9%;
  width: 16.8%;
  height: 7.8%;
}

/* =========================
   Mobile 클릭 영역
========================= */

@media (max-width: 768px) {
  .hero__stats {
    display: none !important;
  }

  .hero__hotspot--brands {
    left: 5.5% !important;
    top: 51.8% !important;
    width: 38% !important;
    height: 5.2% !important;
  }

  .hero__hotspot--partner {
    left: 5.5% !important;
    top: 57.8% !important;
    width: 38% !important;
    height: 5.3% !important;
  }
}

.opportunity-copy--wide {
  text-align: right;
  justify-self: end;
  margin-left: auto;
}

/* =========================
   BRAND MODAL TYPOGRAPHY
========================= */
.brands-modal__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #2a2724;
  text-align: left;
}

.brands-modal__intro {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(42, 39, 36, 0.62);
}

.brands-modal__alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(42, 39, 36, 0.08);
}

.brands-modal__alphabet button {
  min-width: 28px;
  border: 0;
  background: transparent;
  color: rgba(42, 39, 36, 0.58);
  font-size: 0.8rem;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.brands-modal__alphabet button:hover {
  color: #111111;
  background: rgba(42, 39, 36, 0.05);
}

.brands-modal__alphabet button.is-active {
  background: rgba(42, 39, 36, 0.08);
  color: #111111;
  font-weight: 600;
  padding: 8px 12px;
}

.brands-group__label {
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #222222;
}

.brand-card__name,
.brand-card__name--serif,
.brand-card__name--bold,
.brand-card__name--italic,
.brand-card__name--spaced {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
}

/* =============================================================
   가로 스크롤 방지 + 배너 반응형 너비/높이 보장
   - body overflow-x 차단
   - .hero 는 100vw/100vh (뷰포트 단위) — 부모/cascade 영향 없음
   - .hero__video 는 항상 hero 100% 채움
============================================================= */
body {
  overflow-x: hidden;
}

/* ── 히어로 베이스: 항상 뷰포트 정확히 채움 ── */
.hero {
  position: relative !important;
  width: 100vw !important;      /* 부모 무관, 항상 뷰포트 너비 */
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* ── 비디오 베이스: 항상 히어로 컨테이너 전체 채움 ── */
.hero__video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  z-index: 0;
}

/* =============================================================
   HERO CTA BUTTONS
   Explore Brands / Our Partners 실제 버튼 스타일
   - Inter 폰트 (사이트 주폰트), font-weight 400 (얇게)
   - 데스크탑: 214×50 고정 크기, 62px 간격 (버튼 50 + 여백 12)
   - 모바일: 214×50 고정 크기, 세로 배치, 62px 고정 간격
============================================================= */

/* 기존 투명 hotspot → 실제 보이는 버튼으로 전환 */
.hero__hotspot {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-indent: 0 !important;
  overflow: visible !important;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

/* ─── Explore Brands : 투명 배경 + 흰 테두리 + 흰 글씨 ─── */
.hero__hotspot--brands {
  left: 82%;                      /* 1700~2000px 범위 오른쪽 보정 */
  width: 214px;
  height: 50px;
  padding: 0;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  color: #ffffff;
  text-decoration: none;
}

.hero__hotspot--brands:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.12);
}

/* ─── Our Partners : 검정 배경 + 흰 글씨 ─── */
.hero__hotspot--partner {
  left: 82%;                      /* brands 와 동일 기준 */
  /* gap: brands top(53.6%) + brands height(50px) + 간격(12px) = 62px */
  top: calc(53.6% + 62px);
  width: 214px;
  height: 50px;
  padding: 0;
  background: #050505;
  border: 1.5px solid #050505;
  color: #ffffff;
  text-decoration: none;
}

.hero__hotspot--partner:hover {
  background: #1c1c1c;
  border-color: #1c1c1c;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* =============================================================
   모바일 배너
   - height: auto + min-height 으로 항상 영상 전체 높이 확보
   - min-height: max(100svh, 74px + vw×2.25)
       → m_banner가 4:9 (400×900) 이므로 영상높이 = width × 9/4 = width × 2.25
       → 헤더(74px) + 영상(100vw × 2.25) = 항상 영상이 잘리지 않는 최소높이
   - 버튼: 214×50 고정, 세로 배치, 62px 고정 간격
============================================================= */
/* =============================================================
   모바일 배너 (≤768px)
   - 너비: 100vw (항상 뷰포트 너비)
   - 높이: 헤더(74px) + m_banner 비율 높이(100vw × 9/4)
     → 뷰포트가 400→500→600px 로 변해도 높이가 비례해서 늘어남
   - 비디오: 헤더 아래부터 전체 채움
============================================================= */
@media (max-width: 768px) {

  .hero {
    width: 100vw !important;
    height: auto !important;
    /* 폴백: calc만 지원하는 구형 브라우저 */
    min-height: calc(74px + 100vw * 2.25) !important;
    /* modern: 뷰포트 높이 vs 영상 비율 높이 중 큰 값 */
    min-height: max(100svh, calc(74px + 100vw * 2.25)) !important;
    padding-top: 74px !important;
    box-sizing: border-box !important;
    max-height: none !important;
    aspect-ratio: unset !important;
  }

  /* 비디오: 헤더(74px) 바로 아래부터 배너 바닥까지 */
  .hero__video {
    top: 74px !important;
    height: calc(100% - 74px) !important;
  }

  /* 모바일 Brands 버튼 */
  .hero__hotspot--brands {
    left: 5.5% !important;
    top: 60% !important;
    width: 214px !important;
    min-width: unset;
    height: 50px !important;
    min-height: unset;
    padding: 0;
    font-size: 0.70rem !important;
    letter-spacing: 0.08em;
  }

  /* 모바일 Our Partners 버튼 */
  .hero__hotspot--partner {
    left: 5.5% !important;
    top: calc(60% + 62px) !important;
    width: 214px !important;
    min-width: unset;
    height: 50px !important;
    min-height: unset;
    padding: 0;
    font-size: 0.70rem !important;
    letter-spacing: 0.08em;
  }
}

/* 가로 모드 모바일: 비율 높이 대신 뷰포트만 채우기 (과도한 높이 방지) */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
  }
}

/* =============================================================
   데스크탑 배너 (≥769px)
   - 너비: 100vw (항상 뷰포트 너비)
   - 높이: aspect-ratio 16/9 로 너비에 비례
     · 1920px → 1080px 높이 (Full HD 완벽 채움)
     · 1500px → 843px 높이
     · 800px  → 450px 높이
     → 너비가 달라지면 높이도 달라짐 = 배너가 명확하게 리사이징됨
   - min-height: 56vh 로 너무 작아지는 것만 방지
   - 비디오: top:0 + object-fit:cover 로 항상 배너 전체 채움
============================================================= */
@media (min-width: 769px) {
  .hero {
    width: 100vw !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    /* min-height 제거: 56vh가 aspect-ratio 높이보다 커지면
       배너가 다시 고정되어 리사이징 안됨 → 0으로 완전 해제 */
    min-height: 0 !important;
    max-height: none !important;
    padding-top: 0 !important;
  }

  .hero__video {
    top: 0 !important;
    height: 100% !important;
  }

  /* ─────────────────────────────────────────────────────────
     핵심 수정: hero__content 는 visibility:hidden 이지만
     position:relative + min-height:calc(100vh-86px) 로 flow에 남아
     hero(height:auto)의 높이를 100vh 수준으로 고정 → aspect-ratio 무력화
     → position:absolute 로 flow에서 제거 → aspect-ratio 16/9 발동
  ───────────────────────────────────────────────────────── */
  .hero__content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    min-height: 0 !important;
  }

  /* hero__stats: flow에서 제거 후 하단 고정
     (flow에 두면 hero__content 제거로 최상단으로 올라감) */
  .hero__stats {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 48px), var(--max)) !important;
    padding-bottom: 30px !important;
  }
}

/* =============================================================
   데스크탑 좁은 구간 (769~1100px): 버튼↔stats 겹침 방지
   ※ 반드시 @media (min-width: 769px) 블록 뒤에 와야 함 (cascade 우선순위)
   - aspect-ratio 16/9 → 800px폭: 450px, 1100px폭: 618px
   - partner 버튼 바텀 = H×0.536+112, stats 상단 = H-240
   - 겹치지 않으려면 H ≥ 759px → min-height: 800px (~41px 여유)
   - 1101px+ : stats 1행(약 110px) → 버튼 바텀 443px, stats 상단 509px → 여유 충분
============================================================= */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero {
    /* partner 버튼 바텀 = H×0.536+112 ≤ H-240(stats 상단) → H ≥ 760px
       800px 은 갭 17px(너무 좁음), 900px 은 갭 65px ✓ */
    min-height: 900px !important;
  }
}

/* =============================================================
   데스크탑 넓은 구간 (≥1101px): aspect-ratio 16/9 자유작동 + 뷰포트 초과 방지
   - aspect-ratio 16/9 만으로 height = width × 9/16
   - max-height: 100vh 로 뷰포트보다 커지지 않게 상한선
     · 1500px × 900vh : 843px < 900px → aspect-ratio 적용 ✓
     · 1920px × 1080vh: 1080px = 1080px → 정확히 맞음 ✓
     · 2560px × 1080vh: aspect-ratio 1440px > 1080vh → max-height 적용, 가로 크롭
============================================================= */
@media (min-width: 1101px) {
  .hero {
    max-height: 100vh !important;
  }
}

/* =============================================================
   FINAL HERO VIDEO OVERRIDE - 3 responsive banner sources
   Mobile:  500~769px  -> 768 / 960
   Tablet:  770~1099px -> 1100 / 800
   Desktop: 1100px+    -> 1920 / 900
============================================================= */
.hero {
  position: relative !important;
  width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  background: var(--dark) !important;
}

.hero__video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

.hero__content {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  min-height: 0 !important;
}

.hero__hotspot--brands,
.hero__hotspot--partner {
  left: auto !important;
  right: clamp(24px, 5.5vw, 108px) !important;
  width: clamp(180px, 11.15vw, 214px) !important;
  height: 50px !important;
}

.hero__hotspot--brands {
  top: 53.6% !important;
}

.hero__hotspot--partner {
  top: calc(53.6% + 62px) !important;
}

@media (max-width: 769.98px) {
  .hero {
    aspect-ratio: 768 / 960 !important;
  }

  .hero__content,
  .hero__stats {
    display: none !important;
  }

  .hero__hotspot--brands,
  .hero__hotspot--partner {
    left: 5.5% !important;
    right: auto !important;
    width: min(214px, calc(100vw - 44px)) !important;
    height: 50px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.08em !important;
  }

  .hero__hotspot--brands {
    top: 60% !important;
  }

  .hero__hotspot--partner {
    top: calc(60% + 62px) !important;
  }
}

@media (min-width: 770px) and (max-width: 1099.98px) {
  .hero {
    aspect-ratio: 1100 / 800 !important;
  }

  .hero__stats {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 36px), var(--max)) !important;
    padding-bottom: 14px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .stat {
    padding: 12px 8px 8px 0 !important;
  }

  .stat strong {
    font-size: clamp(1.35rem, 3vw, 2rem) !important;
  }

  .stat span {
    font-size: 0.58rem !important;
    letter-spacing: 0.08em !important;
  }
}

@media (min-width: 1100px) {
  .hero {
    aspect-ratio: 1920 / 900 !important;
  }

  .hero__hotspot--brands,
  .hero__hotspot--partner {
    right: clamp(88px, 8vw, 154px) !important;
  }

  .hero__stats {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(calc(100% - 48px), var(--max)) !important;
    padding-bottom: 30px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .stat strong {
    white-space: nowrap !important;
  }
}

@media (min-width: 1100px) and (max-width: 1100.98px) {
  .hero__stats {
    padding-bottom: 8px !important;
  }
}

/* =============================================================
   MOBILE FINE TUNING
   - Hero overlay buttons move to the right and shrink slightly.
   - Brand grid images use contain so the 220x130 artwork is not cropped.
============================================================= */
@media (max-width: 769.98px) {
  .hero__hotspot--brands,
  .hero__hotspot--partner {
    left: auto !important;
    right: clamp(14px, 4.6vw, 24px) !important;
    width: clamp(148px, 34vw, 172px) !important;
    height: 42px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.07em !important;
  }

  .hero__hotspot--brands {
    top: 37.5% !important;
  }

  .hero__hotspot--partner {
    top: calc(37.5% + 50px) !important;
  }

  .brands-grid {
    gap: 10px !important;
  }

  .brand-tile {
    min-height: 0 !important;
    aspect-ratio: 220 / 130 !important;
    padding: 0 !important;
    border-radius: 16px !important;
  }

  .brand-preview__img {
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    transform: scale(1) !important;
  }

  .brand-preview__img.is-visible {
    transform: scale(1) !important;
  }
}

@media (max-width: 550.98px) {
  .hero {
    aspect-ratio: auto !important;
    height: calc((100vw * 960 / 768) - 34px) !important;
  }

  .hero__video {
    top: -10px !important;
    height: calc(100% + 24px) !important;
  }

  .hero__hotspot--brands,
  .hero__hotspot--partner {
    right: clamp(8px, 2.6vw, 14px) !important;
    width: clamp(118px, 28vw, 140px) !important;
    height: 36px !important;
    font-size: 0.5rem !important;
    letter-spacing: 0.045em !important;
  }

  .hero__hotspot--partner {
    top: calc(37.5% + 42px) !important;
  }
}
