/* ==============================
   DRIP — theme.css
   ============================== */

:root {
  --bg: #0c0b09;
  --surface: #141210;
  --surface-2: #1c1915;
  --border: #2a2620;
  --text: #f0ebe2;
  --text-muted: #8a8070;
  --accent: #c9a96e;
  --accent-dim: #8a7249;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8vw;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--text);
}

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

.hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.7;
}

/* ---- FEED MOCKUP ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.feed-mockup {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 340px;
}

.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 1rem;
  padding: 0.875rem;
  align-items: center;
  transition: transform 0.2s ease;
}

.feed-card:hover {
  transform: translateX(-4px);
}

.card-img {
  width: 72px;
  height: 90px;
  border-radius: 8px;
  flex-shrink: 0;
}

.card-img-1 {
  background: linear-gradient(135deg, #3d2b1f 0%, #6b4c30 50%, #8a6642 100%);
}

.card-img-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 50%, #3a3a5c 100%);
}

.card-img-3 {
  background: linear-gradient(135deg, #2e1f1f 0%, #4a3028 50%, #6b4535 100%);
}

.card-body { flex: 1; min-width: 0; }

.card-brand {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.card-item {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---- WHAT ---- */
.what {
  padding: 10rem 8vw;
  border-top: 1px solid var(--border);
}

.what-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 800px;
  margin-bottom: 5rem;
}

.what-inner:last-child { margin-bottom: 0; }

.what-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  padding-top: 0.25rem;
}

.what-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.what-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 55ch;
}

/* ---- FEATURES ---- */
.features {
  padding: 8rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  margin-bottom: 5rem;
  max-width: 560px;
}

.features-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
}

.feature {}

.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 10rem 8vw;
  border-top: 1px solid var(--border);
}

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

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- CLOSING ---- */
.closing {
  padding: 10rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.closing-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.closing-email {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.email-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus {
  border-color: var(--accent);
}

.email-input::placeholder { color: var(--text-muted); }

.email-btn {
  background: var(--accent);
  color: #0c0b09;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.email-btn:hover { background: #d9bc84; }

.closing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---- FOOTER ---- */
.footer {
  padding: 3rem 8vw;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-visual { display: none; }

  .what-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }

  .what-number { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .manifesto-quote { padding-left: 1.25rem; }

  .closing-email { flex-direction: column; }

  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .what, .features, .manifesto, .closing { padding-left: 6vw; padding-right: 6vw; }
  .footer { padding-left: 6vw; padding-right: 6vw; }
}