/* ==========================================
   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-mark {
  font-size: 1.2rem;
  color: var(--accent);
}
.nav__logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.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: column;
  justify-content: stretch;
}

/* 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 — floating over the grid */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 72px 0 0 56px;
  max-width: 460px;
  /* 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;
}
.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);
}

/* 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;
}
.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::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__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  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;
  z-index: 2;
  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-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.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;
}

/* 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: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.collection-card {
  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__caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}
.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;
}
.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__name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.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; }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero__overlay {
    position: relative;
    top: auto; left: auto;
    padding: 56px 32px 0;
    max-width: 100%;
    animation-delay: 0.05s;
  }
  .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;
  }
}

@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__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: 1fr 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; }
  .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;
}