@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --gold: #c9a84c;
  --gold-light: #dfc377;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #fafaf8;
  --text-muted: #6b6357;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(170deg, #0a0a0a 0%, #141210 40%, #1a1714 70%, #0a0a0a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.5rem;
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin-top: 4rem;
}

/* ── Products ── */
.products {
  background: var(--black);
  padding: 6rem 2rem;
}

.products-header {
  text-align: center;
  margin-bottom: 5rem;
}

.products-header .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.products-header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
}

.product-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.product-card {
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  transition: border-color 0.4s;
}

.product-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.product-card:nth-child(even) {
  direction: rtl;
}

.product-card:nth-child(even) > * {
  direction: ltr;
}

.product-visual {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual .swatch {
  width: 100%;
  height: 100%;
  position: relative;
}

.swatch-black {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}

.swatch-black::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 60%;
  height: 45%;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.swatch-labeled {
  background: linear-gradient(135deg, #2a2520 0%, #1a1714 100%);
}

.swatch-labeled::after {
  content: 'RENT · FOOD · SAVINGS';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  opacity: 0.5;
  white-space: nowrap;
}

.swatch-cream {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 50%, var(--cream-dark) 100%);
}

.swatch-cream::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  width: 55%;
  height: 40%;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
}

.product-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.product-info .product-for {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}

.product-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

/* ── Story section ── */
.story {
  background: linear-gradient(180deg, var(--black) 0%, #0f0d0a 100%);
  padding: 8rem 2rem;
  text-align: center;
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.story h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.story p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story p strong {
  color: var(--cream);
  font-weight: 400;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Closing ── */
.closing {
  background: var(--black);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.closing p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--black);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .product-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .product-card:nth-child(even) {
    direction: ltr;
  }

  .story-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }
}
