/* ═══════════════════════════════════════
   KERYGMA APPAREL — MAIN STYLESHEET
   Apple-inspired premium Christian fashion
   ═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:       #0a0a0a;
  --dark:        #1d1d1f;
  --dark-2:      #2c2c2e;
  --mid:         #6e6e73;
  --light:       #d2d2d7;
  --off-white:   #f5f5f7;
  --white:       #fafafa;
  --gold:        #c9a84c;
  --gold-light:  #e8cc85;
  --gold-dim:    rgba(201,168,76,0.15);
  --cream:       #f8f4ee;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --nav-height: 84px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  2rem;
  --r-xl:  3rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.20);
  --shadow-xl: 0 40px 120px rgba(0,0,0,0.30);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 60px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal-up, .reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-fade {
  transform: translateY(20px);
}

.reveal-delay-1 { transition-delay: 0.15s !important; }
.reveal-delay-2 { transition-delay: 0.30s !important; }
.reveal-delay-3 { transition-delay: 0.45s !important; }

.reveal-up.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-nav--scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.site-nav--light {
  background: rgba(245,245,247,0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 40px;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-nav__logo img {
  height: 72px;
  width: auto;
  transition: opacity 0.3s;
}

.site-nav .logo-white { display: block; }
.site-nav .logo-dark  { display: none; }

.site-nav--light .logo-white { display: none; }
.site-nav--light .logo-dark  { display: block; }

.site-nav__menu { flex: 1; display: flex; justify-content: center; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav__list a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  position: relative;
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover { color: var(--white); }
.site-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-nav--light .site-nav__list a { color: var(--dark); }
.site-nav--light .site-nav__list a:hover { color: var(--black); }

.site-nav__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.site-nav__cart {
  position: relative;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.site-nav__cart:hover { color: var(--white); }
.site-nav--light .site-nav__cart { color: var(--dark); }

.site-nav__cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.site-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.site-nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.site-nav--light .site-nav__mobile-toggle span { background: var(--dark); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%; bottom: 0;
  width: min(380px, 100vw);
  background: var(--black);
  z-index: 1100;
  transition: right 0.4s var(--ease-out);
  padding: 100px 48px 60px;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav ul a {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav ul a:hover { color: var(--gold); }
.mobile-nav__shop { margin-top: 40px; width: 100%; justify-content: center; }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.mobile-nav__overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease), transform 8s linear;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__cross { font-size: 1rem; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title span {
  display: block;
  font-weight: 300;
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero__slide-nav {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__dot {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.3s, height 0.3s;
  cursor: pointer;
}

.hero__dot.active {
  background: var(--gold);
  height: 40px;
}

/* ═══════════════════════════════════════
   BRAND STATEMENT
   ═══════════════════════════════════════ */
.brand-statement {
  background: var(--black);
  padding: 80px 0;
}

.brand-statement__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: center;
  flex-direction: column;
}

.brand-statement__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 100%;
  max-width: 400px;
}

.brand-statement__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  font-style: normal;
}

.brand-statement__quote em {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.section-header__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
}

.section-header__sub {
  color: var(--mid);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 12px;
}

.section-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  margin-bottom: 4px;
}
.section-header__link:hover { color: var(--dark); }

/* ═══════════════════════════════════════
   NEW ARRIVALS / PRODUCT GRID
   ═══════════════════════════════════════ */
.new-arrivals {
  background: var(--off-white);
  padding: 120px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
}

.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.product-card:hover { z-index: 2; transform: translateY(-4px); }

.product-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-card__hover { opacity: 1; }

.product-card__hover .button,
.product-card__hover a.button {
  background: var(--gold) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 60px !important;
  padding: 12px 32px !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.product-card__hover .button:hover { background: var(--gold-light) !important; }

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.product-card__info {
  padding: 20px 24px 28px;
}

.product-card__name {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-card__name a { color: var(--dark); }
.product-card__name a:hover { color: var(--gold); }

.product-card__price { font-size: 0.9375rem; color: var(--mid); }
.product-card__price .woocommerce-Price-amount { color: var(--dark); font-weight: 600; }
.product-card__price del { color: var(--light); }

/* No-products placeholder */
.no-products-placeholder { width: 100%; }
.no-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .no-products-grid { grid-template-columns: repeat(2, 1fr); }
}

.no-products-card { background: var(--white); overflow: hidden; }
.no-products-card__img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.no-products-card__info {
  padding: 20px 24px 28px;
}
.no-products-card__name { font-weight: 600; color: var(--dark); }
.no-products-card__sub  { font-size: 0.875rem; color: var(--mid); margin-top: 4px; }

/* ═══════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ═══════════════════════════════════════
   BRAND STORY
   ═══════════════════════════════════════ */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}

@media (max-width: 900px) {
  .brand-story { grid-template-columns: 1fr; }
}

.brand-story__media {
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}

.brand-story__img-wrap {
  position: absolute;
  inset: 0;
}

.brand-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.brand-story:hover .brand-story__img { transform: scale(1.04); }

.brand-story__img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border-radius: var(--r-sm);
}

.brand-story__img-accent img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .brand-story__media { min-height: 60vw; }
  .brand-story__img-wrap { position: relative; height: 60vw; }
  .brand-story__img-accent { display: none; }
}

.brand-story__content {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 80px;
}

@media (max-width: 1100px) {
  .brand-story__content { padding: 60px 40px; }
}

.brand-story__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 32px;
}

.brand-story__scripture {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
}

.brand-story__scripture .brand-story__cross {
  color: var(--gold);
  font-size: 1.25rem;
}

.brand-story__scripture em {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--dark);
}

.brand-story__scripture span {
  font-size: 0.8125rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

.brand-story__inner p {
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.brand-story__inner p:last-of-type { margin-bottom: 40px; }

/* ═══════════════════════════════════════
   EDITORIAL GRID
   ═══════════════════════════════════════ */
.editorial { background: var(--black); }

.editorial__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  height: 85vh;
  min-height: 600px;
}

@media (max-width: 768px) {
  .editorial__grid { grid-template-columns: 1fr; height: auto; }
}

.editorial__main,
.editorial__item {
  position: relative;
  overflow: hidden;
}

.editorial__main img,
.editorial__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.editorial__main { height: 100%; }

@media (max-width: 768px) {
  .editorial__main { height: 75vw; }
}

.editorial__main:hover img { transform: scale(1.04); }
.editorial__item:hover img { transform: scale(1.04); }

.editorial__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
}

.editorial__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.editorial__overlay h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.editorial__overlay h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.editorial__overlay--small {
  padding: 24px;
}

.editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.editorial__link:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════
   COLLECTION FEATURE (FULL-BLEED DARK)
   ═══════════════════════════════════════ */
.collection-feature {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.collection-feature__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s linear;
}

.collection-feature:hover .collection-feature__bg {
  transform: scale(1.0);
}

.collection-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.collection-feature__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 24px;
  max-width: 700px;
}

.collection-feature__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.collection-feature__title em {
  font-style: italic;
  color: var(--gold-light);
}

.collection-feature__content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   LOOKBOOK MASONRY
   ═══════════════════════════════════════ */
.lookbook {
  background: var(--white);
  padding: 120px 0 0;
}

.lookbook .container { margin-bottom: 60px; }

.lookbook__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 4px;
}

@media (max-width: 900px) {
  .lookbook__masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
}

@media (max-width: 480px) {
  .lookbook__masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

.lookbook__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lookbook__item--tall { grid-row: span 2; }

.lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.lookbook__item:hover img { transform: scale(1.08); }

.lookbook__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.lookbook__item:hover .lookbook__item-overlay {
  background: rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.social-proof {
  background: var(--black);
  padding: 100px 0;
}

.social-proof__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

@media (max-width: 600px) {
  .social-proof__grid { flex-direction: column; }
  .social-proof__divider { width: 60px; height: 1px !important; margin: 20px 0; }
}

.social-proof__stat {
  flex: 1;
  text-align: center;
  padding: 20px 40px;
}

.social-proof__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.social-proof__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.social-proof__divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   COMMUNITY CTA
   ═══════════════════════════════════════ */
.community {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.community__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.community__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.community__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 24px;
}

.community__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 20px;
}

.community__content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.community__content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

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

/* ═══════════════════════════════════════
   INSTAGRAM FEED
   ═══════════════════════════════════════ */
.insta-feed {
  background: var(--off-white);
  padding: 80px 0;
}

.insta-feed__handle {
  text-align: center;
  margin-bottom: 40px;
}

.insta-feed__handle a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.insta-feed__handle a:hover { color: var(--gold); }

.insta-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

@media (max-width: 900px) {
  .insta-feed__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .insta-feed__grid { grid-template-columns: repeat(2, 1fr); }
}

.insta-feed__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.insta-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insta-feed__item:hover img { transform: scale(1.08); }

.insta-feed__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-feed__item:hover .insta-feed__hover { opacity: 1; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer { background: var(--black); color: var(--white); }

.site-footer__top .container {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.2fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: start;
}

@media (max-width: 1100px) {
  .site-footer__top .container { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .site-footer__top .container { grid-template-columns: 1fr; gap: 40px; }
}

.footer-logo { height: 64px; width: auto; margin-bottom: 20px; }

.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.site-footer__social a:hover { color: var(--gold); }

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 640px) {
  .site-footer__links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.site-footer__col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.site-footer__col li { margin-bottom: 10px; }

.site-footer__col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--white); }

.site-footer__newsletter h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.site-footer__newsletter p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  overflow: hidden;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter-form button {
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}
.footer-newsletter-form button:hover { background: var(--gold-light); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.site-footer__bottom ul {
  display: flex;
  gap: 24px;
}

.site-footer__bottom ul a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.site-footer__bottom ul a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   WOOCOMMERCE SHOP PAGE
   ═══════════════════════════════════════ */
.woocommerce-page .main-content {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--off-white);
}

.shop-hero {
  background: var(--black);
  padding: 80px 0 60px;
  text-align: center;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.shop-hero p {
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  font-size: 0.9375rem;
}

.woocommerce-notices-wrapper { padding: 0 48px; max-width: 1280px; margin: 0 auto; }

/* ── Shop toolbar: result count + sort ── */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none !important;
  margin: 0 !important;
}

.woocommerce .woocommerce-result-count {
  font-size: 0.8125rem;
  color: var(--mid);
  letter-spacing: 0.03em;
}

.woocommerce .woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--light);
  border-radius: 60px;
  padding: 8px 36px 8px 16px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s;
}
.woocommerce .woocommerce-ordering select.orderby:hover { border-color: var(--gold); }
.woocommerce .woocommerce-ordering select.orderby:focus { outline: none; border-color: var(--gold); }

/* Toolbar wrapper — flex row, space between */
.woocommerce-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px 20px;
  border-bottom: 1px solid var(--light);
}

/* Hide the empty notices wrapper so it doesn't become a phantom flex child */
.woocommerce-shop-toolbar .woocommerce-notices-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .woocommerce-shop-toolbar { padding: 20px 24px 16px; }
}

/* Hide WooCommerce's default "Shop" h1 — we use our own banner */
.woocommerce-products-header { display: none !important; }
.woocommerce-page h1.page-title { display: none !important; }

/* ── Shop Collection Banner ── */
.shop-collection-banner {
  background: var(--black);
  padding: 80px 48px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.shop-collection-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.shop-collection-banner__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.shop-collection-banner__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.shop-collection-banner__sub {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* ── Nav: always dark on non-hero pages (shop, product, etc.) ── */
.woocommerce-page .site-nav,
.single-product .site-nav,
.page:not(.home) .site-nav {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.woocommerce-page .site-nav .logo-white,
.single-product .site-nav .logo-white,
.page:not(.home) .site-nav .logo-white { display: block; }

.woocommerce-page .site-nav .logo-dark,
.single-product .site-nav .logo-dark,
.page:not(.home) .site-nav .logo-dark  { display: none; }

.woocommerce-page .site-nav__list a,
.single-product .site-nav__list a,
.page:not(.home) .site-nav__list a { color: rgba(255,255,255,0.88); }

.woocommerce-page .site-nav__cart,
.single-product .site-nav__cart,
.page:not(.home) .site-nav__cart { color: rgba(255,255,255,0.88); }

.woocommerce-page .site-nav__mobile-toggle span,
.single-product .site-nav__mobile-toggle span,
.page:not(.home) .site-nav__mobile-toggle span { background: var(--white); }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  margin: 0 auto !important;
  padding: 32px 48px 80px !important;
  max-width: 1280px !important;
  list-style: none !important;
}

@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; padding: 4px 24px 60px !important; }
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); }

.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 3/4 !important;
  object-fit: cover !important;
  object-position: center top !important;
  margin: 0 !important;
  transition: transform 0.7s var(--ease);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 20px 24px 4px !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
  color: var(--dark) !important;
}

.woocommerce ul.products li.product .price {
  padding: 0 24px 8px !important;
  font-size: 0.9375rem !important;
  color: var(--mid) !important;
  font-family: var(--font-body) !important;
}

.woocommerce ul.products li.product .button {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  padding: 14px 24px !important;
  margin: 0 24px 24px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  width: calc(100% - 48px) !important;
  text-align: center !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--gold) !important; color: var(--black) !important; }

/* WC pagination */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  padding: 40px 0 80px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 4px;
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--light) !important;
  font-size: 0.875rem !important;
  color: var(--dark) !important;
  transition: all 0.2s !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--dark) !important; border-color: var(--dark) !important; color: var(--white) !important; }

/* WC breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  padding: 20px 48px 0 !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  font-size: 0.8125rem !important;
  color: var(--mid) !important;
}

/* Single product */
.woocommerce div.product {
  max-width: 1280px;
  margin: 60px auto 0 !important;
  padding: 0 48px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}

@media (max-width: 768px) {
  .woocommerce div.product {
    grid-template-columns: 1fr !important;
    padding: 0 24px !important;
    gap: 40px !important;
  }
}

.woocommerce div.product .woocommerce-product-gallery {
  position: sticky !important;
  top: calc(var(--nav-height) + 20px) !important;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border-radius: var(--r-sm);
}

.woocommerce div.product .entry-summary {
  padding-top: 20px !important;
}

.woocommerce div.product .entry-summary h1 {
  font-family: var(--font-display) !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
  color: var(--dark) !important;
}

.woocommerce div.product .entry-summary .price {
  font-size: 1.5rem !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

.woocommerce div.product form.cart button[type="submit"] {
  background: var(--black) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 60px !important;
  padding: 16px 48px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s, transform 0.2s !important;
  cursor: pointer !important;
}
.woocommerce div.product form.cart button[type="submit"]:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  transform: translateY(-2px) !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .site-nav__inner { padding: 0 24px; }
  .site-nav__menu { display: none; }
  .site-nav__mobile-toggle { display: flex; }

  .hero__slide-nav { display: none; }
  .hero__scroll-indicator { display: none; }

  .brand-story { grid-template-columns: 1fr; }

  .editorial__grid { grid-template-columns: 1fr; height: auto; }
  .editorial__main { height: 75vw; }
  .editorial__stack { grid-template-rows: 1fr 1fr; height: 75vw; }

  .collection-feature__title { font-size: clamp(3rem, 12vw, 6rem); }

  .lookbook__masonry { grid-template-columns: repeat(2, 1fr); }
  .lookbook__item--tall { grid-row: span 1; }

  .site-footer__top .container { padding-top: 60px; padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 15vw; }
  .hero__cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ═══════════════════════════════════════
   UTILS
   ═══════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
