/* ==========================================
   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: 500;
  font-size: 1.1rem;
}
.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: #0d0d11;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

/* Radial glow highlight behind grid */
.hero__glow {
  position: absolute;
  top: 15%;
  right: 4%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(201,150,58,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle grain texture overlay */
.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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Text overlay — top-left of the grid */
.hero__overlay {
  position: relative;
  z-index: 10;
  padding: 80px 64px 0;
  max-width: 560px;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #C9963A);
  margin-bottom: 18px;
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 0.76rem;
  color: rgba(250,247,242,0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 36px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent, #C9963A);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 14px 28px;
  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.38);
}
.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);
}

/* Editorial product grid */
.hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.85fr 1.3fr 0.72fr;
  grid-template-rows: auto auto auto auto;
  gap: 8px;
  padding: 44px 48px 80px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  align-items: end;
}

.hero__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #18181f;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.hero__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__item:hover .hero__img {
  transform: scale(1.05);
}
.hero__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  color: rgba(250,247,242,0.9);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: none;
}

/* XL: Self-Worth tee — hero anchor, tall portrait */
.hero__item--xl {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.hero__item--xl .hero__img {
  aspect-ratio: 3 / 4;
}

/* LG: F.I.C.E. hoodie — sits offset below its grid row */
.hero__item--lg {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 28px;
}
.hero__item--lg .hero__img {
  aspect-ratio: 4 / 5;
}

/* SM: Phone case — small, pulled up for stagger */
.hero__item--sm {
  grid-column: 3;
  grid-row: 1;
  margin-top: -32px;
  margin-bottom: auto;
}

/* Wide: Tote bag — full-width banner */
.hero__item--wide {
  grid-column: 1 / -1;
  grid-row: 3;
}
.hero__item--wide .hero__img {
  aspect-ratio: 22 / 7;
}

/* Med: Mugs row — wide horizontal format */
.hero__item--med {
  grid-column: 2 / span 2;
  grid-row: 4;
}
.hero__item--med .hero__img {
  aspect-ratio: 22 / 9;
}

/* Accent: Canvas gold border */
.hero__item--accent {
  border: 1px solid rgba(201, 150, 58, 0.28);
}

/* Vertical offset utilities */
.hero__item--offset-down {
  margin-top: 28px;
}
.hero__item--pull-up {
  margin-top: -32px;
  margin-bottom: auto;
}

/* 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.1rem;
  font-weight: 500;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.6;
}
.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 */
@media (max-width: 1100px) {
  .hero__overlay { padding: 64px 40px 0; }
  .hero__grid {
    padding: 40px 40px 72px;
    grid-template-columns: 1.6fr 1.1fr 0.68fr;
  }
}

@media (max-width: 768px) {
  .hero__overlay {
    padding: 52px 24px 0;
    max-width: 100%;
  }
  .hero__headline {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }
  .hero__grid {
    padding: 36px 24px 64px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .hero__item--xl {
    grid-column: span 2;
    grid-row: 1;
  }
  .hero__item--xl .hero__img {
    aspect-ratio: 1 / 1;
  }
  .hero__item--lg {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .hero__item--sm {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
  .hero__item--wide {
    grid-column: span 2;
    grid-row: 3;
  }
  .hero__item--wide .hero__img {
    aspect-ratio: 4 / 3;
  }
  .hero__item--med {
    grid-column: span 2;
    grid-row: 4;
    margin-top: 0;
  }
  .hero__item--med .hero__img {
    aspect-ratio: 4 / 3;
  }
  .hero__item--offset-down,
  .hero__item--pull-up {
    margin-top: 0;
    margin-bottom: 0;
  }
  .craft__inner { grid-template-columns: 1fr; gap: 40px; }
  .collections__grid { grid-template-columns: 1fr 1fr; }
  .showcase__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__overlay { padding: 44px 20px 0; }
  .hero__grid { padding: 28px 20px 56px; gap: 6px; }
  .hero__item--xl .hero__img { aspect-ratio: 3 / 4; }
  .hero__cta { padding: 12px 24px; font-size: 0.78rem; }
  .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; }
  .nav__tagline { display: none; }
}