/* ================================================================
   100 BLACK MEN HOMEPAGE — style.css
   Desktop-first, fully responsive
   Sections: Variables → Reset → Utility → Typography → Buttons →
             Header → Hero → Products → Lookbook → Trust → Footer →
             Reveal Animation → Responsive
   ================================================================ */


/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Color palette */
  --navy-deep:      #000000;
  --navy-mid:       #2d6b24;
  --royal:          #3f9c36;
  --gold:           #e0b34b;
  --gold-hover:     #eac05e;
  --gold-dim:       rgba(224, 179, 75, 0.15);
  --gold-border:    rgba(224, 179, 75, 0.22);
  --white:          #ffffff;
  --off-white:      #F5F1E8;
  --text-muted:     #8a9070;
  --text-light:     rgba(255, 255, 255, 0.55);

  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-display:   'Montserrat', sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-v:      132px;
  --container-w:    1240px;
  --gutter:         48px;
  --gap:            28px;

  /* Shape */
  --radius:         8px;
  --radius-lg:      14px;

  /* Motion */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:            0.28s;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy-deep);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }


/* ----------------------------------------------------------------
   UTILITY: CONTAINER
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Gold italic accent used inside headings */
em {
  font-style: italic;
  color: var(--gold);
}

/* Uppercase label above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Section headings used on light bg (products) */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: #6a7060;
  max-width: 500px;
  line-height: 1.8;
}

/* Centered section header block (products) */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* On the light products bg, eyebrow is gold for brand consistency */
.section-header .eyebrow  { color: var(--gold); }
.section-header .section-sub { margin-inline: auto; }


/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 44px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    color      var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform  var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.btn-gold {
  background: var(--royal);
  color: var(--white);
}
.btn-gold:hover {
  background: #4aaf3e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(63, 156, 54, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Compact button variant for product cards */
.btn-sm {
  padding: 12px 24px;
  font-size: 0.64rem;
}


/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 22px;
  /* Starts transparent, JS adds .scrolled */
  transition:
    background     var(--dur) var(--ease),
    padding        var(--dur) var(--ease),
    box-shadow     var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--gold-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo img {
  height: 97px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform var(--dur) var(--ease);
}
.header-logo:hover img { transform: scale(1.05); }

/* Desktop nav */
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 44px;
}

.header-nav a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  transition: color var(--dur) var(--ease);
}

.header-nav a::after {
  content: '';
  position: absolute;
  inset-block-end: -5px;
  inset-inline: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.header-nav a:hover          { color: var(--gold); }
.header-nav a:hover::after   { transform: scaleX(1); }

/* Active state — set by JS on scroll */
.header-nav a.active         { color: var(--gold); }
.header-nav a.active::after  { transform: scaleX(1); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* Animated X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ----------------------------------------------------------------
   MOBILE NAV OVERLAY
   ---------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }


/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block-start: 100px;  /* clear sticky header */
  padding-block-end: 80px;
  position: relative;
  overflow: hidden;

  /* Layered gradient — no image required */
  background:
    radial-gradient(ellipse at 75% 40%, rgba(224,179,75,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(224,179,75,0.05) 0%, transparent 50%),
    linear-gradient(150deg, #000000 0%, #0a0a0a 60%, #111111 100%);
}

/* Fine diagonal line texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 58px,
    rgba(224, 179, 75, 0.028) 58px,
    rgba(224, 179, 75, 0.028) 59px
  );
  pointer-events: none;
}

/* Gold top rule */
.hero::after {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}

/* Two-column split */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Left ── */
.hero-left { padding-inline-end: 20px; }

.hero-left .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}

/* Small decorative rule before eyebrow text */
.hero-left .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 6.4vw, 7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(235, 230, 215, 0.82);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Small credential tags below CTAs */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(224, 179, 75, 0.65);
  padding: 7px 16px;
  border: 1px solid rgba(224, 179, 75, 0.2);
  border-radius: 2px;
}

/* ── Hero Announcement Card ── */
.hero-announcement-card {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  border: 1px solid rgba(224, 179, 75, 0.45);
  border-left: 3px solid var(--gold);
  background: rgba(224, 179, 75, 0.07);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Layer 1 — soft radial glow that drifts across the card interior */
.hero-announcement-card::before {
  content: '';
  position: absolute;
  /* Oversized so motion stays contained within the card */
  width: 220%;
  height: 220%;
  top: -60%;
  left: -60%;
  background: radial-gradient(
    ellipse 45% 55% at 50% 50%,
    rgba(224, 179, 75, 0.34) 0%,
    transparent 70%
  );
  animation: hac-glow-drift 5.5s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

/* Layer 2 — diagonal shimmer sweep */
.hero-announcement-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 25%,
    rgba(224, 172, 55, 0.11) 50%,
    transparent 75%
  );
  transform: translateX(-110%);
  animation: hac-shimmer 7s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes hac-glow-drift {
  from { transform: translate(0%,  0%); opacity: 0.85; }
  to   { transform: translate(22%, 8%); opacity: 1;   }
}

@keyframes hac-shimmer {
  0%,  35% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(210%); }
}

/* Respect reduced-motion — keep static glow, disable movement */
@media (prefers-reduced-motion: reduce) {
  .hero-announcement-card::before,
  .hero-announcement-card::after {
    animation: none;
  }
  .hero-announcement-card::before {
    transform: translate(11%, 4%);
    opacity: 0.85;
  }
  .hero-announcement-card::after {
    display: none;
  }
}

.hero-announcement-card__eyebrow {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-announcement-card__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
}


/* ── Hero Right ── */
.hero-right {
  position: relative;
  /* Leave room for the corner accents */
  padding: 22px;
}

/* Editorial image frame */
.hero-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px var(--gold-border);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  filter: brightness(0.9) contrast(1.03);
  transition: transform 0.7s var(--ease);
}
.hero-frame:hover .hero-img { transform: scale(1.04); }

/* Floating badge overlay on image */
.hero-credential {
  position: absolute;
  inset-block-end: 28px;
  inset-inline-start: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 179, 75, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-cred-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-cred-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-cred-text strong {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-cred-text span {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(210, 205, 190, 0.8);
}

/* Decorative corner accents (CSS only) */
.corner {
  position: absolute;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.corner--tl {
  inset-block-start: 0;
  inset-inline-end: 0;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.45;
}

.corner--br {
  inset-block-end: 0;
  inset-inline-start: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 var(--radius-lg);
  opacity: 0.25;
}

/* Hero frame glow sweep animation */
.hero-frame-glow {
  position: absolute;
  inset: 22px;            /* matches hero-right padding so SVG aligns with frame edge */
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  overflow: visible;
  pointer-events: none;
  z-index: 2;             /* above frame, below corner accents */
}

@keyframes hfg-sweep {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1492; }
  /* dasharray sums both equal 1492 → seamless loop regardless of exact path perimeter */
}

.hfg-halo {
  animation: hfg-sweep 16s linear infinite;
}

.hfg-core {
  animation: hfg-sweep 16s linear infinite;
  /* −0.4 s ≈ 37 SVG-unit lead → bright spot sits just inside the halo's leading edge */
  animation-delay: -0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .hfg-halo,
  .hfg-core { animation-play-state: paused; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  inset-block-end: 36px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.75; }
}


/* ----------------------------------------------------------------
   ANNIVERSARY STRIP
   ---------------------------------------------------------------- */
.anniversary-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.anniversary-strip__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.anniversary-strip__text {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  text-align: center;
}

@media (max-width: 480px) {
  .anniversary-strip { padding: 14px 20px; gap: 12px; }
  .anniversary-strip__text { font-size: 0.7rem; letter-spacing: 0.1em; }
}

/* ----------------------------------------------------------------
   PRODUCTS SECTION
   ---------------------------------------------------------------- */
.products-section {
  padding-block-start: 52px;
  padding-block-end: var(--section-v);
  background: var(--off-white);
  position: relative;
}

/* Gold rule at top */
.products-section::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Row 0: full-width blazer spotlight ── */
.products-row--spotlight {
  margin-bottom: calc(var(--gap) + 8px);
}

.products-row--spotlight .product-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--gold);
}

.products-row--spotlight .product-img-wrap {
  aspect-ratio: unset;
  min-height: 480px;
}

.products-row--spotlight .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
}

/* ── Standard grid: collection products ── */
.products-row--unified {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.products-row--unified .product-img-wrap {
  aspect-ratio: 4 / 3;
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform  0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(224, 179, 75, 0.42);
}

/* Image wrapper — defines aspect ratio */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  padding: 14px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img { transform: scale(1.06); }


/* Badge label on image */
.product-badge {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-start: 18px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(224, 179, 75, 0.28);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-badge--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: transparent;
  backdrop-filter: none;
}

.product-badge--new {
  background: var(--navy-deep);
  color: var(--gold);
  border-color: var(--gold);
  backdrop-filter: none;
}

/* Card content */
.product-info {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.product-bullets {
  flex: 1;
  margin-bottom: 24px;
}

.product-bullets li {
  font-size: 0.83rem;
  color: #7a7a6e;
  line-height: 1.6;
  padding-block: 5px;
  padding-inline-start: 18px;
  position: relative;
}

/* Call-for-color tagline bullet */
.product-bullet--call {
  color: var(--gold) !important;
  font-style: italic;
}

/* Gold dash bullet */
.product-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Blazer size grid — spotlight card only */
.blazer-size-grid {
  margin: 16px 0 20px;
}

.blazer-size-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blazer-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blazer-sizes span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border: 1px solid rgba(224, 179, 75, 0.35);
  border-radius: 3px;
  color: #111111;
  background: rgba(224, 179, 75, 0.06);
}

.blazer-size-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.blazer-size-note a {
  color: var(--gold);
  text-decoration: none;
}

/* Price + button row */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block-start: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1;
}


/* ----------------------------------------------------------------
   LOOKBOOK SECTION
   ---------------------------------------------------------------- */
.lookbook-section {
  padding-block: var(--section-v);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.lookbook-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(224, 179, 75, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Two-column grid: wide left image + right content */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ── Primary image ── */
.lookbook-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--gold-border);
}

.lookbook-primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Centers on models 2 & 3 (woman in polo + man in tee) so both are
     fully visible within the portrait crop. */
  object-position: 18% 20%;
  filter: brightness(0.92) contrast(1.04) saturate(0.95);
  transition: transform 0.7s var(--ease);
}

.lookbook-primary:hover .lookbook-primary-img { transform: scale(1.04); }

/* Gradient overlay */
.lookbook-primary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 44px;
}

.lookbook-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 300px;
  border-left: 2px solid var(--gold);
  padding-inline-start: 22px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* ── Right column ── */
.lookbook-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

/* Copy block */
.lookbook-copy .eyebrow { color: var(--gold); }

.lookbook-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.6vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.lookbook-body {
  font-size: 1rem;
  color: rgba(210, 205, 190, 0.9);
  line-height: 1.88;
  margin-bottom: 18px;
}

.lookbook-copy .btn { margin-block-start: 14px; }

/* Secondary image */
.lookbook-secondary {
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  border: 1px solid var(--gold-border);
}

.lookbook-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.96) contrast(1.03);
  transition: transform 0.55s var(--ease);
}

.lookbook-secondary:hover .lookbook-secondary-img { transform: scale(1.04); }

/* Split layout (copy + blazer only, no primary image) */
.lookbook-section--split .lookbook-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lookbook-section--split .lookbook-secondary {
  min-height: unset;
  height: auto;
  flex: unset;
  overflow: visible;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
}
.lookbook-section--split .lookbook-secondary .lookbook-secondary-img {
  height: auto;
  object-fit: unset;
}

@media (max-width: 900px) {
  .lookbook-section--split .lookbook-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lookbook-section--split .lookbook-secondary {
    min-height: 360px;
  }
}


/* ----------------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------------- */
.trust-section {
  padding-block: 88px;
  background: var(--navy-deep);
  border-block: 1px solid var(--gold-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 40px 36px;
  text-align: center;
  border-inline-end: 1px solid var(--gold-border);
  transition: background var(--dur) var(--ease);
}

.trust-item:last-child { border-inline-end: none; }

.trust-item:hover { background: rgba(255, 255, 255, 0.025); }

.trust-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.9;
}

.trust-icon svg { width: 100%; height: 100%; }

.trust-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.trust-desc {
  font-size: 0.83rem;
  color: rgba(210, 205, 190, 0.85);
  line-height: 1.7;
}


/* ----------------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-section {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  padding: var(--section-v) 0;
  text-align: center;
}

.contact-section::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.contact-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 16px;
}

.contact-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-decoration: none;
  transition:
    background  0.24s var(--ease),
    border-color 0.24s var(--ease),
    transform   0.24s var(--ease);
  min-width: 260px;
}

.contact-card:hover {
  background: rgba(224,179,75,0.09);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-text {
  text-align: left;
}

.contact-card-label {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .contact-headline { font-size: 1.9rem; }
  .contact-cards    { flex-direction: column; align-items: center; }
  .contact-card     { width: 100%; max-width: 340px; min-width: unset; }
}


/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  border-block-start: 1px solid var(--gold-border);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 52px;
}

/* Brand lockup */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(210, 205, 190, 0.7);
  letter-spacing: 0.01em;
}

/* Footer nav */
.footer-nav ul {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color var(--dur) var(--ease),
    color        var(--dur) var(--ease);
}

.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 18px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.5;
}

.footer-policies {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.footer-policies a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.26);
  transition: color var(--dur) var(--ease);
}
.footer-policies a:hover { color: var(--gold); }


/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   Elements with class .reveal start hidden and fade up into place.
   JS adds .is-visible when they enter the viewport.
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.products-row .product-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.products-row .product-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.products-row--unified .product-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.products-row--unified .product-card.reveal:nth-child(3) { transition-delay: 0.16s; }

.trust-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.trust-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.trust-item.reveal:nth-child(4) { transition-delay: 0.21s; }


/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-v: 88px;
    --gutter: 32px;
  }

  .hero-grid       { gap: 48px; }
  .hero-headline   { font-size: clamp(3rem, 5.5vw, 4.6rem); }

  .lookbook-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lookbook-primary { min-height: 500px; }

  /* Trust: 2×2 */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)  { border-inline-end: none; }
  .trust-item:nth-child(3)  { border-block-start: 1px solid var(--gold-border); }
  .trust-item:nth-child(4)  { border-inline-end: none; border-block-start: 1px solid var(--gold-border); }

  .footer-main { flex-wrap: wrap; gap: 28px; }
}


/* ----------------------------------------------------------------
   RESPONSIVE — TABLET NARROW (≤ 900px)
   Standard product row drops to 2-col before cards get too cramped
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .products-row--unified {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Centre the orphaned 5th card */
  .products-row--unified .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--gap) / 2);
    margin-inline: auto;
  }
}


/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-v: 68px;
    --gutter: 20px;
  }

  /* Header: show hamburger, hide desktop nav */
  .header-nav  { display: none; }
  .nav-toggle  { display: flex; }

  /* Logo: step back slightly on mobile so header stays balanced */
  .header-logo img { height: 80px; }

  /* Hero: reduce top padding so header clearance isn't doubled on mobile */
  .hero {
    padding-block-start: 80px;
    padding-block-end: 48px;
  }

  /* Hero: stack vertically, image first on mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block-start: 0;
    padding-block-end: 0;
  }

  /* Hide scroll hint — overlaps content when hero is stacked */
  .scroll-hint { display: none; }

  .hero-right {
    order: -1;
    max-width: 340px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-left {
    text-align: center;
    padding-inline-end: 0;
  }

  .hero-left .eyebrow  { justify-content: center; }
  .hero-ctas           { justify-content: center; }
  .hero-badges         { justify-content: center; }
  .hero-sub            { margin-inline: auto; }
  .corner              { display: none; }

  /* Products: single column, capped width */
  .products-row--unified {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  /* Lookbook: stack */
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-primary { min-height: 380px; }
  .lookbook-secondary { min-height: 240px; }

  /* Footer: stack */
  .footer-main         { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-nav ul       { flex-wrap: wrap; gap: 16px 28px; }
}


/* ----------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.9rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn { text-align: center; width: 100%; }

  /* Trust: single column on very small screens */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    border-inline-end: none !important;
    border-block-start: none !important;
    border-block-end: 1px solid var(--gold-border);
  }
  .trust-item:last-child { border-block-end: none; }

  .footer-policies { flex-wrap: wrap; gap: 12px 20px; }
}


/* ----------------------------------------------------------------
   PRODUCT CARD ADDITIONS — desc line + view-details trigger
   ---------------------------------------------------------------- */

/* Short premium description under the product name */
.product-desc {
  font-size: 0.82rem;
  color: #7a7a6e;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 10px;
}

/* "View Details" text-only trigger — gold, uppercase, subtle */
.btn-view-details {
  display: inline-block;
  margin-bottom: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.82;
  transition:
    opacity var(--dur) var(--ease),
    letter-spacing var(--dur) var(--ease);
}

.btn-view-details:hover {
  opacity: 1;
  letter-spacing: 0.28em;
}


/* ----------------------------------------------------------------
   PRODUCT MODAL SYSTEM
   ---------------------------------------------------------------- */

/* ── Overlay ── */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease);
}

.product-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal panel ── */
.product-modal {
  position: relative;
  background: #faf8f4;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Entry animation */
  transform: scale(0.96) translateY(10px);
  transition:
    transform 0.32s var(--ease),
    opacity   0.32s var(--ease);
  opacity: 0;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--gold-border);
}

.product-modal-overlay.is-open .product-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ── Close button ── */
.modal-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 18px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.75;
  padding: 8px;
  line-height: 1;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ── Modal body: image left + info right ── */
.modal-body {
  display: flex;
  flex-direction: row;
  flex: 1;
  overflow: hidden;
}

/* ── Image column (~45%) ── */
.modal-img-col {
  flex: 0 0 44%;
  overflow: hidden;
  background: var(--navy-deep);
}

.modal-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.16s ease;
}

.modal-product-img--contain {
  object-fit: contain;
  object-position: center center;
}

/* Padded column for transparent-PNG / per-color products.
   Gives consistent visual framing so both white and blue variants
   sit in the same space rather than filling wall-to-wall. */
.modal-img-col--contain {
  padding: 28px 20px;
  background: #f4f3f0;
}

/* ── Info column (~55%) ── */
.modal-info-col {
  flex: 1;
  padding: 36px 40px 36px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow above name */
.modal-eyebrow {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Product name */
.modal-product-name {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

/* Description */
.modal-desc {
  font-size: 0.9rem;
  color: #6a7060;
  line-height: 1.78;
  margin-bottom: 24px;
}

/* ── Meta table (Colors / Sizes / Logo) ── */
.modal-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.modal-meta-row {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  align-items: flex-start;
}

.modal-meta-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  flex: 0 0 56px;
  padding-top: 2px;
}

.modal-meta-value {
  font-size: 0.84rem;
  color: #6a7060;
  line-height: 1.5;
  flex: 1;
}

/* ── Price row ── */
.modal-price-row {
  margin-bottom: 24px;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Action buttons ── */
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.modal-buy-btn {
  flex: 1;
  min-width: 130px;
  text-align: center;
}

.modal-cart-btn {
  flex: 1;
  min-width: 130px;
  /* On the light modal background, override the default white text */
  color: var(--navy-deep);
  border-color: rgba(0, 0, 0, 0.28);
}

.modal-cart-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Tiny disclaimer under buttons */
.modal-cart-note {
  font-size: 0.68rem;
  color: #9aaac8;
  font-style: italic;
  line-height: 1.5;
  margin-top: 0;
}

/* Inline cart-soon message (injected by JS) */
.modal-cart-soon {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.modal-cart-soon.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Color selector ── */
.modal-color-select {
  margin: 20px 0 0;
}

/* Color options reuse the same button shape as size buttons */
.modal-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* ── Size selector ── */
.modal-size-select {
  margin: 16px 0 4px;
}

.modal-size-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.modal-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-btn {
  padding: 5px 13px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
  line-height: 1;
}

.size-btn:hover {
  border-color: var(--gold);
  background: rgba(224, 179, 75, 0.07);
}

.size-btn.selected {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

.modal-size-error {
  font-size: 0.7rem;
  color: #b0302a;
  font-style: italic;
  margin: 8px 0 0;
  min-height: 1em;
  transition: opacity 0.18s ease;
}

/* ── Price: contact-for-price variant ── */
.modal-price--contact {
  color: var(--gold);
  font-style: italic;
  font-size: 1rem;
}

/* ── Contact-for-price CTA block (blazer large sizes) ── */
.modal-contact-cta {
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(224, 179, 75, 0.07);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.modal-contact-cta-heading {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.modal-contact-cta-note {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.55;
  margin: 0 0 14px;
}

.modal-contact-cta .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.modal-contact-cta .btn:last-child {
  margin-bottom: 0;
}

/* ── Modal contact / supply note (every modal, bottom) ── */
/* Per-product note shown below description (e.g. "Call for Navy & Black") */
.modal-product-details {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 0.78rem;
  color: #6a7060;
  line-height: 1.7;
}

.modal-product-details li {
  margin-bottom: 2px;
}

.modal-product-note {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
}

.modal-product-note a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Blazer "+" size expand ── */
.modal-size-expand-btn {
  color: var(--gold);
  border-color: rgba(224, 179, 75, 0.5);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.modal-size-expand-btn:hover {
  background: rgba(224, 179, 75, 0.08);
  border-color: var(--gold);
}

.modal-size-expand-panel {
  margin-top: 10px;
  padding: 11px 15px;
  background: rgba(224, 179, 75, 0.05);
  border: 1px solid rgba(224, 179, 75, 0.22);
  border-radius: 6px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}

.modal-size-expand-panel a {
  color: var(--gold);
  text-decoration: underline;
}

.modal-contact-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.71rem;
  color: #8a9070;
  line-height: 1.65;
}

.modal-contact-note p {
  margin: 0 0 3px;
}

.modal-contact-note p:last-child {
  margin-bottom: 0;
}

.modal-contact-note a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.modal-contact-note a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}


/* ----------------------------------------------------------------
   MODAL RESPONSIVE
   ---------------------------------------------------------------- */

/* Tablet: image column slightly narrower */
@media (max-width: 860px) {
  .modal-img-col { flex: 0 0 38%; }
  .modal-info-col { padding: 28px 28px 28px 24px; }
}

/* Mobile: full-screen, image hidden or stacked above */
@media (max-width: 640px) {
  .product-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal {
    max-height: 94vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }

  .modal-body {
    flex-direction: column;
    overflow-y: auto;
  }

  .modal-img-col {
    flex: 0 0 auto;
    height: 220px;
  }

  .modal-product-img {
    height: 220px;
    object-position: center 20%;
  }

  .modal-info-col {
    padding: 24px 20px 32px;
    overflow-y: visible;
  }

  .modal-actions { flex-direction: column; }
  .modal-buy-btn,
  .modal-cart-btn { flex: none; width: 100%; }
}


/* ================================================================
   CHECKOUT PAGE — checkout.html
   Shares all design tokens and base styles from this file.
   ================================================================ */

/* ── Body override ── */
.checkout-body {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Checkout Header ── */
.checkout-header {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-logo img {
  height: 52px;
  width: auto;
}

.checkout-secure-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.checkout-lock-icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Main area ── */
.checkout-main {
  flex: 1;
  padding: 48px 0 80px;
}

/* ── Breadcrumb ── */
.checkout-breadcrumb {
  margin-bottom: 32px;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-back-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}

.checkout-back-link:hover {
  color: var(--gold);
}

.checkout-back-link:hover svg {
  transform: translateX(-3px);
}

/* ── Page header ── */
.checkout-page-header {
  text-align: center;
  margin-bottom: 44px;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.12;
  margin: 6px 0 12px;
}

.checkout-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Two-column checkout grid ── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

/* ── Shared card shell ── */
.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.07);
  padding: 32px;
}

.checkout-card-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-card-lock {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Order Summary card ── */
.checkout-summary-inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.checkout-img-wrap {
  flex: 0 0 130px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--off-white);
}

.checkout-product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.checkout-details {
  flex: 1;
  min-width: 0;
}

.checkout-collection-eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.checkout-product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin: 0 0 14px;
}

.checkout-detail-list {
  margin: 0 0 16px;
  padding: 0;
}

.checkout-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.checkout-detail-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checkout-detail-value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.checkout-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 14px 0;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.checkout-total-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.checkout-total-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.checkout-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-edit-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--dur) var(--ease);
}

.checkout-edit-link:hover {
  color: var(--gold);
}

.checkout-edit-link:hover svg {
  transform: translateX(-2px);
}

/* ── Payment card ── */
.checkout-trust-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -12px 0 24px;
  line-height: 1.5;
}

/* Whop container */
.whop-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* Placeholder — remove when Whop embed is active */
.whop-placeholder {
  border: 1.5px dashed rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
}

.whop-placeholder-icon {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  margin: 0 auto 12px;
}

.whop-placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.whop-placeholder-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 0 0 6px;
}

.whop-placeholder-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Shown when a real Whop URL is active (Path A live state) */
.whop-live-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
}

/* Complete Purchase / Whop redirect button */
.btn-checkout {
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

/* Coming-soon note (shown when buyLink is still "#") */
.checkout-coming-soon {
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Trust badges */
.checkout-trust-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checkout-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.checkout-trust-list svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Empty / fallback state ── */
.checkout-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin-inline: auto;
}

.checkout-empty-msg {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 28px;
}

/* ── Checkout Footer ── */
.checkout-footer {
  background: var(--navy-deep);
  padding: 20px 0;
  border-top: 1px solid var(--gold-border);
  margin-top: auto;
}

.checkout-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}

.checkout-footer-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.checkout-footer-links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-footer-links a:hover {
  color: var(--gold);
}


/* ----------------------------------------------------------------
   CART PAGE
   ---------------------------------------------------------------- */

/* ── Body / layout ── */
/* cart.html reuses .checkout-body for background + flex column */

.cart-main {
  flex: 1;
  padding: 48px 0 80px;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

/* Two-column layout: items left, summary right */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* ── Items card ── */
.cart-items-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr 28px;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 96px;
  height: 116px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.cart-item-details {
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 4px;
  line-height: 1.3;
}

.cart-item-size {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 14px;
}

/* ── Quantity controls ── */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  padding: 0;
  flex-shrink: 0;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
  min-width: 20px;
  text-align: center;
}

/* ── Remove button ── */
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.25);
  padding: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: color var(--dur) var(--ease);
  margin-top: 2px;
}

.cart-remove-btn:hover {
  color: #c0392b;
}

.cart-remove-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Summary card ── */
.cart-summary-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 28px 28px 24px;
  position: sticky;
  top: 88px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  margin: 12px 0 22px;
}

.cart-summary-total-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.cart-summary-total-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.cart-summary-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: -12px 0 20px;
}

.btn-cart-checkout {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.btn-cart-return {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn-cart-return:hover {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

/* ── Empty state ── */
.cart-empty {
  text-align: center;
  padding: 100px 24px;
  max-width: 440px;
  margin-inline: auto;
}

.cart-empty-icon {
  width: 60px;
  height: 60px;
  color: rgba(0, 0, 0, 0.14);
  margin: 0 auto 24px;
}

.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.cart-empty-msg {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── Cart header icon + badge ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  padding: 4px;
  transition: color var(--dur) var(--ease);
  z-index: 101;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-icon-btn:hover {
  color: var(--gold);
}

.cart-icon-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 2px;
  pointer-events: none;
}

/* ── Cart responsive ── */
@media (max-width: 820px) {
  .cart-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .cart-main {
    padding: 28px 0 60px;
  }

  .cart-title {
    font-size: 1.9rem;
  }

  .cart-item {
    grid-template-columns: 72px 1fr 24px;
    gap: 14px;
    padding: 16px;
  }

  .cart-item-img {
    width: 72px;
    height: 86px;
  }

  .cart-summary-card {
    padding: 22px 20px 20px;
  }
}

/* ----------------------------------------------------------------
   CHECKOUT RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 820px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .checkout-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .checkout-main {
    padding: 32px 0 60px;
  }

  .checkout-card {
    padding: 24px 20px;
  }

  .checkout-summary-inner {
    flex-direction: column;
  }

  .checkout-img-wrap {
    flex: none;
    width: 100%;
  }

  .checkout-product-img {
    height: 200px;
    object-position: center 15%;
  }

  .checkout-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .checkout-footer-links {
    gap: 16px;
  }
}

/* ----------------------------------------------------------------
   PROMO BANNER — conference/event callout strip
   ---------------------------------------------------------------- */
.promo-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(224, 179, 75, 0.35);
  border-bottom: 3px solid var(--gold);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(224,179,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.promo-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.promo-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0;
}

.promo-banner__headline em {
  color: var(--gold);
}

.promo-banner__sub {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  max-width: 560px;
  margin: 0;
}

@media (max-width: 600px) {
  .promo-banner { padding: 28px 0; }
  .promo-banner__headline { font-size: 1.6rem; }
}

/* ----------------------------------------------------------------
   NY COLLECTION HEADER — featured collection label
   ---------------------------------------------------------------- */
.ny-collection-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-deep);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Group pricing note below section header */
.section-group-note {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: rgba(224,179,75,0.12);
  border: 1px solid rgba(224,179,75,0.35);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------------
   LIFESTYLE STRIP — two lifestyle images side by side
   ---------------------------------------------------------------- */
.lifestyle-strip {
  padding: 60px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
}

.lifestyle-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.lifestyle-strip__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--gold-border);
}

.lifestyle-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lifestyle-strip__img-wrap:hover .lifestyle-strip__img {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .lifestyle-strip__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   EMERGING & COLLEGIATE APPAREL SECTION
   ---------------------------------------------------------------- */
.chapters-section {
  background: var(--off-white);
  padding-block: var(--section-v);
  border-top: 3px solid var(--gold);
  position: relative;
}

/* Subsection block (collegiate / emerging) */
.chapters-block {
  margin-bottom: 64px;
}

.chapters-block-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid rgba(224, 179, 75, 0.28);
  padding-bottom: 14px;
  margin-bottom: 32px;
}

.chapters-block-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

/* State group grid — auto-fill so it adapts to any viewport */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px 24px;
  align-items: start;
}

/* State label — gold, small caps */
.chapters-state-label {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Chapter name list */
.chapters-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapters-list li {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: #4a4a42;
  line-height: 1.7;
  padding-block: 1px;
  padding-inline-start: 13px;
  position: relative;
  word-break: break-word;       /* prevents overflow on very long names */
  overflow-wrap: break-word;
}

.chapters-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* Emerging — horizontal pill-style list */
.chapters-emerging-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapters-emerging-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #4a4a42;
  line-height: 1.65;
  padding-inline-start: 14px;
  position: relative;
}

.chapters-emerging-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Group pricing CTA strip */
.chapters-cta {
  border-top: 1px solid rgba(224, 179, 75, 0.28);
  padding-top: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6a7060;
}

.chapters-cta a {
  color: var(--gold);
  font-weight: 700;
  transition: opacity var(--dur) var(--ease);
}
.chapters-cta a:hover { opacity: 0.75; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .chapters-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 600px) {
  .chapters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .chapters-emerging-list {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .chapters-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   CHAPTERS PAGE — page hero banner
   ---------------------------------------------------------------- */
.chapter-page-hero {
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
  padding: 120px 0 72px;
  text-align: center;
}

.chapter-page-hero__inner {
  max-width: 680px;
  margin-inline: auto;
}

.chapter-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.chapter-page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 540px;
  margin-inline: auto;
}

.chapter-page-hero__cta-note {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.chapter-page-hero__cta-note a {
  color: var(--gold);
  transition: opacity var(--dur) var(--ease);
}
.chapter-page-hero__cta-note a:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .chapter-page-hero { padding: 100px 0 52px; }
}


/* ----------------------------------------------------------------
   CHAPTERS PAGE — accordion section wrapper
   ---------------------------------------------------------------- */
.chapter-accordion-section {
  background: var(--off-white);
  padding-block: var(--section-v);
}

/* ── Individual accordion (details/summary) ── */
.chapter-accordion {
  border: 1px solid rgba(224,179,75,0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.28s var(--ease);
}

.chapter-accordion[open] {
  box-shadow: 0 4px 28px rgba(0,0,0,0.09);
}

/* Remove default browser marker */
.chapter-accordion summary { list-style: none; }
.chapter-accordion summary::-webkit-details-marker { display: none; }

/* Summary row */
.chapter-accordion__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.chapter-accordion__summary:hover {
  background: rgba(224,179,75,0.05);
}

.chapter-accordion[open] .chapter-accordion__summary {
  border-bottom-color: rgba(224,179,75,0.2);
  background: rgba(224,179,75,0.04);
}

/* Label */
.chapter-accordion__label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-deep);
  flex: 1;
}

/* Count tag */
.chapter-accordion__count {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Chevron icon — pure CSS */
.chapter-accordion__icon {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.24s var(--ease);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: -4px;
}

.chapter-accordion[open] .chapter-accordion__icon {
  transform: rotate(225deg);
  margin-top: 4px;
}

/* Accordion body */
.chapter-accordion__body {
  padding: 36px 28px 40px;
}

/* Emerging list — spaced on full page */
.chapters-emerging-list--page {
  flex-direction: column;
  gap: 12px;
}

.chapters-emerging-list--page li {
  font-size: 0.88rem;
  color: #3a3a34;
}


/* ----------------------------------------------------------------
   CHAPTERS PAGE — editorial photo
   ---------------------------------------------------------------- */
.chapter-editorial-photo {
  background: var(--navy-deep);
  padding: 64px 0;
  border-top: 1px solid var(--gold-border);
}

.chapter-editorial-figure {
  margin: 0;
}

.chapter-editorial-img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
}

.chapter-editorial-caption {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .chapter-accordion__summary { padding: 18px 20px; }
  .chapter-accordion__body    { padding: 24px 20px 28px; }
  .chapter-editorial-photo    { padding: 40px 0; }
  .chapter-editorial-img      { max-height: 320px; }
}


/* ----------------------------------------------------------------
   INDEX — Chapter teaser card (replaces full embedded section)
   ---------------------------------------------------------------- */
.chapters-teaser {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 72px 0;
  text-align: center;
}

.chapters-teaser__inner {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chapters-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}

.chapters-teaser__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

/* ----------------------------------------------------------------
   CHAPTERS PAGE — top full-width photo
   ---------------------------------------------------------------- */
.chapter-top-photo {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--navy-deep);
}

.chapter-top-photo__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.88);
}

@media (max-width: 768px) {
  .chapter-top-photo__img { height: 300px; }
}


/* ----------------------------------------------------------------
   INDEX — Gallery teaser (photo + overlay CTA)
   ---------------------------------------------------------------- */
.gallery-teaser {
  position: relative;
  background: var(--navy-deep);
}

.gallery-teaser__photo-wrap {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.gallery-teaser__photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.65);
}

.gallery-teaser__photo-wrap:hover .gallery-teaser__photo {
  transform: scale(1.03);
}

.gallery-teaser__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
}

.gallery-teaser__overlay-eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-teaser__overlay-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

@media (max-width: 600px) {
  .gallery-teaser__photo,
  .gallery-teaser__photo-wrap { height: 320px; }
}


/* ----------------------------------------------------------------
   GALLERY PAGE — hero banner
   ---------------------------------------------------------------- */
.gallery-page-hero {
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
  padding: 120px 0 64px;
  text-align: center;
}

.gallery-page-hero__inner { max-width: 600px; margin-inline: auto; }

.gallery-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.gallery-page-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-page-hero { padding: 96px 0 48px; }
}


/* ----------------------------------------------------------------
   GALLERY PAGE — editorial grid
   ---------------------------------------------------------------- */
.gallery-section {
  background: var(--navy-deep);
  padding: 56px 0 72px;
}

/* Asymmetric 3-column grid:
   Row 1: [wide item = 2 cols] [standard item = 1 col]
   Row 2: [standard item = 1 col] [wide item = 2 cols]         */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item--wide {
  grid-column: 1 / 2;
}

/* Row 2: swap — item 3 is standard (col 1), item 4 is wide (col 2 → span) */
.gallery-item:nth-child(3) {
  grid-column: 1 / 2;
}

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

/* Override row 1 layout */
.gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }

/* Use a simple 2-col grid — item 1 is tall/wide via aspect ratio */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  background: #111;
}

/* Wide items span both columns */
.gallery-item--wide {
  grid-column: 1 / -1;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.9);
}

/* Wide items: taller aspect */
.gallery-item--wide .gallery-item__img {
  height: 420px;
  object-position: center 40%;
}

/* Standard items: square-ish */
.gallery-item:not(.gallery-item--wide) .gallery-item__img {
  height: 320px;
}

/* Hover: lighten + zoom */
.gallery-item:hover .gallery-item__img,
.gallery-item:focus .gallery-item__img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

/* Caption — slides up on hover */
.gallery-item__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transform: translateY(6px);
  opacity: 0;
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease);
}

.gallery-item:hover .gallery-item__caption,
.gallery-item:focus .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gold accent bar on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.32s var(--ease);
  transform-origin: left;
}

.gallery-item:hover::after,
.gallery-item:focus::after {
  transform: scaleX(1);
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: 1; }
  .gallery-item--wide .gallery-item__img { height: 280px; }
  .gallery-item:not(.gallery-item--wide) .gallery-item__img { height: 240px; }
}


/* ----------------------------------------------------------------
   GALLERY PAGE — bottom CTA
   ---------------------------------------------------------------- */
.gallery-page-cta {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  padding: 64px 0;
  text-align: center;
}

.gallery-page-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery-page-cta__text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ================================================================
   GOLF COLLECTION SECTION
   ================================================================ */
.golf-collection-section {
  background: var(--navy-deep);
  padding: var(--section-v) 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.golf-collection__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.golf-collection__photo-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.golf-collection__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease);
}

.golf-collection__photo-col:hover .golf-collection__img {
  transform: scale(1.03);
}

.golf-collection__copy-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.golf-collection__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.15;
  margin: 0;
}

.golf-collection__heading em {
  font-style: italic;
  color: var(--gold);
}

.golf-collection__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .golf-collection__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================================
   100BM COLLECTION SECTION — side-by-side product shots
   ================================================================ */
.bm-collection-section {
  background: var(--navy-deep);
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--gold-border);
}

.bm-collection__header {
  text-align: center;
  margin-bottom: 40px;
}

.bm-collection__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--off-white);
  margin: 8px 0 0;
}

.bm-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-collection__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  transition: transform 0.4s var(--ease);
}

.bm-collection__item:hover {
  transform: translateY(-6px);
}

.bm-collection__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.bm-collection__item:hover .bm-collection__img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .bm-collection__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
