:root {
  --cream: #F7F3ED;
  --charcoal: #18181B;
  --sienna: #C1440E;
  --sienna-light: #E8602A;
  --warm-gray: #6B6560;
  --light-cream: #FAF8F4;
  --border: #E0DBD4;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left { max-width: 540px; }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}

.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-tagline em {
  font-style: italic;
  color: var(--sienna);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* Hero Art */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-art {
  position: relative;
  width: 380px;
  height: 420px;
}

.art-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  width: 220px; height: 220px;
  background: rgba(193,68,14,0.12);
  top: 20px; right: 40px;
}

.orb-2 {
  width: 160px; height: 160px;
  background: rgba(193,68,14,0.08);
  bottom: 60px; left: 20px;
}

.orb-3 {
  width: 100px; height: 100px;
  background: rgba(24,24,27,0.06);
  top: 140px; left: 100px;
}

/* T-shirt illustration */
.art-shirt {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 160px;
}

.shirt-body {
  width: 90px; height: 110px;
  background: var(--charcoal);
  margin: 0 auto;
  border-radius: 4px 4px 2px 2px;
}

.shirt-sleeve-left {
  position: absolute;
  top: 10px; left: 0;
  width: 50px; height: 55px;
  background: var(--charcoal);
  border-radius: 3px;
  transform: rotate(-25deg);
}

.shirt-sleeve-right {
  position: absolute;
  top: 10px; right: 0;
  width: 50px; height: 55px;
  background: var(--charcoal);
  border-radius: 3px;
  transform: rotate(25deg);
}

.shirt-collar {
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 14px;
  background: var(--sienna);
  border-radius: 0 0 12px 12px;
}

.shirt-print {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shirt-print span {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sienna);
  opacity: 0.7;
}

/* Tote bag illustration */
.art-tote {
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 100px;
}

.tote-body {
  width: 80px; height: 90px;
  background: var(--cream);
  border: 2px solid var(--charcoal);
  margin: 0 auto;
  border-radius: 2px 2px 4px 4px;
}

.tote-strap-left {
  position: absolute;
  top: 0; left: 15px;
  width: 12px; height: 50px;
  border: 2px solid var(--charcoal);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.tote-strap-right {
  position: absolute;
  top: 0; right: 15px;
  width: 12px; height: 50px;
  border: 2px solid var(--charcoal);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--warm-gray), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── COLLECTIONS ─────────────────────────── */
.collections {
  padding: 8rem 5vw;
  background: var(--light-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24,24,27,0.1);
}

.card-visual {
  height: 240px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card-content {
  padding: 1.75rem;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 500;
}

/* Tops illustration */
.tops-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tops-tee {
  position: relative;
  width: 120px;
}

.tee-body {
  width: 70px; height: 85px;
  background: var(--cream);
  margin: 0 auto;
  border-radius: 4px;
}

.tee-left-sleeve {
  position: absolute;
  top: 12px; left: 0;
  width: 35px; height: 40px;
  background: var(--cream);
  border-radius: 3px;
  transform: rotate(-30deg);
  transform-origin: top right;
}

.tee-right-sleeve {
  position: absolute;
  top: 12px; right: 0;
  width: 35px; height: 40px;
  background: var(--cream);
  border-radius: 3px;
  transform: rotate(30deg);
  transform-origin: top left;
}

.tee-collar {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 10px;
  background: var(--sienna);
  border-radius: 0 0 10px 10px;
}

.tee-graphic {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--sienna);
  width: 36px; height: 36px;
}

/* Bags illustration */
.bags-illustration {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  padding-left: 1rem;
}

.bag-tote {
  position: relative;
  width: 80px;
}

.bag-body {
  width: 65px; height: 75px;
  background: var(--cream);
  border: 1.5px solid var(--cream);
  border-radius: 2px;
}

.bag-strap-l, .bag-strap-r {
  position: absolute;
  top: -25px;
  width: 8px; height: 30px;
  border: 1.5px solid var(--cream);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.bag-strap-l { left: 10px; }
.bag-strap-r { right: 10px; }

.bag-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sienna);
}

.bag-cap {
  width: 55px;
  margin-bottom: 5px;
}

.cap-dome {
  width: 55px; height: 35px;
  background: var(--sienna);
  border-radius: 50% 50% 0 0;
}

.cap-brim {
  width: 75px; height: 10px;
  background: var(--cream);
  border-radius: 3px;
  margin-left: -10px;
}

/* Home illustration */
.home-illustration {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.home-mug {
  position: relative;
  width: 60px;
}

.mug-body {
  width: 50px; height: 55px;
  background: var(--cream);
  border-radius: 4px 4px 6px 6px;
}

.mug-handle {
  position: absolute;
  top: 8px; right: -14px;
  width: 16px; height: 30px;
  border: 2px solid var(--cream);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.mug-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sienna);
}

.home-postcard {
  width: 45px;
}

.postcard-body {
  width: 45px; height: 60px;
  background: rgba(247,243,237,0.3);
  border: 1.5px solid var(--cream);
  border-radius: 2px;
  opacity: 0.5;
}

/* ── MANIFESTO ─────────────────────────────── */
.manifesto {
  padding: 8rem 5vw;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--sienna);
  margin-bottom: 2rem;
  display: block;
}

.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.manifesto-highlight {
  color: var(--sienna-light);
  opacity: 1;
}

.manifesto-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: rgba(247,243,237,0.2);
}

.rule-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sienna);
  white-space: nowrap;
}

/* ── CLOSING ─────────────────────────────── */
.closing {
  padding: 8rem 5vw;
  background: var(--cream);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.closing-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar-icon {
  width: 48px; height: 48px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cream);
}

.pillar h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  padding: 4rem 5vw;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--sienna);
  font-style: italic;
}

.footer-meta p {
  font-size: 0.85rem;
  color: rgba(247,243,237,0.5);
  line-height: 1.6;
  max-width: 360px;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.75rem !important;
  color: rgba(247,243,237,0.3) !important;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .collection-grid { grid-template-columns: 1fr; }
  .closing-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 6vw 3rem; }
  .collections, .manifesto, .closing { padding: 5rem 6vw; }
  .manifesto-rule { flex-direction: column; gap: 0.5rem; }
  .rule-line { display: none; }
}