/* =========================================================================
   STAR COLLECTION GROUP — Layout & page chrome
   ========================================================================= */

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.95); }
.site-header__inner {
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
/* ---- Official logo lockup: STAR ★ COLLECTION ---- */
.logo { display: inline-flex; align-items: center; line-height: 1; font-size: 17px; text-decoration: none; white-space: nowrap; }
.logo__word {
  font-family: var(--font-logo); font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.26em; padding-left: 0.26em; font-size: 1em;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.logo__star { width: 1.04em; height: 1.04em; flex: 0 0 auto; margin: 0 0.04em; }
.logo__star path { transition: fill 0.3s var(--ease); }
/* graphite finish (for light backgrounds) */
.logo--graphite .logo__word { background-image: var(--logo-graphite); }
.logo--graphite .logo__star path { fill: url(#scgGraphite); }
/* chrome finish (for dark backgrounds) */
.logo--chrome .logo__word { background-image: var(--logo-chrome); }
.logo--chrome .logo__star path { fill: url(#scgChrome); }
/* flat white (fallback on dark) */
.logo--white .logo__word { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.logo--white .logo__star path { fill: #fff; }
.logo__defs { position: absolute; width: 0; height: 0; overflow: hidden; }
/* legacy wordmark fallbacks (footer brand uses .logo now) */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--foreground); position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--foreground); transition: width 0.35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { font-weight: 500; }
.header__actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 100px; overflow: hidden; }
.lang-switch button {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  padding: 7px 13px; color: var(--muted-foreground); line-height: 1;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-switch button.active { background: var(--foreground); color: #fff; }
.lang-switch button:not(.active):hover { color: var(--foreground); }
.lang-switch button:focus-visible { outline: 2px solid var(--foreground); outline-offset: 2px; }
/* Mobile menu language switch sits above the CTA */
.mobile-menu__foot .lang-switch { display: inline-flex; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  transition: background-color 0.3s var(--ease);
}
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 18px; height: 18px; }
.hamburger { display: none; }

@media (max-width: 940px) {
  .nav, .header__actions .btn, .header__actions .search-desktop { display: none; }
  .hamburger { display: inline-flex; }
}

/* ---- Mobile overlay menu ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: #fff;
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__top {
  height: 62px; display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gutter); border-bottom: 1px solid var(--border);
}
.mobile-menu__links {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  gap: 6px; padding: 32px var(--gutter);
}
.mobile-menu__links a {
  font-family: var(--font-serif); font-size: 38px; font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid var(--hairline);
}
.mobile-menu__foot { padding: 28px var(--gutter); border-top: 1px solid var(--border); }

/* ---- Hero ---- */
.hero {
  position: relative; background: var(--black-section); color: #fff;
  min-height: min(76vh, 660px); display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.62); }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.25) 100%),
              linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 55%);
}
.hero__inner { position: relative; padding-block: clamp(64px, 12vh, 130px); width: 100%; }
.hero__content { max-width: 760px; }
.hero h1 { color: #fff; margin: 26px 0 24px; }
.hero .lead { color: rgba(255,255,255,0.74); max-width: 540px; }
.hero .cta-row { margin-top: 40px; }
/* Hero sits on a dark image but isn't a .black-section — give its buttons the
   light treatment so the primary reads white and the ghost stays visible. */
.hero .btn-primary { background: #fff; color: var(--foreground); border-color: #fff; }
.hero .btn-primary:hover { background: rgba(255,255,255,0.86); border-color: rgba(255,255,255,0.86); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.scroll-cue .line { width: 1px; height: 42px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #fff; animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 60%,100% { top: 100%; } }

/* Mobile hero: shorter, content-driven height so the CTAs are never cut off. */
@media (max-width: 600px) {
  .hero { min-height: auto; align-items: flex-start; }
  .hero__inner { padding-top: 110px; padding-bottom: 56px; }
  .hero .display-1 { font-size: 38px; line-height: 1.1; }
  .hero h1 { margin: 18px 0 18px; }
  .hero .lead { font-size: 16px; }
  .hero .cta-row { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero .cta-row .btn { width: 100%; }
  .scroll-cue { display: none; }
}

/* ---- Brand strip ---- */
.brand-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 4vw, 64px); }
.brand-strip span {
  font-family: var(--font-serif); font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: 0.04em; color: var(--muted-foreground);
  opacity: 0.78; transition: opacity 0.3s var(--ease), color 0.3s var(--ease); white-space: nowrap;
}
.brand-strip span:hover { opacity: 1; color: var(--foreground); }

/* ---- Section header row (heading + view all) ---- */
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 3vw, 40px); }
@media (max-width: 640px) { .section-head-row { flex-direction: column; align-items: flex-start; gap: 22px; } }

/* ---- Split (sourcing value prop) ---- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split.reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-md); background: var(--surface); }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }

.steps { counter-reset: step; margin-top: 8px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--hairline); }
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step__num {
  counter-increment: step; font-family: var(--font-serif); font-size: 26px;
  color: var(--muted-foreground); width: 40px;
}
.step__num::before { content: "0" counter(step); }
.step h4 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted-foreground); margin: 0; }

/* ---- Trust columns ---- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; gap: 36px; } }
.trust-col svg { width: 30px; height: 30px; stroke: var(--foreground); margin-bottom: 22px; }
.black-section .trust-col svg { stroke: #fff; }
.trust-col h3 { font-size: 23px; margin-bottom: 10px; }
.trust-col p { font-size: 14.5px; color: var(--muted-foreground); margin: 0; }

/* ---- Editorial CTA banner ---- */
.cta-banner { text-align: center; }
.cta-banner h2 { max-width: 16ch; margin: 0 auto 30px; }

/* ---- Footer ---- */
.site-footer { background: var(--black-section); color: rgba(255,255,255,0.7); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 56px); padding-block: clamp(56px, 8vw, 96px); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 44px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo { font-size: 21px; }
.footer-brand p { margin-top: 20px; max-width: 30ch; font-family: var(--font-serif); font-size: 20px; color: rgba(255,255,255,0.78); line-height: 1.35; }
.footer-col h5 { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-block: 28px; border-top: 1px solid var(--hairline-light); font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a { width: 38px; height: 38px; border: 1px solid var(--hairline-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease); }
.social-row a:hover { border-color: #fff; }
.social-row svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }

/* ---- Page header (interior pages) ---- */
.page-head { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(18px, 2.5vw, 30px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--foreground); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---- Collection layout ---- */
.collection-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .collection-layout { grid-template-columns: 1fr; } }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.toolbar__search { position: relative; flex: 1; min-width: 200px; max-width: 360px; }
.toolbar__search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--muted-foreground); }
.toolbar__search .input { padding-left: 42px; }
.toolbar__right { display: flex; align-items: center; gap: 14px; }
.toolbar__count { font-size: 13px; color: var(--muted-foreground); }
.sort-select { min-width: 180px; }

.filters { position: sticky; top: 80px; }
.filter-group { padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--foreground); margin-bottom: 16px; }
.check { display: flex; align-items: center; gap: 11px; padding: 6px 0; cursor: pointer; font-size: 14px; color: var(--muted-foreground); transition: color 0.2s var(--ease); }
.check:hover { color: var(--foreground); }
.check input { appearance: none; width: 16px; height: 16px; border: 1px solid var(--border); border-radius: 3px; display: grid; place-content: center; cursor: pointer; flex-shrink: 0; transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease); }
.check input:checked { background: var(--foreground); border-color: var(--foreground); }
.check input:checked::after { content: ""; width: 9px; height: 5px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg) translateY(-1px); }
.check input:focus-visible { outline: 2px solid var(--foreground); outline-offset: 2px; }
.check .ct { margin-left: auto; font-size: 12px; color: #b3b3b3; }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.filters__head h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.clear-link { font-size: 12px; letter-spacing: 0.04em; color: var(--muted-foreground); text-decoration: underline; text-underline-offset: 3px; }
.clear-link:hover { color: var(--foreground); }

.price-inputs { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.price-inputs .input { padding: 10px 12px; font-size: 13px; }
.price-inputs span { color: var(--muted-foreground); }
.range-wrap { margin: 14px 2px 6px; }
input[type="range"].range { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--border); outline: none; }
input[type="range"].range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--foreground); cursor: pointer; }
input[type="range"].range::-moz-range-thumb { width: 16px; height: 16px; border: none; border-radius: 50%; background: var(--foreground); cursor: pointer; }

.filter-toggle { display: none; }
@media (max-width: 900px) {
  .filter-toggle { display: inline-flex; }
  .filters { position: fixed; inset: 0; z-index: 85; background: #fff; padding: 0; transform: translateX(-100%); transition: transform 0.4s var(--ease); overflow-y: auto; }
  .filters.open { transform: translateX(0); }
  .filters__scroll { padding: 22px var(--gutter) 40px; }
  .filters__mobilebar { position: sticky; top: 0; background: #fff; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter); border-bottom: 1px solid var(--border); }
}

/* ---- Pagination / load more ---- */
.loadmore-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: clamp(48px, 6vw, 72px); }
.loadmore-wrap .progress { font-size: 13px; color: var(--muted-foreground); }

/* ---- Empty state ---- */
.empty-state { text-align: center; padding: clamp(56px, 9vw, 110px) 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.empty-state h3 { font-size: 28px; margin-bottom: 14px; }
.empty-state p { color: var(--muted-foreground); max-width: 44ch; margin: 0 auto 28px; }

/* ---- Watch detail ---- */
.detail-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; gap: 40px; } }
.gallery__main { position: relative; aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: transform 0.5s var(--ease); }
.gallery__main:hover img { transform: scale(1.08); }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery__thumb { width: 84px; height: 84px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); cursor: pointer; transition: border-color 0.25s var(--ease); }
.gallery__thumb.active { border-color: var(--foreground); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

.detail-info .eyebrow { display: block; margin-bottom: 14px; }
.detail-info h1 { font-size: clamp(34px, 4.5vw, 52px); line-height: 1.05; margin-bottom: 12px; }
.detail-info .ref { font-size: 14px; color: var(--muted-foreground); margin-bottom: 22px; }
.detail-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.detail-avail { font-size: 13px; color: var(--muted-foreground); }
.detail-assurances { display: flex; gap: 22px; flex-wrap: wrap; margin: 6px 0 22px; }
.assure { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted-foreground); }
.assure svg { width: 16px; height: 16px; stroke: var(--foreground); flex-shrink: 0; }
@media (max-width: 420px) { .detail-assurances { gap: 14px; } .assure { font-size: 12px; } }
.detail-price { display: flex; align-items: center; gap: 18px; margin: 24px 0; padding: 22px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.detail-price .amount { font-family: var(--font-serif); font-size: 34px; font-weight: 500; }
.detail-info .desc { color: var(--muted-foreground); font-size: 16px; line-height: 1.7; margin: 24px 0; }
.detail-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.trust-line { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted-foreground); }
.trust-line svg { width: 17px; height: 17px; stroke: var(--foreground); flex-shrink: 0; }

.specs { margin-top: clamp(48px, 6vw, 80px); }
.specs h3 { font-size: 26px; margin-bottom: 26px; }
.spec-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 88px); }
@media (max-width: 720px) { .spec-table { grid-template-columns: 1fr; } }
.spec-row { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--hairline); }
.spec-row dt { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-foreground); }
.spec-row dd { font-size: 15px; text-align: right; font-weight: 500; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 540px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: clamp(28px, 4vw, 44px);
  transform: translateY(16px) scale(0.985); transition: transform 0.4s var(--ease);
  position: relative;
}
.modal-overlay.open .modal { transform: none; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.25s var(--ease); }
.modal__close:hover { background: var(--surface); }
.modal__close svg { width: 18px; height: 18px; }
.modal__eyebrow { display: block; margin-bottom: 10px; }
.modal h3 { font-size: 28px; margin-bottom: 6px; }
.modal__sub { font-size: 14px; color: var(--muted-foreground); margin-bottom: 26px; }
.modal__watch { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--surface); border-radius: var(--radius-sm); margin-bottom: 24px; }
.modal__watch img { width: 54px; height: 54px; border-radius: 4px; object-fit: cover; filter: grayscale(1); }
.modal__watch .mw-name { font-family: var(--font-serif); font-size: 18px; }
.modal__watch .mw-ref { font-size: 12px; color: var(--muted-foreground); }

/* ---- Form success ---- */
.form-success { text-align: center; padding: 18px 0; }
.form-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--foreground); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.form-success .check-circle svg { width: 28px; height: 28px; stroke: #fff; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: var(--muted-foreground); max-width: 38ch; margin: 0 auto; }
.black-section .form-success .check-circle { background: #fff; }
.black-section .form-success .check-circle svg { stroke: var(--foreground); }
.black-section .form-success h3 { color: #fff; }

/* ---- Source page ---- */
.source-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .source-grid { grid-template-columns: 1fr; } }
.side-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(28px, 3vw, 40px); position: sticky; top: 80px; }
.side-panel h4 { font-size: 22px; margin-bottom: 22px; }
.response-note { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--hairline); font-size: 14px; }
.response-note svg { width: 20px; height: 20px; stroke: var(--foreground); }

/* ---- About ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
@media (max-width: 720px) { .stats-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.stat .num { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 60px); font-weight: 500; line-height: 1; }
.stat .lbl { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-foreground); margin-top: 12px; }
.black-section .stat .lbl { color: rgba(255,255,255,0.55); }

.location-callout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (max-width: 800px) { .location-callout { grid-template-columns: 1fr; } }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.info-card__body { padding: clamp(26px, 3vw, 36px); }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 18px; height: 18px; stroke: var(--foreground); flex-shrink: 0; margin-top: 3px; }
.info-row .l { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 4px; }
.info-row .v { font-size: 15px; }
.map-placeholder { aspect-ratio: 16/10; background: var(--black-section); position: relative; overflow: hidden; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.9); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; }
.map-pin .ring { width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,0.18); }
.map-pin .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: rgba(10,10,10,0.7); padding: 5px 10px; border-radius: 3px; }

/* ---- Sell: What We Buy cards ---- */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
@media (max-width: 800px) { .buy-grid { grid-template-columns: 1fr; } }
.buy-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(28px, 3vw, 40px); background: var(--background); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.buy-card:hover { border-color: var(--foreground); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.buy-card svg { width: 34px; height: 34px; stroke: var(--foreground); margin-bottom: 22px; }
.buy-card h3 { font-size: 24px; margin-bottom: 10px; }
.buy-card p { font-size: 14.5px; color: var(--muted-foreground); margin: 0; }

/* ---- Sell: process steps ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 44px); }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: 24px; border-top: 1px solid var(--border); }
.process-step__num { font-family: var(--font-serif); font-size: 30px; color: var(--muted-foreground); display: block; margin-bottom: 14px; }
.process-step h4 { font-size: 19px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted-foreground); margin: 0; }

/* ---- Sell: form layout ---- */
.sell-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 940px) { .sell-layout { grid-template-columns: 1fr; } }
.form-fieldset { border: none; padding: 0; margin: 0 0 32px; }
.form-fieldset legend { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--foreground); padding: 0 0 18px; border-bottom: 1px solid var(--hairline); width: 100%; margin-bottom: 22px; }

/* ---- Sell: included checkboxes grid ---- */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; }
@media (max-width: 520px) { .check-grid { grid-template-columns: 1fr; } }
.check--box { padding: 10px 0; }

/* ---- Sell: dropzone + previews ---- */
.dropzone {
  border: 1.5px dashed var(--border); border-radius: var(--radius-md);
  background: var(--surface); padding: clamp(32px, 5vw, 52px) 24px; text-align: center;
  cursor: pointer; transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--foreground); outline: none; }
.dropzone.dragover { border-color: var(--foreground); background: #ededed; }
.dropzone__icon svg { width: 30px; height: 30px; stroke: var(--muted-foreground); margin-bottom: 14px; }
.dropzone__title { font-family: var(--font-serif); font-size: 20px; margin-bottom: 4px; }
.dropzone__sub { font-size: 13.5px; color: var(--muted-foreground); }
.preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 12px; margin-top: 16px; }
.preview-grid:empty { margin-top: 0; }
.preview { position: relative; aspect-ratio: 1/1; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); margin: 0; }
.preview img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.preview__remove { position: absolute; top: 5px; right: 5px; width: 26px; height: 26px; border-radius: 50%; background: rgba(10,10,10,0.72); display: inline-flex; align-items: center; justify-content: center; }
.preview__remove svg { width: 14px; height: 14px; stroke: #fff; }
.preview__remove:hover { background: var(--foreground); }

/* ---- Sell: why-sell side panel ---- */
.why-list { margin-top: 8px; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--hairline); }
.why-item:first-child { border-top: none; }
.why-item__icon svg { width: 22px; height: 22px; stroke: var(--foreground); }
.why-item h5 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.why-item p { font-size: 13.5px; color: var(--muted-foreground); margin: 0; }

/* ---- Legal prose ---- */
.legal-prose { max-width: 760px; }
.legal-prose .lead { margin-bottom: 10px; }
.legal-prose section { padding: 26px 0; border-top: 1px solid var(--hairline); }
.legal-prose h3 { font-size: 22px; margin-bottom: 10px; }
.legal-prose p { color: var(--muted-foreground); margin: 0; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 48px 24px 0; position: relative;
  font-family: var(--font-serif); font-size: clamp(19px, 2vw, 23px); font-weight: 500; color: var(--foreground);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='1.5'%3E%3Cpath d='M12 5v14M5 12h14' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: translateY(-50%); transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq-item .faq-answer { padding: 0 48px 26px 0; color: var(--muted-foreground); font-size: 15.5px; line-height: 1.7; }

/* ---- Brands directory (tiers) ---- */
.brand-tier { margin-bottom: clamp(40px, 5vw, 64px); }
.brand-tier__head { display: flex; align-items: baseline; gap: 14px; padding-bottom: 18px; margin-bottom: 26px; border-bottom: 1px solid var(--border); }
.brand-tier__head .eyebrow { font-size: 13px; }
.brand-tier__count { font-size: 12px; color: var(--muted-foreground); }
.brand-tier__count::before { content: "("; }
.brand-tier__count::after { content: ")"; }

/* ---- Brands grid ---- */
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
@media (max-width: 880px) { .brands-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .brands-grid { grid-template-columns: 1fr; } }
.brand-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 38px); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.brand-card:hover { border-color: var(--foreground); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.brand-card__origin { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 12px; }
.brand-card h3 { font-size: 26px; margin-bottom: 12px; }
.brand-card p { font-size: 14.5px; color: var(--muted-foreground); margin: 0 0 20px; flex: 1; }
.brand-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--hairline); }
.brand-card__count { font-size: 12.5px; color: var(--muted-foreground); }

/* ---- Journal ---- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
@media (max-width: 880px) { .journal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journal-grid { grid-template-columns: 1fr; } }
.article-card { display: block; }
.article-card__media { aspect-ratio: 3/2; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: transform 0.6s var(--ease); }
.article-card:hover .article-card__media img { transform: scale(1.045); }
.article-card__meta { display: flex; gap: 14px; align-items: center; margin: 18px 0 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-foreground); }
.article-card h3 { font-size: 22px; line-height: 1.25; margin-bottom: 8px; }
.article-card p { font-size: 14.5px; color: var(--muted-foreground); margin: 0; }
.article-body { max-width: 720px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--foreground); margin-bottom: 22px; }
.article-hero { aspect-ratio: 21/9; overflow: hidden; border-radius: var(--radius-md); background: var(--surface); margin-bottom: 36px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }

/* ---- Testimonials ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 36px); }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 36px); background: var(--background); }
.testi-card .quote { font-family: var(--font-serif); font-size: 21px; line-height: 1.4; color: var(--foreground); margin-bottom: 22px; }
.testi-card .quote::before { content: "\201C"; }
.testi-card .quote::after { content: "\201D"; }
.testi-card .who { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }

/* ---- Reveal stagger helper ---- */
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
.reveal[data-delay="5"] { transition-delay: 0.35s; }
