:root {
  --bg: #F5F0E8;
  --bg-warm: #EDE7D9;
  --fg: #1A1814;
  --fg-muted: #6B6558;
  --accent: #C8561E;
  --accent-warm: #D4845A;
  --dark: #1A1814;
  --card-bg: #E8E1D4;
  --card-dark: #2C2820;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  right: -10%;
  top: 5%;
  width: 55%;
  height: 90%;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #D4C9B8 60%, var(--accent-warm) 100%);
  border-radius: 0 0 0 60%;
  opacity: 0.7;
}

.hero-bg-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.9' 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");
  opacity: 0.5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 36ch;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 6rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-product-strip {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-end;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-img-placeholder {
  border-radius: 12px;
}

.card-fur {
  width: 220px;
  height: 280px;
  background: linear-gradient(160deg, #C9B99A 0%, #A8956E 50%, #8B7355 100%);
  border-radius: 12px;
}

.card-zip {
  width: 180px;
  height: 230px;
  background: linear-gradient(160deg, #E8E1D4 0%, #D4C9B8 50%, #BFB5A0 100%);
  border-radius: 12px;
}

.card-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.hero-price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--dark);
  color: var(--bg);
  border-radius: 40px;
}

.price-from {
  font-size: 0.85rem;
  opacity: 0.6;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

/* MANIFESTO */
.manifesto {
  background: var(--dark);
  color: var(--bg);
  padding: 8rem 6rem;
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--bg);
  margin-bottom: 2.5rem;
  border: none;
  quotes: none;
}

.manifesto-body {
  max-width: 55ch;
  margin-bottom: 4rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.pillar-text {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg);
  display: block;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  padding: 8rem 6rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.products-header {
  margin-bottom: 4rem;
}

.products-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
  cursor: pointer;
}

.product-card-link .product-tag {
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-card-link:hover .p-bg-1 {
  box-shadow: 0 8px 32px rgba(200, 86, 30, 0.3);
}

.product-card-link:hover .product-tag {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.p-bg-1 {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #C9B99A 0%, #A8956E 50%, #7A6045 100%);
  border-radius: 16px;
}

.p-bg-2 {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #F0EBE0 0%, #E0D8C8 50%, #CDBFAA 100%);
  border-radius: 16px;
}

.p-bg-3 {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2C2820 0%, #3D352A 50%, #4A4235 100%);
  border-radius: 16px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.was {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.now {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.product-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  margin-top: 0.5rem;
}

/* DROPS */
.drops {
  background: var(--bg-warm);
  padding: 8rem 6rem;
}

.drops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.drops-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.drops-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 44ch;
}

.drop-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  min-width: 2rem;
}

.step-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
}

.store-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.store-cta:hover {
  opacity: 0.7;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 10rem 6rem;
  text-align: center;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  color: var(--bg);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: var(--bg);
  padding: 4rem 6rem 3rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 2.5rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--bg);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6rem;
  }
  .hero-content { padding: 2rem 2rem 1rem; }
  .hero-visual { padding: 1rem 2rem 4rem; }
  .manifesto, .products, .drops { padding: 5rem 2rem; }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .drops-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing { padding: 6rem 2rem; }
  .site-footer { padding: 3rem 2rem 2rem; }
  .card-fur { width: 160px; height: 200px; }
  .card-zip { width: 130px; height: 170px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3.5rem; }
  .manifesto-quote { font-size: 1.5rem; }
  .footer-nav { gap: 1rem; }
}