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

:root {
  --bg:        #F5F2EC;
  --bg-warm:   #EDE9E1;
  --bg-dark:   #111010;
  --ink:       #191716;
  --ink-mid:   #48433E;
  --ink-soft:  #8A837A;
  --cream:     #F5F2EC;
  --gold:      #B8A98A;
  --border:    rgba(25,23,22,0.09);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Outfit', sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
.sale-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  height: 36px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.50);
}
.sale-bar strong { color: var(--gold); font-weight: 400; letter-spacing: 0.18em; }
.sale-bar a {
  color: rgba(245,242,236,0.80);
  border-bottom: 1px solid rgba(245,242,236,0.20);
  padding-bottom: 1px;
  transition: border-color 0.25s, color 0.25s;
}
.sale-bar a:hover { color: #fff; border-color: rgba(245,242,236,0.6); }

/* ── PAGE TRANSITION OVERLAY ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 8000;
  opacity: 1;
  transition: opacity 0.55s var(--ease-out);
  pointer-events: none;
}
body.page-loaded::after  { opacity: 0; pointer-events: none; }
body.page-leaving::after { opacity: 1; pointer-events: all; transition-duration: 0.32s; }

/* ── PRELOADER ──────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s var(--ease-in-out);
}
#preloader.fade-out { opacity: 0; pointer-events: none; }

.pre-word {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 58px);
  font-weight: 300;
  letter-spacing: 0.42em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: preWord 0.8s var(--ease-out) 0.15s forwards;
}
@keyframes preWord { to { opacity: 1; transform: translateY(0); } }

.pre-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  animation: preWord 0.6s var(--ease-out) 0.5s forwards;
}

.pre-bar-track {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(246,243,238,0.08);
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.85s cubic-bezier(0.4, 0, 0.25, 1);
}

/* ── NAV ────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: transparent;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 15px 24px;
  border-bottom-color: var(--border);
}
#nav.nav--dark { color: var(--cream); }
#nav.nav--dark .nav-links a { color: rgba(245,242,236,0.55); }
#nav.nav--dark .nav-links a:hover,
#nav.nav--dark .nav-links a.active { color: var(--cream); }
#nav.nav--dark .nav-cart { color: rgba(245,242,236,0.55); }
#nav.nav--dark .nav-cart:hover { color: var(--cream); }
#nav.nav--dark .nav-toggle span { background: var(--cream); }
#nav.nav--dark.scrolled {
  background: rgba(17,16,16,0.92);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 501;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-mid);
  transition: color 0.25s;
}
.nav-cart:hover { color: var(--ink); }
.nav-cart svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-cart-count {
  font-size: 9px;
  min-width: 14px;
  height: 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-count:empty { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 501;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 499;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 1;
}
.nav-overlay .nav-links li { width: 100%; text-align: center; }
.nav-overlay .nav-links a {
  display: block;
  padding: 22px 48px;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.nav-overlay .nav-links li:first-child a { border-top: 1px solid var(--border); }

/* ── UTILITIES ──────────────────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.48s; }
.reveal-d5 { transition-delay: 0.62s; }

/* Clip reveal for headings */
.c-head { overflow: hidden; display: block; }
.c-text {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--cd, 0s);
}
.c-head.in-view .c-text { transform: translateY(0); }

/* ── HERO ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 56px;
  overflow: hidden;
}

.hero-parallax-wrap {
  position: absolute;
  inset: -25%;
  will-change: transform;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111010 center/cover no-repeat;
  transform: scale(1.06);
  animation: hero-zoom 16s ease-out forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  animation: fade-up 1s var(--ease-out) 2.2s both;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 13vw, 108px);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.hero-headline em { font-style: italic; }

.hw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hw-inner {
  display: inline-block;
  transform: translateY(108%);
  animation: wordUp 1.15s var(--ease-out) calc(2.3s + var(--hd, 0s)) both;
}
@keyframes wordUp { to { transform: translateY(0); } }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 34px;
  cursor: pointer;
  transition: background 0.3s, gap 0.4s var(--ease-out);
  width: fit-content;
}
.hero-cta:hover { background: #fff; gap: 22px; }
.hero-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: fade-up 1s var(--ease-out) 3.1s both;
  z-index: 2;
}
.scroll-line {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scan 2.4s ease-in-out 3.5s infinite;
}
@keyframes scan { to { left: 100%; } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BRAND STATEMENT ────────────────────────────────────────────── */
#statement {
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.statement-ghost {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 22vw, 220px);
  color: rgba(25,23,22,0.038);
  pointer-events: none;
  top: 50%; left: -3%;
  transform: translateY(-50%);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.statement-inner { position: relative; z-index: 1; max-width: 500px; }

.statement-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.statement-meta-line { width: 28px; height: 1px; background: var(--gold); display: block; }

.statement-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 7.5vw, 50px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.statement-heading em { font-style: italic; color: var(--ink-mid); }

.statement-body {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.80;
  max-width: 420px;
  margin-bottom: 36px;
}

.statement-sig {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── FEATURED PRODUCTS ──────────────────────────────────────────── */
#products { padding: 56px 0 0; }

.products-header {
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.products-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.view-all-link {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.view-all-link:hover { color: var(--ink); border-color: var(--ink); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out) var(--pc-d, 0ms),
    transform 0.8s var(--ease-out) var(--pc-d, 0ms);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card a { display: block; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
}
.product-img-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.product-card:hover .product-img-wrap img,
.shop-product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink);
  padding: 5px 11px;
  font-weight: 400;
}

.product-info {
  padding: 18px 20px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}
.product-sub {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 5px;
}
.product-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  white-space: nowrap;
  padding-top: 3px;
}

/* ── OLD SCHOOL SECTION (homepage) ─────────────────────────────── */
#old-school {
  background: var(--bg-dark);
  color: #E5DFD6;
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}

.os-grain {
  position: absolute;
  inset: 0;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
#old-school.os-active .os-grain {
  opacity: 1;
  animation: grain-shift 0.9s ease-out forwards;
}
@keyframes grain-shift {
  0%   { opacity: 0; }
  20%  { opacity: 0.9; }
  45%  { opacity: 0.4; }
  70%  { opacity: 0.85; }
  100% { opacity: 1; }
}

#old-school > * { position: relative; z-index: 1; }

.os-eyebrow {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.os-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.os-title {
  font-family: var(--serif);
  font-size: clamp(64px, 18vw, 120px);
  font-weight: 300;
  line-height: 0.90;
  letter-spacing: -0.025em;
  margin-bottom: 52px;
  color: #E5DFD6;
}
.os-title em { font-style: italic; color: var(--gold); }

.os-cards { display: flex; flex-direction: column; gap: 1px; margin-bottom: 56px; }

.os-card {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: background 0.35s;
  cursor: default;
}
.os-card:hover { background: rgba(255,255,255,0.055); }

.os-card-num {
  font-family: var(--serif);
  font-size: 10.5px;
  color: var(--gold);
  padding-top: 4px;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}
.os-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #E5DFD6;
}
.os-card-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(229,223,214,0.45);
  line-height: 1.70;
}

.os-story {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 44px;
  display: grid;
  gap: 18px;
}
.os-story-label {
  font-size: 8.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
}
.os-story-text {
  font-family: var(--serif);
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(229,223,214,0.70);
  max-width: 520px;
}

/* ── WHY CALIFTS ────────────────────────────────────────────────── */
#why { padding: 96px 24px 88px; }

.why-header { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; }
.why-header-line { width: 28px; height: 1px; background: var(--gold); display: block; }

.why-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6.5vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 56px;
}
.why-title em { font-style: italic; }

.why-grid { display: flex; flex-direction: column; }

.why-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  padding-top: 3px;
}
.why-item-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 9px;
  line-height: 1.2;
}
.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── FINAL CTA ──────────────────────────────────────────────────── */
#final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 104px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: 'CALIFTS';
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(72px, 22vw, 240px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.035);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-label {
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 62px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 18px;
}
.cta-headline em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: rgba(245,242,236,0.38);
  margin-bottom: 52px;
  font-weight: 300;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(245,242,236,0.22);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 38px;
  cursor: pointer;
  background: transparent;
  transition: background 0.35s, border-color 0.35s, gap 0.3s var(--ease-out);
}
.cta-btn:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(245,242,236,0.48);
  gap: 22px;
}
.cta-btn svg { width: 12px; height: 12px; }

/* ── SHOP PAGE ──────────────────────────────────────────────────── */
#page-shop { padding-top: 80px; }

.shop-hero {
  padding: 56px 24px 40px;
  border-bottom: 1px solid var(--border);
}
.shop-hero-label {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.shop-hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.shop-filters {
  display: flex;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shop-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 18px 22px;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
  background: none;
  border: none;
  cursor: pointer;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.filter-btn.active { color: var(--ink); }
.filter-btn.active::after { transform: scaleX(1); }
.filter-btn:hover { color: var(--ink); }

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
}

.shop-product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease-out) var(--sc-d, 0ms),
    transform 0.75s var(--ease-out) var(--sc-d, 0ms);
}
.shop-product-card.visible { opacity: 1; transform: translateY(0); }
.shop-product-card a { display: block; }
.shop-product-card .product-img-wrap { aspect-ratio: 3/4; }

.shop-empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ── PRODUCT DETAIL PAGE ────────────────────────────────────────── */
#page-detail { padding-top: 70px; min-height: 100vh; }

.detail-back-wrap { padding: 24px 24px 0; }
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s, gap 0.3s var(--ease-out);
}
.detail-back:hover { color: var(--ink); gap: 14px; }
.detail-back svg { width: 14px; height: 14px; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.detail-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
}
.detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.detail-info { padding: 36px 24px 72px; }

.detail-category {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.detail-name {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.detail-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 28px;
}
.detail-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.80;
  margin-bottom: 36px;
}

.size-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.size-buttons { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.size-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--ink-mid);
}
.size-btn:hover { border-color: var(--ink); color: var(--ink); }
.size-btn.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.detail-add-btn,
.woocommerce .single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
  width: 100%;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.25s;
  display: block;
  text-align: center;
}
.detail-add-btn:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover { background: #2e2c2a; }

.detail-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* WooCommerce single product overrides */
.woocommerce div.product { margin: 0; padding: 0; }
.woocommerce div.product .woocommerce-product-gallery { display: none; } /* we use our own image */
.woocommerce div.product p.price,
.woocommerce div.product span.price { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ink-mid); margin-bottom: 28px; display: block; }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.80; margin-bottom: 36px; }
.woocommerce div.product form.cart .qty { display: none; } /* hide quantity - handled via size */
.woocommerce div.product form.cart .variations { display: none; } /* hide default variation dropdowns */
.woocommerce .woocommerce-variation-price { display: none; }
.woocommerce .reset_variations { display: none !important; }
.woocommerce-tabs { display: none; } /* hide tabs on single product - description shown inline */
.woocommerce .related { display: none; }
.woocommerce-breadcrumb { display: none; }
.woocommerce-notices-wrapper { padding: 0 24px; margin-top: 80px; }

/* ── OLD SCHOOL DEDICATED PAGE ──────────────────────────────────── */
#page-oldschool { background: var(--bg-dark); color: #E5DFD6; }

.os-page-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 64px;
  overflow: hidden;
}
.os-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,16,16,0.3) 0%, rgba(17,16,16,0.75) 100%),
    url('https://images.unsplash.com/photo-1526506118085-60ce8714f8c5?w=1200&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.os-page-grain {
  position: absolute;
  inset: 0;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  animation: grain-shift 1.2s ease-out 0.3s both;
}

.os-page-hero > * { position: relative; z-index: 2; }

.os-page-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.3s forwards;
}
.os-page-title {
  font-family: var(--serif);
  font-size: clamp(60px, 16vw, 130px);
  font-weight: 300;
  line-height: 0.90;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 32px;
}
.os-page-title em { font-style: italic; color: var(--gold); }
.os-page-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(229,223,214,0.55);
  max-width: 340px;
  line-height: 1.70;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.7s forwards;
}

.os-page-products { padding: 72px 24px 0; background: var(--bg-dark); }
.os-page-products-label {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.os-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.os-product-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out) var(--osc-d, 0ms),
    transform 0.8s var(--ease-out) var(--osc-d, 0ms);
}
.os-product-card.visible { opacity: 1; transform: translateY(0); }
.os-product-card a { display: block; }
.os-product-card .product-img-wrap { aspect-ratio: 4/3; }
.os-product-card:hover .product-img-wrap img { transform: scale(1.05); }

.os-product-info {
  padding: 18px 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.os-product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: #E5DFD6;
}
.os-product-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229,223,214,0.35);
  margin-top: 4px;
}
.os-product-price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}

.os-page-philosophy { padding: 80px 24px 0; background: var(--bg-dark); }
.os-phil-label {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.os-phil-label::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.os-phil-heading {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 300;
  line-height: 1.20;
  letter-spacing: -0.01em;
  color: #E5DFD6;
  max-width: 580px;
  margin-bottom: 36px;
}
.os-phil-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(229,223,214,0.50);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 24px;
}

.os-manifesto {
  margin-top: 64px;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.os-manifesto-text {
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: rgba(229,223,214,0.65);
  line-height: 1.60;
  max-width: 540px;
}
.os-manifesto-text em { font-style: normal; color: var(--gold); }

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
#page-about { padding-top: 80px; }

.about-header {
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.about-header-ghost {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 25vw, 260px);
  font-weight: 300;
  color: rgba(25,23,22,0.04);
  top: 50%; right: -2%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.about-eyebrow {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.about-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 10vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.about-headline em { font-style: italic; color: var(--ink-mid); }

.about-story {
  padding: 72px 24px 64px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 32px;
}
.about-story-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about-story-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 520px;
}

.about-pull { padding: 0 24px 64px; }
.about-pull-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 5.5vw, 38px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}
.about-pull-attr {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
  padding-left: 28px;
}

.about-values { padding: 0 24px 88px; }
.about-values-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.about-value {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: start;
}
.about-value:last-child { border-bottom: 1px solid var(--border); }
.about-val-num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  padding-top: 3px;
}
.about-val-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.about-val-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.78;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #0D0C0A;
  color: rgba(245,242,236,0.38);
  padding: 56px 24px 36px;
  margin-top: 0;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.75);
  margin-bottom: 6px;
}
.footer-slogan {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.25);
  margin-bottom: 48px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col-title {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.22);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(245,242,236,0.38);
  transition: color 0.25s;
}
.footer-col a:hover { color: rgba(245,242,236,0.75); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy { font-size: 10.5px; color: rgba(245,242,236,0.18); letter-spacing: 0.04em; }
.footer-socials { display: flex; gap: 22px; }
.footer-socials a {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.28);
  transition: color 0.25s;
}
.footer-socials a:hover { color: rgba(245,242,236,0.65); }

/* ── HERO VIDEO ─────────────────────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.loaded { opacity: 1; }
.hero-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,16,16,0.25) 0%, transparent 40%, rgba(17,16,16,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── SALE PRICE REDESIGN ────────────────────────────────────────── */
/* ── SALE PRICE — diagonal slash, minimalist ────────────────────── */
ins { text-decoration: none !important; }
del { opacity: 1 !important; text-decoration: none !important; }
.woocommerce span.onsale { display: none !important; }

.product-price del,
.detail-price del,
del .woocommerce-Price-amount,
del .amount {
  position: relative;
  display: inline-block;
  color: rgba(138,131,122,0.55) !important;
  font-weight: 300;
  font-size: 0.82em;
  text-decoration: none !important;
  margin-right: 6px;
}
.product-price del::after,
.detail-price del::after,
del .woocommerce-Price-amount::after,
del .amount::after {
  content: '';
  position: absolute;
  left: -4%; top: 48%;
  width: 108%; height: 1px;
  background: rgba(138,131,122,0.50);
  transform: rotate(-14deg);
  pointer-events: none;
}

.product-price ins,
.detail-price ins,
ins .woocommerce-Price-amount,
ins .amount {
  color: var(--ink) !important;
  font-weight: 400;
  text-decoration: none !important;
}

/* ── SHOP MOBILE PRICE FIX ──────────────────────────────────────── */
@media (max-width: 599px) {
  .product-info { flex-wrap: wrap; gap: 6px; }
  .product-price {
    width: 100%;
    padding-top: 0;
    font-size: 16px;
    white-space: normal;
  }
  .shop-product-card .product-name { font-size: 18px; }
}

/* ── CART PAGE ──────────────────────────────────────────────────── */
.woocommerce-cart .woocommerce,
.woocommerce-cart .entry-content {
  padding: 100px 24px 80px;
  max-width: 940px;
  margin: 0 auto;
}

/* Modern empty cart */
.califts-empty-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 40px 24px;
}
.empty-cart-inner { text-align: center; max-width: 400px; }
.empty-cart-icon {
  width: 56px; height: 56px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
}
.empty-cart-icon svg { width: 100%; height: 100%; }
.empty-cart-title {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.empty-cart-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.6;
}
.empty-cart-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 36px;
  cursor: pointer;
  transition: background 0.25s, gap 0.35s var(--ease-out);
}
.empty-cart-cta:hover { background: #2e2c2a; gap: 18px; }
.empty-cart-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── PRODUCT DETAIL — IMPROVEMENTS ─────────────────────────────── */
/* Hide WC meta (SKU, categories) */
.product_meta,
.woocommerce-product-details__short-description ~ .product_meta { display: none !important; }

/* Disabled size button */
.size-btn--disabled {
  opacity: 0.32;
  cursor: not-allowed;
  position: relative;
}
.size-btn--disabled::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 130%;
  height: 1px;
  background: var(--ink-soft);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.5;
}
/* Better overflow handling inside size buttons */
.size-btn {
  min-width: 46px;
  width: auto;
  padding: 0 12px;
  height: 46px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

/* WC add-to-cart form overrides */
.detail-atc-wrap .quantity { display: none !important; }
.detail-atc-wrap .woocommerce-variation-description { display: none !important; }
.detail-atc-wrap .woocommerce-variation-price { display: none !important; }
.detail-atc-wrap .variations { display: none !important; }
.detail-atc-wrap .reset_variations { display: none !important; }

/* ── STICKY ADD TO CART (mobile) ────────────────────────────────── */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.sticky-atc-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc-price { font-size: 12px; color: var(--ink-mid); font-weight: 300; }
.sticky-atc-btn {
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 14px 24px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s;
  display: inline-block;
}
.sticky-atc-btn:hover { background: #2e2c2a; }
@media (min-width: 1100px) { .sticky-atc { display: none; } }

/* ── OLD SCHOOL ENTRY OVERLAY ───────────────────────────────────── */
.os-entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #0A0908;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.os-entry-overlay.os-entry-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.os-entry-inner {
  padding: 48px 32px;
  max-width: 480px;
  width: 100%;
}
.os-entry-console {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}
.os-entry-line {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184,169,138,0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.os-entry-line.os-line-visible { opacity: 1; }
.os-entry-line--gold { color: var(--gold); font-size: 9.5px; letter-spacing: 0.20em; }
.os-entry-logo {
  font-family: var(--serif);
  font-size: clamp(48px, 13vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #E5DFD6;
  line-height: 1;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.os-entry-logo.os-logo-visible { opacity: 1; transform: translateY(0); }
.os-entry-bar-wrap {
  height: 1px;
  background: rgba(184,169,138,0.15);
  overflow: hidden;
  margin-bottom: 20px;
}
.os-entry-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.25, 1);
}
.os-entry-skip {
  font-family: 'Courier New', monospace;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184,169,138,0.30);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.os-entry-skip.os-skip-visible { opacity: 1; }

/* ── BRAND PAGES (About, Sizing, Returns, Contact) ──────────────── */
.brand-page-hero {
  padding: 120px 24px 64px;
  border-bottom: 1px solid var(--border);
}
.brand-page-eyebrow {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-page-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.brand-page-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.brand-page-headline em { font-style: italic; color: var(--ink-mid); }
.brand-page-sub {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.80;
  max-width: 520px;
}

/* Sizing Guide */
#page-sizing { padding-top: 0; }
.sizing-section { padding: 64px 24px 88px; }
.sizing-note {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.sizing-note-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.sizing-note p { font-size: 14.5px; font-weight: 300; color: var(--ink-mid); line-height: 1.80; max-width: 540px; }
.sizing-table-wrap { margin-bottom: 48px; }
.sizing-table-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.sizing-table { border-top: 1px solid var(--border); }
.sizing-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 300;
}
.sizing-row--header {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.sizing-tips { margin-top: 56px; }
.sizing-tips-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.sizing-tips-grid { display: flex; flex-direction: column; gap: 0; }
.sizing-tip {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.sizing-tip:first-child { border-top: 1px solid var(--border); }
.sizing-tip-num { font-family: var(--serif); font-size: 12px; color: var(--gold); font-style: italic; padding-top: 3px; }
.sizing-tip strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.sizing-tip p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; }
.sizing-contact { margin-top: 48px; font-size: 14px; color: var(--ink-mid); }
.sizing-contact a { color: var(--ink); border-bottom: 1px solid var(--border); transition: border-color 0.25s; }
.sizing-contact a:hover { border-color: var(--ink); }

/* Returns Policy */
#page-returns { padding-top: 0; }
.returns-section { padding: 64px 24px 88px; }
.returns-block {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.returns-block:first-child { border-top: 1px solid var(--border); }
.returns-block-num { font-family: var(--serif); font-size: 12px; color: var(--gold); font-style: italic; padding-top: 5px; }
.returns-block-content h2 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.returns-block-content p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.80; }
.returns-block-content a { color: var(--ink); border-bottom: 1px solid var(--border); }
.returns-cta { margin-top: 56px; }
.returns-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 36px;
  transition: background 0.25s, gap 0.35s var(--ease-out);
}
.returns-cta-btn:hover { background: #2e2c2a; gap: 18px; }
.returns-cta-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Contact Page */
#page-contact { padding-top: 0; }
.contact-section { padding: 64px 24px 88px; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}
.contact-method {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:first-child { border-top: 1px solid var(--border); }
.contact-method-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.contact-method-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  transition: color 0.25s;
}
.contact-method-value:hover { color: var(--ink-mid); }
.contact-method-note { font-size: 12.5px; font-weight: 300; color: var(--ink-soft); }
.contact-form-wrap { margin-bottom: 64px; }
.contact-form-label {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-row input,
.form-row textarea {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-soft); }
.form-row input:focus,
.form-row textarea:focus { border-bottom-color: var(--ink); }
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 36px;
  cursor: pointer;
  border: none;
  width: fit-content;
  transition: background 0.25s, gap 0.35s var(--ease-out);
}
.contact-submit:hover { background: #2e2c2a; gap: 18px; }
.contact-submit svg { width: 13px; height: 13px; flex-shrink: 0; }
.contact-faq { }
.contact-faq-label {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 24px;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 200;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.80;
  padding-bottom: 20px;
  max-width: 540px;
}
.faq-item a { color: var(--ink); border-bottom: 1px solid var(--border); }

/* ── PAGE CONTENT WRAP (page.php fallback) ──────────────────────── */
.page-content-wrap {
  padding-top: 80px;
  min-height: 60vh;
}
.page-content-inner { padding: 48px 24px 80px; max-width: 900px; margin: 0 auto; }

/* ── RESPONSIVE — TABLET ───────────────────────────────────────── */
@media (min-width: 600px) {
  .os-products-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  #nav { padding: 28px 48px; }
  #nav.scrolled { padding: 16px 48px; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  #hero { padding: 0 48px 80px; }
  .hero-scroll-hint { right: 48px; }

  #statement { padding: 120px 48px 104px; }
  .statement-inner { margin-left: auto; max-width: 54%; }

  .products-header { padding: 0 48px; }
  .products-grid { grid-template-columns: 1fr 1fr 1fr; }

  #old-school { padding: 120px 48px 104px; }
  #why { padding: 120px 48px 104px; }
  #final-cta { padding: 128px 48px 120px; }

  .shop-hero { padding: 64px 48px 48px; }
  .shop-filters { padding: 0 48px; }

  .detail-back-wrap { padding: 28px 48px 0; }
  .detail-info { padding: 40px 48px 72px; }

  .os-page-hero { padding: 0 48px 80px; }
  .os-page-products { padding: 80px 48px 0; }
  .os-page-philosophy { padding: 80px 48px 0; }
  .os-products-grid { grid-template-columns: 1fr 1fr 1fr; }

  .about-header { padding: 72px 48px 64px; }
  .about-story { padding: 80px 48px 72px; }
  .about-pull { padding: 0 48px 72px; }
  .about-values { padding: 0 48px 96px; }

  footer { padding: 64px 48px 40px; margin-top: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── RESPONSIVE — TABLET (brand pages) ────────────────────────── */
@media (min-width: 768px) {
  .brand-page-hero { padding: 140px 48px 72px; }
  .sizing-section,
  .returns-section,
  .contact-section { padding: 72px 48px 96px; }
  .contact-methods { flex-direction: row; gap: 0; }
  .contact-method { flex: 1; padding: 32px 32px 32px 0; border-bottom: none; border-right: 1px solid var(--border); }
  .contact-method:first-child { border-top: none; }
  .contact-method:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
  .contact-method:not(:first-child):not(:last-child) { padding-left: 32px; }
  .sizing-tips-grid { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .sizing-tip { flex: 1 1 45%; }
  .woocommerce-cart .woocommerce,
  .woocommerce-cart .entry-content { padding: 100px 48px 80px; }
}

/* ── RESPONSIVE — DESKTOP ──────────────────────────────────────── */
@media (min-width: 1100px) {
  #nav { padding: 30px 72px; }
  #nav.scrolled { padding: 18px 72px; }

  #hero { padding: 0 72px 88px; }
  .hero-headline { font-size: clamp(80px, 9.5vw, 116px); }

  #statement { padding: 140px 72px 120px; }
  .statement-ghost { font-size: clamp(110px, 20vw, 240px); }

  .products-header { padding: 0 72px; }

  #old-school { padding: 140px 72px 120px; }
  .os-cards { flex-direction: row; }
  .os-card { flex: 1; }

  #why { padding: 140px 72px 120px; }
  .why-grid { flex-direction: row; align-items: stretch; }
  .why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding: 0 40px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    gap: 0;
    padding-top: 0;
  }
  .why-item:first-child { padding-left: 0; border-top: none; }
  .why-item:last-child { border-right: none; }
  .why-num { font-size: 38px; display: block; margin-bottom: 20px; padding-top: 0; line-height: 1; }
  .why-item-title { margin-bottom: 12px; }

  #final-cta { padding: 144px 72px 136px; }

  .shop-hero { padding: 72px 72px 56px; }
  .shop-filters { padding: 0 72px; }
  .shop-grid { grid-template-columns: 1fr 1fr 1fr; }

  .detail-back-wrap { padding: 32px 72px 0; }
  .detail-layout {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 130px);
  }
  .detail-img-wrap { aspect-ratio: auto; }
  .detail-info { padding: 64px 72px 80px; }

  .os-page-hero { padding: 0 72px 96px; }
  .os-page-products { padding: 96px 72px 0; }
  .os-page-philosophy { padding: 96px 72px 0; }
  .os-manifesto { padding: 64px 0; }

  .about-header { padding: 88px 72px 72px; }
  .about-story { padding: 96px 72px 80px; gap: 48px; grid-template-columns: 220px 1fr; }
  .about-pull { padding: 0 72px 80px; }
  .about-values { padding: 0 72px 112px; }

  footer { padding: 72px 72px 48px; }

  .brand-page-hero { padding: 160px 72px 80px; }
  .sizing-section,
  .returns-section,
  .contact-section { padding: 80px 72px 112px; }
  .woocommerce-cart .woocommerce,
  .woocommerce-cart .entry-content { padding: 100px 72px 80px; }
}

/* ── CONTACT FORM FEEDBACK ──────────────────────────────────────── */
.contact-feedback {
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-bottom: 24px;
}
.contact-feedback--ok  { background: rgba(100,160,100,0.10); color: #3a6b3a; border: 1px solid rgba(100,160,100,0.25); }
.contact-feedback--err { background: rgba(180,60,60,0.08);  color: #7a2a2a; border: 1px solid rgba(180,60,60,0.20); }

/* ── HERO SECONDARY LINK ────────────────────────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  animation: fade-up 1s var(--ease-out) 2.85s both;
}
.hero-secondary {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.20);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.hero-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

/* ── PRODUCTS SECTION ADDITIONS ─────────────────────────────────── */
.products-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 6px;
}
.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 32px 24px 56px;
  border-top: 1px solid var(--border);
}
.statement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  margin-top: 24px;
  transition: color 0.25s, border-color 0.25s;
}
.statement-link:hover { color: var(--ink); border-color: var(--ink); }

/* ── OLD SCHOOL SECTION CTA ─────────────────────────────────────── */
.os-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(229,223,214,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}
.os-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(184,169,138,0.12);
  color: var(--gold);
  border: 1px solid rgba(184,169,138,0.25);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.3s, gap 0.4s var(--ease-out);
}
.os-cta:hover { background: rgba(184,169,138,0.20); gap: 20px; }
.os-cta svg { width: 14px; height: 14px; }

/* ── UPSELLS HEADER ─────────────────────────────────────────────── */
.upsells-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.upsells-all {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.upsells-all:hover { color: var(--ink); border-color: var(--ink); }

/* ── NAV HERO (white text over video) ──────────────────────────── */
#nav.nav--hero:not(.scrolled) { color: rgba(245,242,236,0.90); }
#nav.nav--hero:not(.scrolled) .nav-links a { color: rgba(245,242,236,0.60); }
#nav.nav--hero:not(.scrolled) .nav-links a:hover,
#nav.nav--hero:not(.scrolled) .nav-links a.active { color: #fff; }
#nav.nav--hero:not(.scrolled) .nav-cart { color: rgba(245,242,236,0.60); }
#nav.nav--hero:not(.scrolled) .nav-cart:hover { color: #fff; }
#nav.nav--hero:not(.scrolled) .nav-cart-count { background: var(--cream); color: var(--ink); }
#nav.nav--hero:not(.scrolled) .nav-toggle span { background: var(--cream); }

/* ── TICKER / MARQUEE ───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg);
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-inner span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 32px;
}
.ticker-inner span::before {
  content: '—';
  margin-right: 32px;
  color: var(--gold);
  opacity: 0.6;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROOF STATS ────────────────────────────────────────────────── */
#proof-stats {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
}
.proof-num {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-num sup {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 4px;
  text-transform: uppercase;
}
.proof-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── MANIFESTO SECTION ──────────────────────────────────────────── */
#manifesto {
  background: var(--ink);
  padding: 96px 24px;
  overflow: hidden;
  position: relative;
}
#manifesto::before {
  content: 'CALIFTS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(245,242,236,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.manifesto-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.manifesto-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #E5DFD6;
  margin-bottom: 32px;
}
.manifesto-heading em { font-style: italic; color: var(--gold); }
.manifesto-body {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245,242,236,0.48);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 40px;
}
.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.60);
  border-bottom: 1px solid rgba(245,242,236,0.15);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s, gap 0.4s var(--ease-out);
}
.manifesto-link:hover { color: #fff; border-color: rgba(245,242,236,0.4); gap: 18px; }
.manifesto-link svg { width: 14px; height: 14px; }

/* ── EARLY ACCESS SECTION ───────────────────────────────────────── */
#early-access {
  padding: 88px 24px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ea-inner { max-width: 560px; }
.ea-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ea-heading {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 20px;
}
.ea-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.ea-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.3s, gap 0.4s var(--ease-out);
}
.ea-btn:hover { background: #2e2c2a; gap: 20px; }
.ea-btn svg { width: 14px; height: 14px; }

/* ── ABOUT PAGE — MILESTONE ─────────────────────────────────────── */
.about-milestone {
  padding: 0 24px 80px;
}
.about-milestone-inner {
  background: var(--ink);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}
.about-milestone-inner::before {
  content: '2024';
  position: absolute;
  right: -24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 300;
  color: rgba(245,242,236,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.about-ms-date {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-ms-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 300;
  color: #E5DFD6;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  line-height: 1.05;
}
.about-ms-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-ms-stat { display: flex; flex-direction: column; gap: 4px; }
.about-ms-num {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.about-ms-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
}
.about-ms-divider { width: 1px; height: 40px; background: rgba(245,242,236,0.10); }
.about-ms-note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,242,236,0.40);
  line-height: 1.75;
  max-width: 400px;
}
.about-story--stall { border-top: 1px solid var(--border); }

/* ── DETAIL PAGE CONVERSION ELEMENTS ───────────────────────────── */
.detail-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #8a5c2e;
  background: rgba(184,169,138,0.10);
  border: 1px solid rgba(184,169,138,0.22);
  padding: 9px 14px;
  margin-bottom: 24px;
}
.urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: urgency-pulse 2s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.size-guide-link:hover { color: var(--ink); border-color: var(--ink); }

.detail-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 20px 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
}
.trust-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

/* ── PRODUCT IMAGE GALLERY ──────────────────────────────────────── */
.gallery-main-wrap {
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 3 / 4;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.28s ease;
}
.gallery-main-img.switching { opacity: 0; }

.gallery-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-thumbs:active { cursor: grabbing; }
.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 80px;
  border: 1.5px solid transparent;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s, opacity 0.2s;
  background: var(--bg-warm);
  padding: 0;
  opacity: 0.55;
}
.gallery-thumb.active { border-color: var(--ink); opacity: 1; }
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── UPSELLS ────────────────────────────────────────────────────── */
.product-upsells {
  padding: 64px 24px 80px;
  border-top: 1px solid var(--border);
}
.upsells-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.upsells-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .upsells-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.upsell-card { font-size: 14px; }
.upsell-card .product-name { font-size: 14px; }
.upsell-card .product-price { font-size: 13px; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────────────── */
@media (min-width: 768px) {
  #proof-stats { padding: 88px 48px; }
  #manifesto { padding: 112px 48px; }
  #early-access { padding: 112px 48px; }
  .about-milestone { padding: 0 48px 96px; }
  .about-milestone-inner { padding: 72px 56px; }
  .product-upsells { padding: 80px 48px 96px; }
}
@media (min-width: 1100px) {
  #proof-stats { padding: 96px 72px; }
  #manifesto { padding: 128px 72px; }
  #early-access { padding: 120px 72px; }
  .about-milestone { padding: 0 72px 112px; }
  .about-milestone-inner { padding: 80px 72px; }
  .product-upsells { padding: 96px 72px 112px; }
  .upsells-grid { gap: 32px; }
}

/* ── CHECKOUT BUTTON ────────────────────────────────────────────── */
.wc-proceed-to-checkout { padding: 0 !important; }
.wc-proceed-to-checkout .checkout-button,
a.checkout-button,
button.checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--ink) !important;
  color: var(--cream) !important;
  font-family: var(--sans) !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 18px 32px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.3s !important;
  text-decoration: none !important;
  width: 100% !important;
  box-shadow: none !important;
}
.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button:hover { background: #2e2c2a !important; }

/* ── BRAND / RETURNS PAGE LINKS ─────────────────────────────────── */
.returns-block-content a,
.contact-method-value,
.sizing-contact a,
.brand-page-sub a {
  color: var(--ink);
  border-bottom: 1px solid rgba(25,23,22,0.18);
  padding-bottom: 1px;
  transition: border-color 0.25s, color 0.25s;
}
.returns-block-content a:hover,
.contact-method-value:hover,
.sizing-contact a:hover { border-color: var(--ink); }

.contact-method-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.01em;
  display: inline-block;
  margin: 6px 0 8px;
}
.contact-method-value:hover { color: var(--ink-mid); }
