/* ==========================================
   DesignsByDJBlove — Custom Landing Page
   Warm editorial aesthetic
   ========================================== */

:root {
  --bg: #FAF7F2;
  --bg-warm: #F5EFE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C9963A;
  --accent-light: #E8C97A;
  --sage: #8B9E7C;
  --sage-dark: #6B7E5C;
  --border: #E0D9CF;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
.nav--dark {
  background: #0D0D0D;
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav--dark .nav__logo {
  color: #FAF7F2;
}
.nav__logo-img {
  height: 32px;
  width: auto;
}
.nav__logo-mark {
  font-size: 1.2rem;
  color: var(--accent);
}
.nav__logo-text {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  font-variation-settings: 'opsz' 24, 'wght' 600;
}
.nav__tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0D0D0D;
  background: #FAF7F2;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ================================================
   HERO — Option B: Modern Design Showcase
   Full-bleed dark editorial product grid
   ================================================ */
.hero {
  position: relative;
  background: #090910;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 2%;
}

/* Radial glow — warm accent behind grid */
.hero__glow {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,150,58,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Text overlay — center flex column */
.hero__overlay {
  position: relative;
  flex: 0 1 400px;
  max-width: 400px;
  padding: 0;
  z-index: 10;
  /* Fade + slide in on load */
  animation: heroFadeIn 0.7s ease-out 0.1s both;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #C9963A);
  margin-bottom: 16px;
}
/* Urgency banner — sits above the eyebrow */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #E63946;            /* warm red, high contrast on #090910 hero */
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.35);
}
.hero__urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-block;
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 0.72rem;
  color: rgba(250,247,242,0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 32px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent, #C9963A);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(201,150,58,0.35);
}
.hero__cta:hover {
  background: #e8a83a;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,150,58,0.5);
}
.hero__cta svg {
  transition: transform 0.25s ease;
}
.hero__cta:hover svg {
  transform: translateX(4px);
}

/* Trust signals — directly below CTA */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  animation: heroFadeIn 0.7s ease-out 0.5s both;
}
.hero__trust-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent, #C9963A);
}
.hero__trust-text {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.55);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__logo {
  position: relative;
  flex: 0 0 300px;
  max-width: 300px;
  width: 300px;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

/* Product image collage — left flex column */
.hero__collage {
  position: relative;
  flex: 0 0 280px;
  max-width: 280px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  pointer-events: none;
}
.hero__collage-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Entrance animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes itemReveal {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================
   EDITORIAL PRODUCT GRID
   5-column asymmetric layout for visual dynamism
   ================================================ */
.hero__grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 220px 200px 1fr 180px 180px;
  grid-template-rows: 340px 160px 260px;
  gap: 0;
  padding: 0 40px 64px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: end;
}

/* Individual product cards */
.hero__item {
  position: relative;
  overflow: hidden;
  background: #16161e;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  border-radius: 14px;
  animation: itemReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.hero__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,0.7) 100%
  );
  pointer-events: none;
}
.hero__item:hover::after {
  opacity: 1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__item:hover .hero__img {
  transform: scale(1.07);
}
.hero__item-text {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__item-label {
  display: block;
  padding: 20px 18px 18px;
  color: rgba(250,247,242,0.95);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Self-Worth Tee — col 1, tall anchor */
.hero__item--tee {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-right: -1px;
  animation-delay: 0.2s;
}

/* F.I.C.E. Hoodie — col 2, shorter, offset top */
.hero__item--hoodie {
  grid-column: 2;
  grid-row: 1;
  margin-left: -1px;
  margin-right: -1px;
  animation-delay: 0.35s;
}

/* Phone Case — col 4, floating, offset down */
.hero__item--phone {
  grid-column: 4;
  grid-row: 1;
  align-self: center;
  margin-bottom: 40px;
  animation-delay: 0.5s;
}

/* Tote — full width row 2 */
.hero__item--tote {
  grid-column: 1 / 5;
  grid-row: 2;
  margin-top: -2px;
  animation-delay: 0.6s;
}

/* Mugs row — cols 1 and 2, row 3 */
.hero__item--mug {
  grid-column: span 1;
  grid-row: 3;
  margin-right: -1px;
}
.hero__item--mug:nth-child(5) { animation-delay: 0.75s; }
.hero__item--mug:nth-child(6) { animation-delay: 0.85s; }

/* Canvas — cols 3-5, row 3 */
.hero__item--canvas {
  grid-column: 3 / 6;
  grid-row: 3;
  border: 1.5px solid rgba(201,150,58,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), inset 0 0 0 1.5px rgba(201,150,58,0.12);
  animation-delay: 0.9s;
}

/* SOCIAL PROOF BANNER */
.social-proof {
  background: var(--accent, #C9963A);
  padding: 18px 24px;
}
.social-proof__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0D0D0D;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-proof__cta:hover {
  background: var(--fg);
  color: #FAF7F2;
  transform: translateY(-1px);
}
.social-proof__cta svg {
  transition: transform 0.2s ease;
}
.social-proof__cta:hover svg {
  transform: translateX(3px);
}
.social-proof__review-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.social-proof__review-text {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.social-proof__review-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.social-proof__review-btn:hover {
  opacity: 0.8;
}

/* SOCIAL PROOF — Enhanced */
.social-proof {
  background: #0D0D0D;
  padding: 48px 24px;
  position: relative;
}
.social-proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,150,58,0.4), transparent);
}
.sp__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sp__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #FAF7F2;
  transition: opacity 0.2s;
}
.sp__shop-link:hover { opacity: 0.75; }
.sp__shop-logo {
  height: 28px;
  width: auto;
  display: block;
}
.sp__etsy-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}
.sp__rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent, #C9963A);
}
.sp__rating-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FAF7F2;
  letter-spacing: 0.02em;
}
.sp__divider {
  color: rgba(250,247,242,0.3);
  font-size: 0.8rem;
}
.sp__order-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250,247,242,0.6);
  letter-spacing: 0.02em;
}
.sp__reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 36px;
}
.sp__review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sp__review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,150,58,0.25);
}
.sp__review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sp__review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent, #C9963A);
}
.sp__review-author {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.04em;
}
.sp__review-text {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.8);
  line-height: 1.65;
}
.sp__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sp__review-prompt {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.5);
}
.sp__review-link {
  color: rgba(201,150,58,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.sp__review-link:hover { color: var(--accent, #C9963A); }

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 72px 0;
}
.manifesto__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.manifesto__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 36px;
}
.manifesto__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--bg);
}
.manifesto__body {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: var(--bg);
}
.about__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.about__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.about__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 28px;
}
.about__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.about__body {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.8;
}
.about__body + .about__body {
  margin-top: 14px;
}

/* COLLECTIONS */
.collections {
  padding: 80px 0;
  background: var(--bg-warm);
}
.collections__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.collections__header {
  text-align: center;
  margin-bottom: 56px;
}
.collections__title {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.collections__sub {
  color: var(--fg-muted);
  font-size: 1rem;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.collection-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.collection-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.collection-card__desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.collection-card__tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.collection-card__tags li {
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-left: 14px;
  position: relative;
}
.collection-card__tags li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* CRAFT */
.craft {
  padding: 80px 0;
  background: var(--bg);
}
.craft__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.craft__img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.craft__img--fallback { filter: grayscale(0.4) opacity(0.85); }
.craft__caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}
.craft__icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
  text-align: center;
  line-height: 1;
  height: 100%;
  min-height: 280px;
}
.craft__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.craft__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.craft__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.craft__stats {
  display: flex;
  gap: 40px;
}
.craft__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.craft__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.craft__stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SHOWCASE */
.showcase {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.showcase__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.showcase__header {
  text-align: center;
  margin-bottom: 56px;
}
.showcase__title {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.showcase__sub {
  color: var(--fg-muted);
  font-size: 1rem;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.showcase__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 160px;
}
.showcase__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.showcase__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.showcase__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.showcase__name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.showcase__desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.showcase__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.showcase__cta:hover { text-decoration: underline; }
.showcase__footer {
  text-align: center;
}
.showcase__shop-btn {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.showcase__shop-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* CLOSING */
.closing {
  padding: 80px 0;
  background: var(--bg-warm);
}
.closing__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.closing__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}
.closing__statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing__sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
}
.closing__brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.closing__brand-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.closing__brand {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}

/* FOOTER */
.footer {
  padding: 48px 0 32px;
  background: var(--fg);
  color: var(--bg);
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__logo {
  color: var(--accent);
  font-size: 1.2rem;
}
.footer__logo-img {
  height: 32px;
  width: auto;
}
.footer__name {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  font-variation-settings: 'opsz' 24, 'wght' 600;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.6;
}
.footer__social {
  padding: 32px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer__social-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 16px;
}
.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.08);
  color: #FAF7F2;
  border-color: rgba(255,255,255,0.25);
}
.footer__social-link--placeholder {
  opacity: 0.6;
}
.footer__social-link--more {
  opacity: 0.45;
}
.footer__social-link svg {
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
}
.footer__link {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
}

/* RESPONSIVE */
/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1200px) {
  .hero__grid {
    grid-template-columns: 180px 160px 1fr 140px 140px;
    grid-template-rows: 300px 140px 230px;
    padding: 0 32px 56px;
  }
  .hero__item--phone { margin-bottom: 28px; }
  .hero__collage {
    flex: 0 0 220px;
    max-width: 220px;
    width: 220px;
  }
}

@media (max-width: 960px) {
  .hero__collage {
    display: none;
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero__overlay {
    position: relative;
    top: auto; left: auto;
    padding: 56px 32px 0;
    max-width: 100%;
    flex: none;
    animation-delay: 0.05s;
  }
  .hero__logo {
    flex: none;
    width: 240px;
    max-width: 240px;
    margin: 24px auto 0;
  }
  .hero__headline {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }
  .hero__glow { display: none; }
  .hero__grid {
    position: relative;
    bottom: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px auto auto;
    gap: 8px;
    padding: 32px 24px 56px;
    align-items: start;
  }
  .hero__item--tee {
    grid-column: span 2;
    grid-row: 1;
    margin-right: 0;
  }
  .hero__item--hoodie {
    grid-column: span 2;
    grid-row: 1;
    margin-left: 0;
    margin-right: 0;
  }
  .hero__item--phone {
    grid-column: span 1;
    grid-row: 2;
    margin-bottom: 0;
    margin-top: 0;
  }
  .hero__item--tote {
    grid-column: span 3;
    grid-row: 2;
    margin-top: -2px;
  }
  .hero__item--mug {
    grid-row: 3;
    margin-right: 0;
  }
  .hero__item--canvas {
    grid-column: span 2;
    grid-row: 3;
  }
  .hero__logo { display: none; }
}

@media (max-width: 640px) {
  .hero__overlay { padding: 48px 20px 0; }
  .hero__headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero__cta { padding: 12px 22px; font-size: 0.75rem; }
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 7px;
    padding: 28px 16px 48px;
  }
  .hero__item {
    border-radius: 12px;
  }
  .hero__logo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 240px;
    margin: 24px auto 0;
    display: block;
  }
  .hero__item--tee  { grid-column: span 2; grid-row: 1; }
  .hero__item--hoodie { grid-column: span 2; grid-row: 2; }
  .hero__item--phone { grid-column: span 1; grid-row: 3; }
  .hero__item--tote { grid-column: span 2; grid-row: 4; margin-top: 0; }
  .hero__item--mug  { grid-column: span 1; grid-row: 5; }
  .hero__item--canvas { grid-column: span 1; grid-row: 5; }
  .hero__item--mug + .hero__item--canvas { grid-column: span 1; }
  .craft__inner { grid-template-columns: 1fr; gap: 40px; }
  .collections__grid { grid-template-columns: repeat(3, 1fr); }
  .showcase__grid { grid-template-columns: 1fr 1fr; }
}

/* SOCIAL PROOF RESPONSIVE */
@media (max-width: 768px) {
  .sp__reviews {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .sp__trust-bar { gap: 14px; }
}
@media (max-width: 540px) {
  .sp__trust-bar { flex-direction: column; gap: 10px; }
  .social-proof { padding: 36px 20px; }
  .sp__cta-row { flex-direction: column; gap: 16px; }
  .sp__review-card { padding: 18px 16px; }
}

@media (max-width: 420px) {
  .hero__overlay { padding: 40px 16px 0; }
  .hero__grid { padding: 24px 12px 40px; gap: 5px; }
  .manifesto, .collections, .craft, .closing { padding: 56px 0; }
  .about { padding: 56px 0; }
  .about__card { padding: 28px 20px; }
  .collections__grid { grid-template-columns: 1fr; }
  .craft__stats { gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* EMAIL CAPTURE MODAL */
.email-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-modal[hidden] { display: none; }
.email-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 6, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.email-modal__panel {
  position: relative;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px 36px;
  max-width: 420px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.email-modal--visible .email-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.email-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--fg-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.email-modal__close:hover { color: var(--fg); }
.email-modal__icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.email-modal__title {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.email-modal__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.email-modal__form { display: flex; flex-direction: column; gap: 12px; }
.email-modal__form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.email-modal__form input[type="email"]::placeholder { color: #b5aaa0; }
.email-modal__form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.18);
}
.email-modal__btn {
  padding: 14px;
  background: var(--fg);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.email-modal__btn:hover:not(:disabled) { background: #333; transform: translateY(-1px); }
.email-modal__btn:active:not(:disabled) { transform: translateY(0); }
.email-modal__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.email-modal__fine-print {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #aaa;
}
.email-modal__success {
  margin-top: 16px;
  padding: 14px;
  background: #eef4ea;
  border: 1px solid #b8d8b0;
  border-radius: 8px;
  color: #4a7c3f;
  font-size: 0.9rem;
}
.email-modal__error {
  margin-top: 12px;
  padding: 12px;
  background: #fdf0ef;
  border: 1px solid #e8c4c0;
  border-radius: 8px;
  color: #9c3c32;
  font-size: 0.88rem;
}

/* SPOTLIGHT */
.spotlight {
  background: var(--bg-warm);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.spotlight__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.spotlight__header {
  text-align: center;
  margin-bottom: 40px;
}
.spotlight__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.spotlight__title {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
}
.spotlight__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  max-width: 860px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: fadeSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.spotlight__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.spotlight__img-wrap {
  flex: 0 0 42%;
  overflow: hidden;
}
.spotlight__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.spotlight__card:hover .spotlight__img {
  transform: scale(1.04);
}
.spotlight__info {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.spotlight__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  width: fit-content;
}
.spotlight__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.spotlight__tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.spotlight__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201, 150, 58, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
  margin-top: 6px;
}
.spotlight__cta:hover {
  background: #e8a83a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 150, 58, 0.42);
}
.spotlight__cta svg {
  transition: transform 0.25s ease;
}
.spotlight__cta:hover svg {
  transform: translateX(4px);
}
.spotlight__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.spotlight__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}
.spotlight__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.spotlight__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.spotlight__arrow svg {
  width: 18px;
  height: 18px;
}
.spotlight__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.spotlight__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.spotlight__dot:hover {
  border-color: var(--accent);
  transform: scale(1.15);
}
.spotlight__dot--active {
  background: var(--accent);
  border-color: var(--accent);
}
.spotlight__dot--active:hover {
  transform: scale(1.2);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .spotlight { padding: 56px 0; }
  .spotlight__title { font-size: 2rem; }
  .spotlight__card {
    flex-direction: column;
    max-width: 480px;
  }
  .spotlight__img-wrap { flex: none; }
  .spotlight__img {
    height: 220px;
  }
  .spotlight__info {
    padding: 28px 24px;
    gap: 8px;
  }
  .spotlight__name { font-size: 1.2rem; }
  .spotlight__arrow { width: 40px; height: 40px; }
}

/* MONTHLY PRODUCT */
.monthly-product {
  padding: 64px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.monthly-product__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.monthly-product__header {
  text-align: center;
  margin-bottom: 48px;
}
.monthly-product__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.monthly-product__title {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
}
.monthly-product__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.monthly-product__img {
  max-width: 340px;
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.monthly-product__img:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.monthly-product__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.monthly-product__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
}
.monthly-product__name {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
}
.monthly-product__tagline {
  font-size: 0.92rem;
  color: var(--fg-muted);
  text-align: center;
  max-width: 360px;
  line-height: 1.65;
}
.monthly-product__shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201, 150, 58, 0.30);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 4px;
}
.monthly-product__shop-btn:hover {
  background: #e8a83a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 150, 58, 0.45);
}
.monthly-product__shop-btn svg {
  transition: transform 0.25s ease;
}
.monthly-product__shop-btn:hover svg {
  transform: translateX(4px);
}

/* BRAND NAME — fix "J" kerning */
.nav__logo-text,
.footer__name {
  font-kerning: normal;
  letter-spacing: 0.01em;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: var(--bg-warm);
}
.faq__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.faq__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  color: var(--fg);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
}
.faq__question:hover {
  color: var(--accent);
}
.faq__icon {
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}
.faq__icon--open {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 22px 0;
  color: var(--fg-muted);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq__answer[hidden] {
  display: none;
}

/* NEWSLETTER */
.newsletter {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.newsletter__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.newsletter__body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input[type="email"] {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter__form input[type="email"]::placeholder { color: #b5aaa0; }
.newsletter__form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.18);
}
.newsletter__btn {
  padding: 14px 28px;
  background: var(--fg);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.newsletter__btn:hover:not(:disabled) { background: #333; transform: translateY(-1px); }
.newsletter__btn:active:not(:disabled) { transform: translateY(0); }
.newsletter__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
.newsletter__status--success {
  background: #eef4ea;
  border: 1px solid #b8d8b0;
  color: #4a7c3f;
}
.newsletter__status--error {
  background: #fdf0ef;
  border: 1px solid #e8c4c0;
  color: #9c3c32;
}

@media (max-width: 640px) {
  .newsletter__form { flex-direction: column; align-items: stretch; }
  .newsletter__form input[type="email"] { max-width: 100%; flex: 1 1 auto; }
  .newsletter__btn { width: 100%; }
  .monthly-product { padding: 48px 0 56px; }
  .monthly-product__title { font-size: 1.8rem; }
  .monthly-product__img { max-width: 240px; }
  .monthly-product__name { font-size: 1.3rem; }
  .monthly-product__shop-btn { padding: 11px 22px; font-size: 0.78rem; }
}

/* ==========================================
   PDP — Product Detail Page
   Reuses design tokens from the top of the file
   ========================================== */
.pdp {
  background: var(--bg);
  padding: 60px 0 80px;
}
.pdp__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.pdp__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.pdp__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp__main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 239, 230, 1) 0%, var(--bg) 70%),
    var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.pdp__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.pdp__thumb-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp__thumb {
  width: 80px;
  height: 80px;
  padding: 0;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp__thumb:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.pdp__thumb[aria-current="true"] {
  outline-color: var(--accent);
  border-color: var(--accent);
}
.pdp__thumb:focus-visible {
  outline-color: var(--accent);
}

.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.pdp__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  width: fit-content;
}
.pdp__name {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.pdp__price {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--fg);
}
.pdp__description {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 4px 0 8px;
}
.pdp__cart-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(201, 150, 58, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
}
.pdp__cart-btn:hover {
  background: #e8a83a;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 150, 58, 0.42);
}
.pdp__fine-print {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pdp__story {
  margin-top: 28px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--accent);
}
.pdp__story-eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pdp__story-body {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--fg);
}

.pdp__note {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--fg);
}
.pdp__note-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.pdp__note-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pdp__note-help {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pdp__note-input {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  background: var(--white);
  color: var(--fg);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pdp__note-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}
.pdp__note-input:focus {
  outline: none;
  border-color: var(--accent, #C9963A);
  box-shadow: 0 0 0 2px rgba(201, 150, 58, 0.2);
}
.pdp__note-count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  align-self: flex-end;
}

.pdp__delivery {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--fg);
}
.pdp__delivery-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.pdp__delivery-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pdp__delivery-help {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pdp__delivery-input {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--white);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pdp__delivery-input:focus {
  outline: none;
  border-color: var(--accent, #C9963A);
  box-shadow: 0 0 0 2px rgba(201, 150, 58, 0.2);
}

.pdp__not-found {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.pdp__not-found .pdp__description a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

@media (max-width: 768px) {
  .pdp { padding: 32px 0 56px; }
  .pdp__inner { padding: 32px 20px 56px; }
  .pdp__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp__cart-btn { width: 100%; }
  .pdp__note-input { width: 100%; }
  .pdp__name { font-size: 1.7rem; }
  .pdp__price { font-size: 1.5rem; }
  .pdp__story { margin-top: 20px; }
  .pdp__story-body { font-size: 1rem; }
}

@media (max-width: 420px) {
  .pdp__thumb { width: 64px; height: 64px; }
}

/* ==========================================
   Mentor note — confirmation page
   ========================================== */
.pdp-note-confirm {
  background: var(--bg);
  padding: 72px 0 96px;
}
.pdp-note-confirm__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.pdp-note-confirm__eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #C9963A);
  margin-bottom: 14px;
}
.pdp-note-confirm__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.pdp-note-confirm__lede {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pdp-note-confirm__quote {
  margin: 0 auto 36px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--accent, #C9963A);
  text-align: left;
}
.pdp-note-confirm__quote-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pdp-note-confirm__quote-body {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--fg);
  margin: 0;
  white-space: pre-wrap;
}
.pdp-note-confirm__back {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #C9963A);
  text-decoration: none;
  border-bottom: 1px solid var(--accent, #C9963A);
  padding-bottom: 2px;
}
.pdp-note-confirm__back:hover {
  color: var(--accent-light, #E8C97A);
  border-bottom-color: var(--accent-light, #E8C97A);
}

/* ==========================================
   Catalog — Product Grid Index Page
   ========================================== */
.catalog {
  background: var(--bg);
  padding: 72px 0;
}
.catalog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.catalog__hero {
  text-align: center;
  margin-bottom: 56px;
}
.catalog__eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.catalog__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.catalog__sub {
  color: var(--fg-muted);
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}
.catalog__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
}
.catalog__card-wrap {
  display: block;
}
.catalog__card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.catalog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.10);
}
.catalog__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.catalog__img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.catalog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog__info {
  padding: 18px 20px 22px;
}
.catalog__tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.catalog__name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
  line-height: 1.25;
  margin-top: 8px;
}
.catalog__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin-top: 4px;
  font-size: 0.95rem;
}
.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  justify-content: center;
}
.catalog__chip {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.catalog__chip:hover {
  border-color: var(--accent, #C9963A);
  color: var(--accent, #C9963A);
}
.catalog__chip:focus-visible {
  outline: 2px solid var(--accent, #C9963A);
  outline-offset: 2px;
}
.catalog__chip[aria-pressed="true"] {
  background: var(--accent, #C9963A);
  border-color: var(--accent, #C9963A);
  color: var(--white);
}

@media (max-width: 900px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .catalog { padding: 48px 0; }
  .catalog__inner { padding: 0 20px; }
  .catalog__hero { margin-bottom: 36px; }
  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .catalog__filters {
    gap: 8px;
    margin-bottom: 22px;
    justify-content: flex-start;
  }
  .catalog__chip {
    padding: 8px 14px;
    font-size: 0.72rem;
  }
}

