/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0A;
  color: #EDEAE4;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ============ TOKENS ============ */
:root {
  --gold: #FBC609;
  --gold-soft: #E8B43A;
  --gold-deep: #C99A1F;
  --black: #0A0A0A;
  --black-2: #141414;
  --cream: #F4F0E6;
  --cream-2: #E8E2D2;
  --text-on-dark: #EDEAE4;
  --text-on-cream: #1A1A1A;
  --muted-on-dark: #9A9388;
  --muted-on-cream: #555;

  --display: 'Anton', 'Archivo Black', 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ LOADING SCREEN ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-in-out), transform 0.9s var(--ease-out-expo);
}
.loader.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
}
.loader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 0.9;
}
.loader__line {
  font-family: var(--display);
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(48px, 11vw, 110px);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: loader-pop 0.7s var(--ease-out-expo) forwards;
}
.loader__line:nth-child(2) { animation-delay: 0.18s; }
@keyframes loader-pop {
  to { opacity: 1; transform: translateY(0); }
}
.loader__bar {
  width: 180px;
  height: 1px;
  background: rgba(251, 198, 9, 0.15);
  overflow: hidden;
  position: relative;
}
.loader__bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loader-fill 1.4s var(--ease-in-out) forwards;
  animation-delay: 0.3s;
}
@keyframes loader-fill {
  to { width: 100%; }
}

/* prevent scroll while loading */
body.loading { overflow: hidden; height: 100vh; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 999;
  pointer-events: none;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(251, 198, 9, 0.5);
}

/* ============ CUSTOM CURSOR (desktop fine pointer only) ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s, transform 0.18s var(--ease-out-expo), width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursorDot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}
#cursorRing {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  background: transparent;
}
.cursor.is-link {
  width: 60px;
  height: 60px;
  background: rgba(251, 198, 9, 0.15);
  border-color: var(--gold);
}
#cursorDot.is-link {
  width: 0;
  height: 0;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  body:not(.loading) .cursor { opacity: 1; }
  body.cursor-active * { cursor: none !important; }
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(251, 198, 9, 0.12);
  transform: translateY(-100%);
  opacity: 0;
  animation: nav-drop 0.7s var(--ease-out-expo) forwards;
  animation-delay: 1.4s;
}
@keyframes nav-drop {
  to { transform: translateY(0); opacity: 1; }
}
.nav__logo {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo span:first-child { font-size: 0.55em; opacity: 0.85; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-on-dark);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav__cta {
  border: 1px solid var(--gold);
  padding: 10px 20px;
  color: var(--gold) !important;
  border-radius: 2px;
  overflow: hidden;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.nav__cta { position: relative; z-index: 0; isolation: isolate; }
.nav__cta:hover { color: var(--black) !important; }
.nav__cta:hover::before { transform: scaleX(1); transform-origin: left center; }
.nav__cta::after { display: none; }

@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .nav__logo { font-size: 15px; }
  .nav__links { gap: 14px; }
  .nav__links li:not(:last-child) { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 120px 24px 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  top: -10%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(251,198,9,0.18), transparent 65%);
  animation: orb-drift-1 18s ease-in-out infinite;
}
.hero__orb--2 {
  bottom: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(251,198,9,0.10), transparent 65%);
  animation: orb-drift-2 22s ease-in-out infinite;
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8vw, 6vh) scale(1.1); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6vw, -8vh) scale(1.15); }
}
.hero__inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* ============ BRANDMARK (CSS LOGO) ============ */
.brandmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 0.85;
  margin: 0 auto 50px;
  filter: drop-shadow(0 0 50px rgba(251, 198, 9, 0.18));
}
.brandmark__row {
  display: flex;
  justify-content: center;
  letter-spacing: 0.02em;
  font-family: var(--display);
  font-weight: 400;
  color: var(--gold);
}
.brandmark__row:nth-child(1) {
  font-size: clamp(64px, 14vw, 158px);
}
.brandmark__row:nth-child(2) {
  font-size: clamp(40px, 8.5vw, 96px);
  letter-spacing: 0.08em;
}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotateX(-90deg);
  transform-origin: 50% 100%;
  animation: char-in 0.7s var(--ease-out-expo) forwards;
  animation-delay: calc(1.5s + var(--i) * 0.045s);
}
@keyframes char-in {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
/* glow pulse on logo after entrance */
.brandmark::after {
  content: '';
  display: none;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
  padding: 0 0.05em;
}
.hero__headline .line__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: line-rise 1s var(--ease-out-expo) forwards;
}
.hero__headline .line:nth-child(1) .line__inner { animation-delay: 2.05s; }
.hero__headline .line:nth-child(2) .line__inner { animation-delay: 2.2s; }
@keyframes line-rise {
  to { transform: translateY(0); opacity: 1; }
}

.hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted-on-dark);
  letter-spacing: 0.02em;
  max-width: 580px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fade-in 0.9s var(--ease-out-expo) forwards;
  animation-delay: 2.5s;
}
.hero__cta-wrap { opacity: 0; animation: fade-in 0.9s var(--ease-out-expo) forwards; animation-delay: 2.7s; }
.hero .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up-btn 0.9s var(--ease-out-expo) forwards;
  animation-delay: 2.7s;
}
@keyframes fade-up-btn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { to { opacity: 1; } }

.hero__hint {
  margin-top: 60px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted-on-dark);
  opacity: 0;
  animation: hint-bounce 2.5s ease-in-out infinite, fade-in 0.6s ease forwards;
  animation-delay: 0s, 3.2s;
}
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 0.9; }
}

.gold { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 18px 38px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out-expo);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 52px;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { transform: translateX(100%); }
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(251, 198, 9, 0.35);
}
.btn--dark {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
}
.btn--dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(251, 198, 9, 0.30);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gold);
  color: var(--black);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.08em;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ EYEBROW ============ */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow.center { text-align: center; }

/* ============ REVEAL SYSTEM ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-letters] {
  display: inline-block;
}
[data-reveal-letters] .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) scale(0.96);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
[data-reveal-letters].is-visible .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--black);
  padding: 120px 24px;
  border-top: 1px solid rgba(251, 198, 9, 0.1);
  border-bottom: 1px solid rgba(251, 198, 9, 0.1);
}
.manifesto__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 36px;
  max-width: 800px;
}
.manifesto__body {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted-on-dark);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 22px;
}
.manifesto__body strong { color: var(--gold); font-weight: 700; }
.manifesto__body em { color: var(--text-on-dark); font-style: italic; }
.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(251, 198, 9, 0.18);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
}
.stat__small { font-size: 0.4em; margin-left: 0.1em; letter-spacing: 0.06em; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted-on-dark);
  font-weight: 600;
}

/* ============ COLLECTION ============ */
.collection {
  padding: 130px 24px;
  position: relative;
}
.collection--cream { background: var(--cream); color: var(--text-on-cream); }
.collection--dark { background: var(--black); color: var(--text-on-dark); }
.collection__head {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
}
.collection__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 12vw, 156px);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin: 12px 0 22px;
  display: inline-block;
}
.collection--cream .collection__brand { color: var(--text-on-cream); }
.collection--dark .collection__brand { color: var(--text-on-dark); }
.collection__tagline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  font-style: italic;
  margin-bottom: 22px;
  color: var(--gold-deep);
}
.collection--dark .collection__tagline { color: var(--gold); }
.collection__desc {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.collection--cream .collection__desc { color: var(--muted-on-cream); }
.collection--dark .collection__desc { color: var(--muted-on-dark); }

/* Products grid */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
@media (max-width: 960px) {
  .products { grid-template-columns: 1fr; gap: 36px; max-width: 480px; }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
  border-radius: 6px;
}
.product:hover { transform: translateY(-8px); }
.collection--cream .product {
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
}
.collection--cream .product:hover {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.18);
}
.collection--dark .product {
  background: linear-gradient(180deg, rgba(251,198,9,0.04) 0%, transparent 100%);
  border: 1px solid rgba(251, 198, 9, 0.12);
}
.collection--dark .product:hover {
  border-color: rgba(251, 198, 9, 0.35);
  background: linear-gradient(180deg, rgba(251,198,9,0.07) 0%, rgba(251,198,9,0.01) 100%);
  box-shadow: 0 25px 50px -15px rgba(251, 198, 9, 0.18);
}
.product__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.collection--cream .product__img-wrap {
  background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
}
.collection--dark .product__img-wrap {
  background: linear-gradient(180deg, #1F1A12 0%, #0F0D08 100%);
}
.product__img-wrap img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: transform 0.7s var(--ease-out-expo);
  animation: float 6s ease-in-out infinite;
}
.product:hover .product__img-wrap img {
  transform: scale(1.06);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.product:nth-child(2) .product__img-wrap img { animation-delay: -2s; }
.product:nth-child(3) .product__img-wrap img { animation-delay: -4s; }

.product__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.product__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.collection--dark .product__tagline { color: var(--gold); }
.product__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 320px;
}
.product__notes li {
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 163, 82, 0.18);
}
.product__notes li:last-child { border-bottom: none; }
.product__notes strong {
  display: inline-block;
  width: 60px;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.collection--dark .product__notes strong { color: var(--gold); }
.product__use { font-size: 13px; letter-spacing: 0.02em; }
.collection--cream .product__use { color: var(--muted-on-cream); }
.collection--dark .product__use { color: var(--muted-on-dark); }

/* Collection CTA */
.collection__cta {
  text-align: center;
  margin-top: 40px;
}
.collection__cta-hint {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.collection--cream .collection__cta-hint { color: var(--muted-on-cream); }
.collection--dark .collection__cta-hint { color: var(--muted-on-dark); }

/* ============ WHY ============ */
.why {
  background: var(--black-2);
  padding: 130px 24px;
  text-align: center;
  position: relative;
}
.why__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.1;
  margin-bottom: 70px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 960px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .why__grid { grid-template-columns: 1fr; }
}
.why__item {
  padding: 32px 24px;
  border: 1px solid rgba(251, 198, 9, 0.18);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(251,198,9,0.03) 0%, transparent 100%);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.5s, background 0.5s;
}
.why__item:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 198, 9, 0.45);
  background: linear-gradient(180deg, rgba(251,198,9,0.06) 0%, rgba(251,198,9,0.01) 100%);
}
.why__num {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.why__t {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.why__b {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-on-dark);
}

/* ============ FINAL CTA ============ */
.cta-final {
  padding: 140px 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(251, 198, 9, 0.10), transparent 50%),
    var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted-on-dark);
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .cta-final__grid { grid-template-columns: 1fr; }
}
.cta-card {
  display: block;
  padding: 40px 32px;
  border: 1px solid rgba(251, 198, 9, 0.22);
  border-radius: 6px;
  background: var(--black-2);
  text-align: left;
  cursor: pointer;
  transition: all 0.45s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(251,198,9,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  z-index: -1;
}
.cta-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(251, 198, 9, 0.18);
}
.cta-card:hover::before { opacity: 1; }
.cta-card__num {
  font-family: var(--display);
  font-weight: 400;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.2em;
}
.cta-card__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: 0.05em;
  margin: 16px 0 10px;
  line-height: 1;
}
.cta-card__desc {
  font-size: 14px;
  color: var(--muted-on-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.cta-card__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: padding-right 0.4s var(--ease-out-expo);
}
.cta-card:hover .cta-card__link { padding-right: 8px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(251, 198, 9, 0.15);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__tag {
  font-size: 14px;
  color: var(--muted-on-dark);
  font-style: italic;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.footer__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  transition: color 0.2s, padding-right 0.3s var(--ease-out-expo);
}
.footer__links a:hover { color: var(--gold); padding-right: 6px; }
@media (max-width: 540px) {
  .footer__links { align-items: flex-start; }
}
.footer__copy {
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 198, 9, 0.1);
}

/* ============ MOBILE BREAKPOINTS ============ */
@media (max-width: 720px) {
  .brandmark { margin-bottom: 32px; gap: 2px; }
  .brandmark__row:nth-child(1) { font-size: clamp(72px, 18vw, 110px); }
  .brandmark__row:nth-child(2) { font-size: clamp(46px, 11vw, 70px); }
  .hero { padding: 100px 16px 60px; }
  .manifesto, .collection, .why, .cta-final { padding: 80px 18px; }
  .manifesto__stats { gap: 16px; padding-top: 36px; margin-top: 40px; }
  .marquee__track { font-size: 14px; gap: 22px; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .btn { padding: 16px 28px; font-size: 13px; min-height: 48px; }
  .cta-card { padding: 28px 22px; }
  .cta-card__brand { font-size: 36px; }
  .why__item { padding: 24px 20px; }
}

@media (max-width: 380px) {
  .brandmark__row:nth-child(1) { font-size: 70px; }
  .brandmark__row:nth-child(2) { font-size: 44px; }
  .hero__headline { font-size: 30px; }
}

/* ============ ACCESSIBILITY ============ */
@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;
  }
  .char, .loader__line, .hero__headline .line__inner, .hero__sub, .hero .btn, .hero__hint, .nav { opacity: 1 !important; transform: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
