/* Yearscape — Warm, keepsake, intimate */
:root {
  --cream: #f5ede4;
  --cream-dark: #e8ddd2;
  --ink: #1a2b2e;
  --ink-light: #4a5f60;
  --primary: #2c4a3e;
  --primary-light: #3d6b58;
  --accent: #c9603a;
  --accent-light: #e8876a;
  --pixel-green: #7ab892;
  --pixel-sand: #d4b896;
  --pixel-water: #a8c5d4;
  --pixel-land: #c8b89a;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 237, 228, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--primary);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 420px;
}

/* World map visual */
.hero-visual { position: relative; }
.world-map {
  position: relative;
  background: #1e3440;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(44, 74, 62, 0.2);
}

/* Pixel art map grid */
.map-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.continent {
  position: absolute;
  background: #3a5c50;
  border-radius: 2px;
  image-rendering: pixelated;
}
.na { width: 22%; height: 18%; top: 25%; left: 8%; background: #4a7a62; }
.sa { width: 12%; height: 16%; top: 55%; left: 15%; background: #3d6b50; }
.eu { width: 10%; height: 10%; top: 20%; left: 45%; background: #5a8a72; }
.af { width: 12%; height: 20%; top: 30%; left: 48%; background: #4a7a60; }
.as { width: 25%; height: 22%; top: 20%; left: 62%; background: #3d6b58; }
.oc { width: 14%; height: 14%; top: 60%; left: 72%; background: #4a7a62; }

/* City pins */
.city-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.pin-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}
.pin-nyc { top: 32%; left: 16%; }
.pin-paris { top: 22%; left: 48%; }
.pin-tokyo { top: 30%; left: 80%; }

/* Flight path */
.flight-path {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Characters */
.character {
  position: absolute;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.char-left { left: 12%; }
.char-right { left: 28%; }
.char-body {
  width: 28px;
  height: 40px;
  position: relative;
}
/* Pixel character head */
.char-head {
  width: 16px; height: 16px;
  background: #f0c090;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  box-shadow: inset -2px -2px 0 rgba(0,0,0,0.15);
}
.char-head::after {
  content: '';
  position: absolute;
  top: 5px; left: 3px;
  width: 3px; height: 3px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 7px 0 0 var(--ink);
}
.char-torso {
  width: 16px; height: 14px;
  background: var(--primary);
  margin: 2px auto 0;
  border-radius: 2px;
}
.char-legs {
  width: 14px; height: 10px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 0 0 2px 2px;
}
/* Boxing gloves */
.char-body.boxing .char-torso { background: #3d6b58; }
.arm-glove {
  position: absolute;
  width: 8px; height: 10px;
  background: var(--accent);
  border-radius: 3px;
  top: 12px;
}
.left-glove { left: -6px; }
.right-glove { right: -6px; }

/* Speech bubbles */
.speech-bubble {
  background: white;
  border-radius: 12px;
  padding: 4px 10px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: white;
  border-bottom: 0;
}
.bubble-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--ink);
}
.speech-bubble.left { transform: translateX(-10px); }
.speech-bubble.right { transform: translateX(10px); }

/* Timeline bar */
.timeline-bar {
  position: absolute;
  bottom: 12px;
  left: 24px; right: 24px;
}
.timeline-months {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.timeline-months span {
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
}
.timeline-progress {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 55%, rgba(255,255,255,0.15) 55%);
  border-radius: 2px;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--ink);
  padding: 100px 24px;
}
.philosophy-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.philosophy-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.philosophy-body {
  font-size: 1.05rem;
  color: rgba(245, 237, 228, 0.65);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.philosophy-body em { color: var(--cream); font-style: italic; }
.philosophy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.philosophy-col { padding: 0 4px; }
.col-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
  filter: grayscale(1) brightness(2);
}
.philosophy-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.philosophy-col p {
  font-size: 0.9rem;
  color: rgba(245, 237, 228, 0.6);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how { padding: 100px 24px; background: var(--cream); }
.how-inner { max-width: 900px; margin: 0 auto; }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 60px;
  line-height: 1.2;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--cream-dark);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 520px;
}

/* ── WORLD ── */
.world { padding: 100px 24px; background: var(--cream-dark); }
.world-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.world-text .section-headline { margin-bottom: 24px; }
.world-body {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.world-screens { display: flex; flex-direction: column; gap: 20px; }
.screen-card {
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 43, 46, 0.15);
}
.screen-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent-light);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.06em;
}
.screen-scene {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px;
  align-items: end;
}
.mini-map { position: relative; }
.mini-land {
  width: 100%;
  height: 50px;
  background: #3a5c50;
  border-radius: 3px;
}
.nyc-land { background: linear-gradient(135deg, #4a7a62 0%, #3d6b50 100%); }
.paris-land { background: linear-gradient(135deg, #5a8a72 0%, #4a7a60 100%); }
.mini-pin {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
}
.mini-chars { display: flex; gap: 8px; align-items: end; }
.mini-char { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mini-body {
  width: 20px; height: 28px;
  background: #f0c090;
  border-radius: 4px;
  position: relative;
}
.mini-body.coffee::before {
  content: '';
  position: absolute;
  right: -6px; bottom: 4px;
  width: 6px; height: 8px;
  background: var(--ink-light);
  border-radius: 2px;
}
.mini-body.jacket::after {
  content: '';
  position: absolute;
  top: 4px; left: 0; right: 0;
  height: 10px;
  background: var(--primary);
  border-radius: 2px;
}
.mini-bubble {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  color: white;
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 6px;
}
.screen-weather {
  padding: 8px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.weather-icon { margin-right: 6px; }

/* ── GIFT ── */
.gift { padding: 100px 24px; background: var(--primary); }
.gift-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.gift-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pixel-green);
  margin-bottom: 16px;
}
.gift-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}
.gift-body {
  font-size: 1rem;
  color: rgba(245, 237, 228, 0.7);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.gift-details { display: flex; flex-direction: column; gap: 20px; max-width: 480px; margin: 0 auto; }
.gift-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}
.detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; filter: grayscale(1) brightness(1.8); }
.gift-detail p { font-size: 0.9rem; color: rgba(245, 237, 228, 0.7); line-height: 1.6; }

/* ── CLOSING ── */
.closing { padding: 100px 24px; background: var(--cream); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
}
.closing-visual { margin-bottom: 40px; }
.closing-world {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto;
  background: #1e3440;
  border-radius: 12px;
}
.cw-pin {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid white;
}
.cw-1 { top: 20%; left: 15%; }
.cw-2 { top: 45%; left: 55%; }
.cw-3 { top: 25%; right: 15%; }
.cw-characters {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.cw-char {
  width: 16px; height: 22px;
  background: #f0c090;
  border-radius: 4px;
}
.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-light);
}

/* ── FOOTER ── */
.site-footer { background: var(--ink); padding: 60px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 237, 228, 0.4);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(245, 237, 228, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-copy { font-size: 0.75rem; color: rgba(245, 237, 228, 0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 40px;
  }
  .hero-visual { order: -1; }
  .world-inner { grid-template-columns: 1fr; }
  .philosophy-columns { grid-template-columns: 1fr; gap: 32px; }
  .step { grid-template-columns: 40px 1fr; gap: 16px; }
  .nav-links { display: none; }
}