/* ═══════════════════════════════════════════
   CELEBEZ — Star-Inspired Luxury
   Palette: ink black · ivory · crimson · champagne
   ═══════════════════════════════════════════ */

:root {
  --ink: #0b0a0a;
  --ink-2: #121010;
  --ivory: #f4efe7;
  --ivory-dim: #b8b0a4;
  --crimson: #c1121f;
  --crimson-deep: #7a0c14;
  --champagne: #d4b06a;
  --champagne-hi: #edd9a3;
  --hairline: rgba(244, 239, 231, 0.1);
  --gold-grad: linear-gradient(105deg, #a8804a 0%, #edd9a3 40%, #d4b06a 60%, #9c7440 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--champagne); color: var(--ink); }

/* Film grain — the single biggest "expensive" cue on dark sites */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 90;
  pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Refined scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: #2a2622; border-radius: 5px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: var(--champagne); }

/* Gold gradient text utility */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Preloader ─────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.55em; text-indent: 0.55em;
  display: flex;
}
.preloader-logo span {
  opacity: 0; transform: translateY(24px);
  animation: letterUp 0.8s var(--ease) forwards;
}
.preloader-logo span:nth-child(1) { animation-delay: 0.05s; }
.preloader-logo span:nth-child(2) { animation-delay: 0.13s; }
.preloader-logo span:nth-child(3) { animation-delay: 0.21s; }
.preloader-logo span:nth-child(4) { animation-delay: 0.29s; }
.preloader-logo span:nth-child(5) { animation-delay: 0.37s; }
.preloader-logo span:nth-child(6) { animation-delay: 0.45s; }
.preloader-logo span:nth-child(7) { animation-delay: 0.53s; }
@keyframes letterUp { to { opacity: 1; transform: translateY(0); } }
.preloader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  animation: lineGrow 1.4s 0.5s var(--ease) forwards;
}
@keyframes lineGrow { to { width: 180px; } }

/* ── Navigation ────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 4vw;
  transition: background 0.5s, padding 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 10, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 14px 4vw;
  border-bottom-color: rgba(212, 176, 106, 0.14);
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; max-width: 1400px; margin: 0 auto;
}
.nav-left { display: flex; gap: 34px; }
.nav-right { display: flex; gap: 34px; justify-content: flex-end; align-items: center; }
.nav-link {
  color: var(--ivory-dim); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--champagne);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { width: 100%; }
.nav-logo {
  font-family: var(--serif); font-size: 1.5rem;
  letter-spacing: 0.45em; text-indent: 0.45em;
  color: var(--ivory); text-decoration: none; white-space: nowrap;
}
.nav-bag {
  background: none; border: none; color: var(--ivory);
  cursor: pointer; position: relative; display: flex; align-items: center;
}
.bag-count {
  position: absolute; top: -7px; right: -10px;
  background: var(--crimson); color: var(--ivory);
  font-size: 0.58rem; font-family: var(--sans);
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-burger { display: none; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(11, 10, 10, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8vh;
  opacity: 0; visibility: hidden; transition: 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--ivory); text-decoration: none;
  font-family: var(--serif); font-size: 2rem; letter-spacing: 0.2em;
}

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 16px 38px; transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
/* Shine sweep across solid buttons */
.btn-solid::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(244,239,231,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
}
.btn-solid:hover::after { left: 130%; }
.btn-solid {
  background: var(--crimson); color: var(--ivory);
  box-shadow: 0 8px 30px rgba(193, 18, 31, 0.25);
}
.btn-solid:hover {
  background: var(--crimson-deep); letter-spacing: 0.38em;
  box-shadow: 0 10px 36px rgba(193, 18, 31, 0.35);
}
.btn-ghost {
  border-color: rgba(244, 239, 231, 0.35); color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(244,239,231,0.06); }
.btn-outline-lg {
  border-color: rgba(244, 239, 231, 0.3); color: var(--ivory);
  padding: 20px 64px;
}
.btn-outline-lg:hover { border-color: var(--champagne); color: var(--champagne-hi); letter-spacing: 0.38em; }

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-art {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(193, 18, 31, 0.32), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(212, 176, 106, 0.10), transparent 60%),
    radial-gradient(ellipse 45% 45% at 85% 85%, rgba(122, 12, 20, 0.25), transparent 65%),
    linear-gradient(160deg, #151011 0%, #0b0a0a 55%, #120b0c 100%);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1.5%, -1%); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(11,10,10,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 5vw; }
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 3.5vh;
  display: inline-flex; align-items: center; gap: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,106,0.6));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, rgba(212,176,106,0.6), transparent);
}
/* Hairline frame inside the hero — gallery feel */
.hero::after {
  content: ""; position: absolute; inset: 22px; z-index: 1;
  border: 1px solid rgba(244, 239, 231, 0.09);
  pointer-events: none;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 10vw, 8rem);
  line-height: 1.05; color: var(--ivory);
  text-shadow: 0 4px 60px rgba(212, 176, 106, 0.18);
}
.hero-line { display: block; overflow: hidden; }
.hero-line span {
  display: block; transform: translateY(110%);
  animation: heroRise 1.3s 1.1s var(--ease) forwards;
}
@keyframes heroRise { to { transform: translateY(0); } }
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: var(--ivory-dim); margin: 3.5vh 0 5vh;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory-dim); z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ivory-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Marquee ───────────────────────────── */
.marquee {
  border-top: 1px solid rgba(244,239,231,0.08);
  border-bottom: 1px solid rgba(244,239,231,0.08);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
  background: var(--ink-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-size: 0.95rem;
  letter-spacing: 0.45em; color: var(--ivory-dim);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections shared ───────────────────── */
section { padding: 14vh 5vw; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 9vh; }
.section-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: 0.06em; line-height: 1.1;
}
/* Ornament under section heads */
.section-head::after {
  content: "✦"; display: block; margin-top: 30px;
  color: var(--champagne); font-size: 0.7rem;
  position: relative;
}
.section-sub { color: var(--ivory-dim); margin-top: 20px; font-size: 0.95rem; }

/* ── Product grid ──────────────────────── */
.collection { max-width: 1400px; margin: 0 auto; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}
.product-card { cursor: pointer; }
.card-media {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 231, 0.07);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.product-card:hover .card-media {
  border-color: rgba(212, 176, 106, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
/* Inner hairline frame that fades in on hover */
.card-media::after {
  content: ""; position: absolute; inset: 12px; z-index: 2;
  border: 1px solid rgba(244, 239, 231, 0.35);
  opacity: 0; transform: scale(1.02);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.product-card:hover .card-media::after { opacity: 1; transform: scale(1); }
/* Soft scrim so type and tags sit on the photo elegantly */
.card-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,10,10,0.35), transparent 35%);
  pointer-events: none;
}
.card-art, .look-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease);
}

/* Real photos — fill the slot, wordmark stays on top */
.ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.card-wm, .story-wm { position: relative; z-index: 1; }
.hero-ph {
  opacity: 0.45; filter: brightness(0.8);
  /* keep faces in frame when the wide hero crops the square photo */
  object-position: center 26%;
  /* fade the band where the photo's printed wordmark sits, so only the site title shows */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.08) 70%, #000 84%, #000 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.08) 70%, #000 84%, #000 100%);
}
/* Photos carry the CELEBEZ wordmark already — hide the overlay when one loads */
.card-art:has(.ph) .card-wm,
.look-art:has(.ph) .card-wm,
.story-art:has(.ph) .story-wm { display: none; }
.product-card:hover .card-art { transform: scale(1.07); }
.card-wm {
  font-family: var(--serif); color: rgba(244,239,231,0.9);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.45em; text-indent: 0.45em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

/* Art backdrops — swap these divs for <img> when photos are ready */
.art-crimson { background: radial-gradient(ellipse 80% 70% at 50% 30%, #e0263a, #8f0f1a 70%, #5c0a11); }
.art-noir    { background: radial-gradient(ellipse 75% 65% at 50% 35%, #3a3438, #171315 72%, #0b0a0a); }
.art-amber   { background: radial-gradient(ellipse 80% 70% at 50% 30%, #e8a83e, #b06f18 70%, #6e4410); }
.art-royal   { background: radial-gradient(ellipse 80% 70% at 50% 30%, #2c56d8, #16307e 70%, #0d1c4a); }
.art-rose    { background: radial-gradient(ellipse 80% 70% at 50% 30%, #e4507e, #a4224c 70%, #611230); }
.art-emerald { background: radial-gradient(ellipse 80% 70% at 50% 30%, #1e9d6e, #0d5e40 70%, #073826); }

.card-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(11,10,10,0.75); backdrop-filter: blur(6px);
  color: var(--champagne);
  border: 1px solid rgba(212, 176, 106, 0.35);
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 7px 14px;
}
.card-quick {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: rgba(11,10,10,0.85); backdrop-filter: blur(8px);
  color: var(--champagne-hi); border: none; cursor: pointer;
  border-top: 1px solid rgba(212, 176, 106, 0.25);
  font-family: var(--sans); font-size: 0.68rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  padding: 16px; transform: translateY(100%);
  transition: transform 0.5s var(--ease), letter-spacing 0.4s var(--ease);
}
.card-quick:hover { letter-spacing: 0.42em; }
.product-card:hover .card-quick { transform: translateY(0); }
.card-info { padding-top: 20px; text-align: center; }
.card-info h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.3rem; letter-spacing: 0.06em;
}
.card-note {
  color: var(--ivory-dim); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin: 6px 0 10px;
}
.card-price {
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.12em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.collection-cta { text-align: center; margin-top: 10vh; }

/* ── Story split ───────────────────────── */
.story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7vw; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.story-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.story-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 40% 30%, rgba(232, 168, 62, 0.85), transparent 70%),
    radial-gradient(ellipse 60% 70% at 75% 75%, rgba(176, 111, 24, 0.7), transparent 65%),
    linear-gradient(150deg, #a86a1d, #4a2e0c 80%);
  display: flex; align-items: center; justify-content: center;
}
.story-wm {
  font-family: var(--serif); color: rgba(244,239,231,0.92);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.story-media::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(212, 176, 106, 0.35); pointer-events: none;
}
.story-media { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.story-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.08;
  margin: 14px 0 30px;
}
.story-title em {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.story-text p { color: var(--ivory-dim); margin-bottom: 18px; max-width: 46ch; }
.story-stats {
  display: flex; gap: 48px; margin-top: 42px;
  border-top: 1px solid rgba(244,239,231,0.12); padding-top: 30px;
}
.story-stats { border-top-color: rgba(212, 176, 106, 0.18); }
.story-stats strong {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: 2.2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.story-stats span {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ── Lookbook ──────────────────────────── */
.lookbook { max-width: 1400px; margin: 0 auto; }
.look-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px; gap: 22px;
}
.look {
  position: relative; overflow: hidden; margin: 0;
  border: 1px solid rgba(244, 239, 231, 0.07);
  transition: border-color 0.5s var(--ease);
}
.look:hover { border-color: rgba(212, 176, 106, 0.3); }
.look::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,10,10,0.45), transparent 40%);
  pointer-events: none;
}
.look.tall { grid-row: span 2; }
.look-art { position: absolute; inset: 0; }
.look:hover .look-art { transform: scale(1.06); }
.look .card-wm { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: clamp(1rem, 2vw, 1.6rem); }
.look figcaption {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,239,231,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  display: flex; align-items: center; gap: 10px;
}
.look figcaption::before {
  content: ""; width: 22px; height: 1px;
  background: var(--champagne);
}

/* ── Quote band ────────────────────────── */
.quote-band {
  background: var(--ink-2);
  border-top: 1px solid rgba(244,239,231,0.07);
  border-bottom: 1px solid rgba(244,239,231,0.07);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 2.2rem); line-height: 1.5;
  max-width: 900px; margin: 0 auto; color: var(--ivory);
  position: relative;
}
.quote-band blockquote::before {
  content: "“"; display: block;
  font-size: 4.5rem; line-height: 0.6; font-style: normal;
  color: rgba(212, 176, 106, 0.5); margin-bottom: 24px;
}
.quote-band blockquote::after {
  content: "✦"; display: block; margin-top: 34px;
  font-style: normal; font-size: 0.75rem; color: var(--champagne);
}

/* ── Contact / newsletter ──────────────── */
.contact { text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-form {
  display: flex; gap: 0; margin-top: 5vh;
  border: 1px solid rgba(244,239,231,0.2);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-form:focus-within {
  border-color: rgba(212, 176, 106, 0.55);
  box-shadow: 0 0 40px rgba(212, 176, 106, 0.08);
}
.contact-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--ivory); font-family: var(--sans); font-weight: 300;
  font-size: 0.9rem; letter-spacing: 0.05em; padding: 0 24px;
}
.contact-form input::placeholder { color: var(--ivory-dim); }
.contact-form .btn { border: none; }
.form-done {
  margin-top: 24px; color: var(--champagne);
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  opacity: 0; transition: opacity 0.6s;
}
.form-done.show { opacity: 1; }

/* ── Footer ────────────────────────────── */
.footer {
  border-top: 1px solid rgba(244,239,231,0.08);
  padding: 10vh 5vw 5vh; background: var(--ink-2);
}
.footer-logo {
  font-family: var(--serif); text-align: center;
  font-size: clamp(1.8rem, 5vw, 3rem); letter-spacing: 0.3em;
  margin-bottom: 8vh;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1080px; margin: 0 auto 8vh;
}
.footer-cols h4 {
  font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 20px; font-weight: 500;
}
.footer-cols a {
  display: block; color: var(--ivory-dim); text-decoration: none;
  font-size: 0.85rem; margin-bottom: 12px; transition: color 0.3s;
}
.footer-cols a:hover { color: var(--ivory); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid rgba(244,239,231,0.07); padding-top: 26px;
  font-size: 0.68rem; letter-spacing: 0.14em; color: var(--ivory-dim);
}

/* ── Scroll reveal ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .look-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .story { grid-template-columns: 1fr; gap: 7vh; }
  .story-stats { gap: 30px; }
  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-logo { justify-self: start; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer; padding: 6px;
    z-index: 60;
  }
  .nav-burger span {
    width: 26px; height: 1px; background: var(--ivory);
    transition: 0.4s var(--ease);
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .look-grid { grid-template-columns: 1fr; }
  .look.tall { grid-row: span 1; }
  .bq-br { display: none; }
  .contact-form { flex-direction: column; border: none; gap: 14px; }
  .contact-form input {
    border: 1px solid rgba(244,239,231,0.2); padding: 16px 20px;
  }
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
  .footer-base { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════
   COMMERCE — bag drawer, product modal, toast
   ═══════════════════════════════════════════ */

.bag-count.has-items { background: var(--champagne); color: var(--ink); }

/* ── Bag drawer ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(11, 10, 10, 0.6);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(430px, 100vw);
  background: var(--ink-2);
  border-left: 1px solid rgba(244, 239, 231, 0.1);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px; border-bottom: 1px solid rgba(244, 239, 231, 0.08);
}
.cart-head h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.35rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.cart-close {
  background: none; border: none; color: var(--ivory-dim);
  font-size: 1rem; cursor: pointer; padding: 6px; line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.cart-close:hover { color: var(--ivory); transform: rotate(90deg); }

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  color: var(--ivory-dim); font-size: 0.9rem;
}

.cart-items { flex: 1; overflow-y: auto; padding: 10px 28px; }
.cart-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.07);
}
.cart-item img {
  width: 72px; height: 90px; object-fit: cover;
  background: #1c1919; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.05rem;
  letter-spacing: 0.04em; margin-bottom: 2px;
}
.cart-item-info p { font-size: 0.75rem; color: var(--ivory-dim); letter-spacing: 0.08em; }
.cart-qty {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 10px;
  border: 1px solid rgba(244, 239, 231, 0.18); padding: 3px 10px;
}
.cart-qty button {
  background: none; border: none; color: var(--ivory);
  font-size: 0.95rem; cursor: pointer; padding: 0 2px;
}
.cart-qty span { font-size: 0.8rem; min-width: 14px; text-align: center; }
.cart-item-right {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: space-between;
}
.cart-item-price { font-size: 0.88rem; color: var(--champagne); letter-spacing: 0.06em; }
.cart-remove {
  background: none; border: none; color: var(--ivory-dim);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: color 0.3s;
}
.cart-remove:hover { color: var(--crimson); }

.cart-foot {
  padding: 22px 28px 30px;
  border-top: 1px solid rgba(244, 239, 231, 0.08);
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.cart-subtotal span:last-child { color: var(--champagne); font-size: 1rem; letter-spacing: 0.08em; }
.cart-ship { font-size: 0.68rem; color: var(--ivory-dim); margin: 8px 0 18px; letter-spacing: 0.06em; }
.cart-checkout { width: 100%; text-align: center; cursor: pointer; }
.cart-checkout:disabled { opacity: 0.55; cursor: wait; }

/* ── Product modal ── */
.product-modal {
  position: fixed; inset: 0; z-index: 62;
  background: rgba(11, 10, 10, 0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.product-modal.open { opacity: 1; visibility: visible; }
.pm-card {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(820px, 100%); max-height: 88vh;
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 231, 0.1);
  transform: translateY(18px);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
}
.product-modal.open .pm-card { transform: translateY(0); }
.pm-close { position: absolute; top: 14px; right: 14px; z-index: 2; }
.pm-media { background: #1c1919; min-height: 340px; }
.pm-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-info { padding: 44px 38px; display: flex; flex-direction: column; }
.pm-info h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.8rem; letter-spacing: 0.05em; line-height: 1.2;
}
.pm-note { font-size: 0.72rem; color: var(--ivory-dim); letter-spacing: 0.24em; text-transform: uppercase; margin-top: 8px; }
.pm-price { font-size: 1.15rem; color: var(--champagne); margin: 16px 0 4px; letter-spacing: 0.06em; }
.pm-label {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-dim); margin: 22px 0 10px;
}
.pm-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-size {
  min-width: 46px; padding: 9px 0; text-align: center;
  background: none; color: var(--ivory);
  border: 1px solid rgba(244, 239, 231, 0.22);
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em;
  cursor: pointer; transition: all 0.25s;
}
.pm-size:hover { border-color: var(--ivory); }
.pm-size.sel { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.pm-hint { color: var(--crimson); font-size: 0.72rem; letter-spacing: 0.1em; min-height: 1.2em; margin-top: 10px; }
.pm-add { margin-top: auto; width: 100%; text-align: center; cursor: pointer; opacity: 0.85; }
.pm-add.ready { opacity: 1; }

@media (max-width: 640px) {
  .pm-card { grid-template-columns: 1fr; overflow-y: auto; }
  .pm-media { min-height: 250px; max-height: 34vh; }
  .pm-info { padding: 28px 24px 34px; }
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 70;
  transform: translate(-50%, 24px);
  background: var(--ivory); color: var(--ink);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 26px;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
  max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.error { background: var(--crimson); color: var(--ivory); }

/* ── Coming Soon collection tags ───────── */
.look { cursor: default; }
.look .coming-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(11, 10, 10, 0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--champagne);
  border: 1px solid rgba(212, 176, 106, 0.35);
  font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase;
  padding: 7px 14px 7px 16px;
}
.look:hover .coming-tag { color: var(--ivory); border-color: rgba(244, 239, 231, 0.5); }

/* ── Square media: photos are 1:1, so no side-cropping — full CELEBEZ wordmark always visible ── */
.card-media { aspect-ratio: 1 / 1; }
.ph { object-position: center; }
.look-grid { grid-auto-rows: auto; }
.look { aspect-ratio: 1 / 1; }
.look.tall { grid-row: span 1; }
.story-media { aspect-ratio: 1 / 1; }

/* ── Multi-page: interior page hero ─────── */
.page-hero {
  min-height: 46svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding: 20vh 5vw 6vh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(193, 18, 31, 0.14), transparent 65%),
    var(--ink);
  border-bottom: 1px solid rgba(244, 239, 231, 0.07);
}
.page-hero .section-title { font-size: clamp(2.6rem, 7vw, 5.2rem); }
.page-hero .section-sub { max-width: 520px; }

/* ── Manifesto (the creed) ──────────────── */
.manifesto {
  text-align: center;
  padding: 16vh 6vw;
  max-width: 980px; margin: 0 auto;
}
.manifesto blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.6; color: var(--ivory);
  margin-top: 26px;
}
.manifesto blockquote em { color: var(--champagne); font-style: italic; }
.manifesto-kicker {
  display: inline-block; margin-top: 26px;
  font-family: var(--sans); font-size: 0.8rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ── The Name ───────────────────────────── */
.name-section {
  text-align: center;
  padding: 16vh 6vw;
  max-width: 980px; margin: 0 auto;
}
.name-word {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  letter-spacing: 0.14em; line-height: 1;
  margin-top: 8px;
}
.name-ez {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.name-gloss {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--ivory); margin-top: 30px;
}
.name-gloss em { color: var(--champagne); }
.name-body {
  color: var(--ivory-dim); max-width: 56ch;
  margin: 24px auto 0; line-height: 1.75;
}
.name-kicker {
  display: inline-block; margin-top: 36px;
  font-size: 0.66rem; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--champagne);
}

/* Homepage name echo */
.name-echo blockquote::before { content: "✦"; font-size: 0.75rem; color: var(--champagne); }
.name-echo-word {
  display: block; font-style: normal;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.16em; margin-bottom: 22px;
}
.name-echo em { color: var(--champagne); }
.name-echo-link {
  display: inline-block; margin-top: 28px;
  font-family: var(--sans); font-style: normal;
  font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ivory-dim); text-decoration: none;
  border-bottom: 1px solid rgba(212, 176, 106, 0.4);
  padding-bottom: 4px; transition: color 0.3s;
}
.name-echo-link:hover { color: var(--champagne); }

/* ── Scarcity creed band ────────────────── */
.creed-band { padding: 9vh 5vw; }
.creed-stats {
  justify-content: center; gap: clamp(40px, 9vw, 120px);
  border-top: none; padding-top: 0; margin-top: 0;
}
.creed-stats strong { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--champagne); }

/* Active nav link */
.nav-link.active { color: var(--ivory); }

/* ═══════════════════════════════════════════
   COLOR EDITION — vivid hero, per-card color
   moods, colored glows across sections
   ═══════════════════════════════════════════ */

/* ── Hero: full-colour photograph ── */
.hero-ph { opacity: 0.72; filter: saturate(1.08) contrast(1.02) brightness(0.85); object-position: center 26%; }
.hero-vignette {
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 30%, rgba(11, 10, 10, 0.88) 100%),
    linear-gradient(to top, rgba(11, 10, 10, 0.6), transparent 38%);
}
/* dark halo behind the title so ivory type stays readable on bright photo */
.hero-content { position: relative; }
.hero-content::before {
  content: ""; position: absolute; inset: -16% -22%; z-index: -1;
  background: radial-gradient(ellipse 62% 58% at 50% 46%, rgba(11, 10, 10, 0.78), transparent 75%);
  filter: blur(8px);
}

/* ── Per-card colour moods ── */
.product-card { --accent: var(--crimson); }
.product-card:has(.art-crimson) { --accent: #e0263a; }
.product-card:has(.art-amber)   { --accent: #e8a83e; }
.product-card:has(.art-royal)   { --accent: #4a72e8; }
.product-card:has(.art-rose)    { --accent: #e4507e; }
.product-card:has(.art-emerald) { --accent: #22b381; }
.product-card:has(.art-noir)    { --accent: #d4b06a; }

/* coloured scrim rising from the bottom of each photo */
.card-media::before {
  background: linear-gradient(to top,
    color-mix(in srgb, var(--accent) 42%, rgba(11, 10, 10, 0.45)),
    transparent 34%);
}
.product-card:hover .card-media {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px color-mix(in srgb, var(--accent) 26%, transparent);
}
.card-tag { border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.card-quick { border-top-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.card-info h3 { transition: color 0.3s; }
.product-card:hover .card-info h3 { color: color-mix(in srgb, var(--accent) 55%, var(--ivory)); }

/* ── Lookbook tiles share the colour system ── */
.look { --accent: var(--champagne); }
.look:has(.art-crimson) { --accent: #e0263a; }
.look:has(.art-amber)   { --accent: #e8a83e; }
.look:has(.art-royal)   { --accent: #4a72e8; }
.look:has(.art-rose)    { --accent: #e4507e; }
.look:has(.art-emerald) { --accent: #22b381; }
.look:has(.art-noir)    { --accent: #d4b06a; }
.look::after {
  background: linear-gradient(to top,
    color-mix(in srgb, var(--accent) 34%, rgba(11, 10, 10, 0.5)),
    transparent 42%);
}
.look:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.look figcaption::before { background: var(--accent); }
.coming-tag { border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent); }

/* ── Coloured glows behind sections ── */
.manifesto {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(193, 18, 31, 0.16), transparent 62%),
    radial-gradient(ellipse 50% 45% at 12% 90%, rgba(212, 176, 106, 0.07), transparent 60%);
}
.page-hero {
  background:
    radial-gradient(ellipse 65% 70% at 50% 0%, rgba(193, 18, 31, 0.14), transparent 65%);
}
.collection {
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(232, 168, 62, 0.07), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 75%, rgba(228, 80, 126, 0.06), transparent 60%);
}
.story {
  background:
    radial-gradient(ellipse 60% 55% at 90% 10%, rgba(74, 114, 232, 0.07), transparent 60%),
    radial-gradient(ellipse 55% 50% at 8% 90%, rgba(193, 18, 31, 0.09), transparent 60%);
}
.quote-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(193, 18, 31, 0.1), transparent 70%),
    var(--ink-2);
}
.contact {
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(193, 18, 31, 0.16), transparent 65%),
    radial-gradient(ellipse 45% 40% at 88% 10%, rgba(212, 176, 106, 0.08), transparent 60%);
}

/* ── Richer accents ── */
.btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne-hi);
  background: rgba(212, 176, 106, 0.08);
}
.mobile-menu a { transition: color 0.3s; }
.mobile-menu a:hover { color: var(--champagne); }
.marquee-track span { color: color-mix(in srgb, var(--champagne) 45%, var(--ivory-dim)); }

/* ═══════════════════════════════════════════
   TRUST & SERVICE — why-strip, modal details,
   size guide, contact page, help page
   ═══════════════════════════════════════════ */

.form-done.error { color: var(--crimson); }

/* ── Why CELEBEZ strip (shop) ──────────────── */
.why-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1180px; margin: 0 auto 7vh; padding: 28px 5vw;
  border-top: 1px solid rgba(212, 176, 106, 0.18);
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
  text-align: center;
}
.why-item strong {
  display: block; font-family: var(--serif); font-weight: 500; font-size: 1.7rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.why-item span {
  display: block; margin-top: 6px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory-dim); line-height: 1.7;
}
.why-item a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.why-item a:hover { color: var(--ivory); }

/* ── Product modal: gallery thumbs ─────────── */
.pm-media { display: flex; flex-direction: column; }
.pm-media img { flex: 1; min-height: 0; }
.pm-thumbs { display: flex; gap: 8px; padding: 10px; background: #171414; }
.pm-thumbs:empty { display: none; }
.pm-thumb {
  width: 54px; height: 54px; padding: 0; cursor: pointer;
  background: none; border: 1px solid rgba(244,239,231,0.15); opacity: 0.65;
  transition: opacity 0.25s, border-color 0.25s;
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb:hover { opacity: 1; }
.pm-thumb.sel { opacity: 1; border-color: var(--champagne); }

/* ── Product modal: size guide + details ───── */
.pm-size-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pm-guide-link {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--ivory-dim); font-family: var(--sans); font-weight: 300;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.25s;
}
.pm-guide-link:hover, .pm-guide-link.open { color: var(--champagne); }
.pm-guide { margin-top: 14px; }
.pm-guide table { width: 100%; border-collapse: collapse; font-size: 0.74rem; }
.pm-guide th, .pm-guide td {
  padding: 6px 8px; text-align: left;
  border-bottom: 1px solid rgba(244,239,231,0.1);
}
.pm-guide th {
  font-weight: 400; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivory-dim);
}
.pm-guide td { color: var(--ivory-dim); }
.pm-guide td:first-child { color: var(--ivory); }
.pm-guide-note { font-size: 0.68rem; color: var(--muted, #7d766b); margin-top: 8px; letter-spacing: 0.05em; }
.pm-guide-note a { color: var(--ivory-dim); }
.pm-guide-note a:hover { color: var(--champagne); }

.pm-details { margin-top: 22px; border-top: 1px solid rgba(244,239,231,0.1); }
.pm-detail { border-bottom: 1px solid rgba(244,239,231,0.1); }
.pm-detail summary {
  cursor: pointer; list-style: none; padding: 12px 0;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-dim); transition: color 0.25s;
  display: flex; justify-content: space-between; align-items: center;
}
.pm-detail summary::-webkit-details-marker { display: none; }
.pm-detail summary::after { content: "+"; font-size: 0.9rem; color: var(--ivory-dim); }
.pm-detail[open] summary::after { content: "−"; }
.pm-detail summary:hover { color: var(--ivory); }
.pm-detail p { font-size: 0.8rem; color: var(--ivory-dim); line-height: 1.7; padding: 0 0 14px; }
.pm-detail a { color: var(--champagne); }

/* ── Contact page ──────────────────────────── */
.contact-page { max-width: 1080px; margin: 0 auto; padding: 8vh 5vw 14vh; }
.contact-page-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: start; }
.contact-card { display: flex; flex-direction: column; }
.cc-label {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim); margin: 22px 0 8px;
}
.cc-label:first-child { margin-top: 0; }
.cc-input {
  background: transparent; border: 1px solid rgba(244,239,231,0.2); outline: none;
  color: var(--ivory); font-family: var(--sans); font-weight: 300;
  font-size: 0.9rem; letter-spacing: 0.05em; padding: 14px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cc-input:focus {
  border-color: rgba(212, 176, 106, 0.55);
  box-shadow: 0 0 30px rgba(212, 176, 106, 0.07);
}
.cc-input::placeholder { color: var(--muted, #7d766b); }
.cc-textarea { min-height: 160px; resize: vertical; line-height: 1.7; }
.cc-send { margin-top: 28px; align-self: flex-start; cursor: pointer; }
.contact-aside { display: flex; flex-direction: column; gap: 34px; padding-top: 6px; }
.contact-aside-block h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
  letter-spacing: 0.04em; margin-bottom: 10px; color: var(--ivory);
}
.contact-aside-block p { font-size: 0.85rem; color: var(--ivory-dim); line-height: 1.8; }
.contact-aside-block a { color: var(--champagne); }

/* ── Help & FAQ page ───────────────────────── */
.help { padding: 4vh 5vw 14vh; }
.help-inner { max-width: 760px; margin: 0 auto; }
.help-block { margin-bottom: 10vh; scroll-margin-top: 110px; }
.help-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: 0.06em;
  margin: 14px 0 18px;
}
.help-block > p { font-size: 0.92rem; color: var(--ivory-dim); line-height: 1.9; margin-bottom: 14px; }
.help-block > p strong { color: var(--ivory); font-weight: 500; }
.help-block a { color: var(--champagne); }
.size-table-wrap { overflow-x: auto; margin: 24px 0 14px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.size-table th, .size-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid rgba(244,239,231,0.12);
}
.size-table th {
  font-weight: 400; font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ivory-dim);
}
.size-table td { color: var(--ivory-dim); }
.size-table td:first-child { color: var(--ivory); }
.size-note { font-size: 0.8rem; color: var(--muted, #7d766b); line-height: 1.8; }
.faq-item {
  border-bottom: 1px solid rgba(244,239,231,0.12);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-family: var(--serif); font-weight: 500; font-size: 1.1rem;
  letter-spacing: 0.03em; color: var(--ivory);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-weight: 300; color: var(--champagne); }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--champagne-hi, var(--champagne)); }
.faq-item p { font-size: 0.88rem; color: var(--ivory-dim); line-height: 1.9; padding: 0 0 22px; }

@media (max-width: 860px) {
  .why-strip { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .cc-send { align-self: stretch; text-align: center; }
}
