/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
  --bg: #141414;
  --card: #1E1E1E;
  --text: #F5F1EA;
  --accent: #D4B4DC;
  --stone: #6B6762;
  --border: rgba(245,241,234,0.08);
  --footer-bg: #0E0E0E;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--card);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--border);
}

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-ig { display: flex; align-items: center; }
.nav-ig svg { width: 18px; height: 18px; fill: var(--stone); transition: fill 0.2s; }
.nav-ig:hover svg { fill: var(--text); }

/* ── Hero ── */
.hero {
  padding: 10rem 3rem 9rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.75; }
.btn-primary { background: var(--text); color: var(--bg); border: none; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(245,241,234,0.3); }

/* ── Video Section ── */
.video-section {
  width: 100%;
  position: relative;
  background: #0a0a0a;
  aspect-ratio: 16/7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--stone);
}
.video-play {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(245,241,234,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play svg { width: 18px; height: 18px; fill: var(--text); margin-left: 3px; }
.video-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Section ── */
.section { padding: 8rem 3rem; }
.section-alt { background: var(--card); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.container-narrow { max-width: 740px; margin: 0 auto; width: 100%; }

/* ── Section Header ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
}
.section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.section-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.section-link:hover { color: var(--text); }

/* ── Decode Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.decode-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.decode-card:hover { background: var(--card); }
.decode-card-num {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}
.decode-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  flex: 1;
}
.decode-card p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
}
.read-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
  margin-top: 0.5rem;
  display: inline-block;
}
.decode-card:hover .read-link { color: var(--text); }

/* ── About Strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.about-strip-photo {
  background: #1a1a1a;
  overflow: hidden;
  min-height: 500px;
}
.about-strip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-strip-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}
.about-strip-text p {
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.about-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  display: inline-block;
}
.about-link:hover { color: var(--text); border-color: var(--text); }

/* ── Instagram Row ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.ig-tile {
  aspect-ratio: 1/1;
  background: #1a1a1a;
  overflow: hidden;
  transition: opacity 0.3s;
}
.ig-tile:hover { opacity: 0.8; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Email Signup ── */
.signup-section {
  text-align: center;
  padding: 9rem 2rem;
  border-top: 1px solid var(--border);
}
.signup-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.signup-subtext {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 0.4rem;
}
.signup-italic {
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  display: block;
}
.signup-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(245,241,234,0.3);
  gap: 0;
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.8rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
}
.signup-form input::placeholder { color: var(--stone); }
.signup-form button {
  background: transparent;
  color: var(--text);
  border: none;
  padding: 0.8rem 0 0.8rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.signup-form button:hover { color: var(--stone); }
.signup-note {
  font-size: 0.68rem;
  color: var(--stone);
  margin-top: 1.2rem;
  letter-spacing: 0.06em;
}
.signup-success {
  display: none;
  color: var(--accent);
  font-style: italic;
  margin-top: 1rem;
}

/* ── Footer ── */
footer {
  background: var(--footer-bg);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.06em;
}

/* ── Decodes Index ── */
.decodes-list { display: flex; flex-direction: column; }
.decode-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.decode-row:first-child { border-top: 1px solid var(--border); }
.decode-row:hover { opacity: 0.6; }
.decode-row h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.decode-row p {
  font-size: 0.85rem;
  color: var(--stone);
}
.decode-date {
  font-size: 0.68rem;
  color: var(--stone);
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* ── Article ── */
.article-header {
  padding: 7rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}
.article-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.article-dek {
  font-size: 1.1rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-meta {
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-body { padding: 5rem 3rem; }
.article-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.article-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 3.5rem 0 1.2rem;
  letter-spacing: -0.01em;
}
.article-body strong { font-weight: 700; }
.article-footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding-top: 2.5rem;
}
.article-footer p {
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── About Page ── */
.about-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  background: var(--card);
  overflow: hidden;
  margin-bottom: 4rem;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ── Kicker (legacy) ── */
.kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 5rem; }
  .hero h1 { font-size: 2.6rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-text { padding: 3rem 1.5rem; }
  .about-strip-photo { min-height: 320px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .decode-row { grid-template-columns: 1fr; gap: 0.4rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .article-header { padding: 4rem 1.5rem 2.5rem; }
  .article-body { padding: 3rem 1.5rem; }
  .signup-form { flex-direction: column; border-bottom: none; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
  .signup-form input { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); }
  .signup-form button { padding: 0.9rem 1rem; border-top: none; }
  .video-section { aspect-ratio: 16/9; }
}
