/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #0A0A0A;
  --charcoal: #141414;
  --warm-cream: #F5EDE0;
  --cream-mid: #D8CCBC;
  --rust: #B85C38;
  --rust-dim: rgba(184,92,56,0.18);
  --rust-glow: rgba(184,92,56,0.06);
  --border: rgba(245,237,224,0.1);
  --text-muted: rgba(245,237,224,0.5);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

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

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

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  mix-blend-mode: difference;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--warm-cream);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 5rem;
  overflow: hidden;
}

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

.hero-beam {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 130%;
  transform-origin: top center;
  opacity: 0.25;
}
.hero-beam-1 {
  left: 22%;
  background: linear-gradient(to bottom, rgba(184,92,56,0.9), transparent);
  transform: rotate(-8deg);
  filter: blur(1px);
  animation: beam-drift 12s ease-in-out infinite alternate;
}
.hero-beam-2 {
  left: 38%;
  background: linear-gradient(to bottom, rgba(245,237,224,0.6), transparent);
  transform: rotate(-2deg);
  filter: blur(0.5px);
  animation: beam-drift 18s ease-in-out infinite alternate-reverse;
}
.hero-beam-3 {
  right: 30%;
  background: linear-gradient(to bottom, rgba(184,92,56,0.7), transparent);
  transform: rotate(6deg);
  filter: blur(1px);
  animation: beam-drift 15s ease-in-out infinite alternate;
}
@keyframes beam-drift {
  0% { opacity: 0.12; transform: rotate(-10deg) translateX(-20px); }
  100% { opacity: 0.35; transform: rotate(-2deg) translateX(20px); }
}

.hero-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.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--warm-cream);
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--rust);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-drop-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-cream);
  text-decoration: none;
  border: 1px solid rgba(245,237,224,0.3);
  padding: 0.85rem 1.75rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-drop-cta:hover {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--rust-dim);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--warm-cream));
  animation: scroll-pulse 2.5s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  writing-mode: vertical-rl;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* === SECTION SHARED === */
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* === THE WEEK === */
.the-week {
  padding: var(--space-xl) 2.5rem;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.week-card {
  position: relative;
  padding: 2rem 1.5rem 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
}
.week-card:hover .week-card-bg {
  opacity: 0.5;
}

.week-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  transition: opacity 0.4s;
}

/* Japan — deep indigo gradient */
.week-card-jp .week-card-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(60,80,180,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(20,20,40,0.8) 0%, transparent 70%);
}

/* Italy — gold warm */
.week-card-it .week-card-bg {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(180,130,40,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(80,40,10,0.7) 0%, transparent 70%);
}

/* Korea — cool slate blue */
.week-card-kr .week-card-bg {
  background:
    radial-gradient(ellipse at 60% 20%, rgba(40,80,160,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(15,15,30,0.8) 0%, transparent 70%);
}

/* Paris — warm cream accent */
.week-card-fr .week-card-bg {
  background:
    radial-gradient(ellipse at 40% 10%, rgba(200,170,120,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(60,40,20,0.7) 0%, transparent 70%);
}

/* Global — rust accent */
.week-card-global .week-card-bg {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184,92,56,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(40,15,5,0.8) 0%, transparent 70%);
}

.week-flag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--warm-cream);
  opacity: 0.25;
  letter-spacing: 0.05em;
}

.week-day {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.week-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.week-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.45;
}

/* === MANIFESTO === */
.manifesto {
  padding: var(--space-xl) 2.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--warm-cream);
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 3px solid var(--rust);
  padding-left: 2rem;
}

.manifesto-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.manifesto-stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--warm-cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}

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

/* === EDITORIAL === */
.editorial {
  padding: var(--space-xl) 2.5rem;
  border-top: 1px solid var(--border);
}

.editorial-header {
  margin-bottom: var(--space-lg);
}

.editorial-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar:nth-child(even) {
  padding-left: 2.5rem;
  padding-right: 0;
}
.pillar:nth-last-child(-n+2) {
  border-bottom: none;
}

.pillar-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--warm-cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pillar-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: var(--space-xl) 2.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--warm-cream);
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3rem;
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--rust);
  margin-bottom: 3rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--cream-mid);
  line-height: 1.3;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--warm-cream);
  margin-bottom: 0.4rem;
}

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

.footer-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Country links row in footer */
.footer-countries {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-countries a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-countries a:hover { color: var(--warm-cream); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .week-grid {
    grid-template-columns: 1fr 1fr;
  }
  .week-card:last-child {
    grid-column: 1 / -1;
  }
  .editorial-pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .pillar:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
  .pillar:last-child {
    border-bottom: none;
  }
  .manifesto-stats {
    gap: 2rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .week-grid {
    grid-template-columns: 1fr;
  }
  .week-card:last-child {
    grid-column: auto;
  }
  .hero {
    padding: 0 1.5rem 4rem;
  }
  .the-week,
  .manifesto,
  .editorial,
  .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .site-footer {
    padding: 2rem 1.5rem;
  }
  .manifesto-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* === NEWSLETTER CTA SECTION === */
.newsletter-cta {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.newsletter-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-cta-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}
.newsletter-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.newsletter-cta-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.newsletter-form-row {
  display: flex;
  width: 100%;
  max-width: 480px;
  gap: 0;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder {
  color: var(--text-muted);
}
.newsletter-input:focus {
  border-color: rgba(245,237,224,0.3);
}
.newsletter-submit {
  background: var(--rust);
  border: 1px solid var(--rust);
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-submit:hover {
  background: #c96840;
}
.newsletter-msg {
  font-size: 0.875rem;
  min-height: 1.2em;
  transition: color 0.2s;
}
.newsletter-msg--ok { color: #7ec99e; }
.newsletter-msg--err { color: #e07272; }
.newsletter-disclaimer {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.25);
  margin-top: 0.5rem;
}

/* Newsletter page */
.newsletter-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 2rem 6rem;
}
.newsletter-page-header {
  margin-bottom: 3rem;
}
.newsletter-page-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.newsletter-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--warm-cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.newsletter-page-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.newsletter-welcome-banner {
  background: rgba(126,201,158,0.08);
  border: 1px solid rgba(126,201,158,0.3);
  border-left: 3px solid #7ec99e;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: #7ec99e;
}
.newsletter-error-banner {
  background: rgba(224,114,114,0.08);
  border: 1px solid rgba(224,114,114,0.3);
  border-left: 3px solid #e07272;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: #e07272;
}
.newsletter-inline-signup {
  border: 1px solid var(--border);
  background: var(--charcoal);
  padding: 2rem;
  margin-bottom: 3rem;
}
.newsletter-inline-signup h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--warm-cream);
}
.newsletter-inline-signup p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.newsletter-issues-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid var(--border);
}
.newsletter-issue-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
  gap: 1.5rem;
}
.newsletter-issue-row:hover {
  opacity: 0.7;
}
.newsletter-issue-meta {
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-issue-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--warm-cream);
  flex: 1;
}
.newsletter-issue-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.newsletter-empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Issue view */
.newsletter-issue-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 7rem 2rem 6rem;
}
.newsletter-issue-back {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2.5rem;
  transition: color 0.15s;
}
.newsletter-issue-back:hover { color: var(--warm-cream); }
.newsletter-issue-html iframe {
  width: 100%;
  border: 1px solid var(--border);
  min-height: 600px;
}

/* Unsubscribe page */
.unsub-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  text-align: center;
}
.unsub-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--warm-cream);
}
.unsub-page p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.unsub-page a {
  color: var(--rust);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .newsletter-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .newsletter-input {
    border-right: 1px solid var(--border);
  }
  .newsletter-submit {
    width: 100%;
    padding: 0.875rem;
  }
}