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

:root {
  --espresso: #1E0F08;
  --roast: #3D2314;
  --amber: #C8622A;
  --amber-light: #E8935A;
  --cream: #F7F2EA;
  --cream-dark: #EDE6DA;
  --charcoal: #2A2118;
  --muted: #8C7966;
  --off-white: #FDFAF6;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 35, 20, 0.08);
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-discover-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.1s ease;
}

.nav-discover-btn:hover { background: var(--roast); transform: translateY(-1px); }
.nav-discover-btn:active { transform: translateY(0); }

/* === HERO === */
.hero {
  padding: 6rem 3rem 4rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--off-white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,98,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--roast);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--amber);
  color: white;
  border-radius: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 20px rgba(200, 98, 42, 0.3);
}

.hero-cta:hover {
  background: #b5551f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 98, 42, 0.4);
}

.hero-search-form { display: flex; }

.hero-search-input {
  padding: 0.7rem 1.1rem;
  border: 1.5px solid rgba(61, 35, 20, 0.2);
  border-radius: 10px;
  background: white;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  width: 260px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero-search-input::placeholder { color: var(--muted); }

.hero-search-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 98, 42, 0.12);
}

/* Coffee cup illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coffee-cup {
  position: relative;
  width: 200px;
  height: 260px;
}

.cup-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 170px;
  background: linear-gradient(145deg, var(--amber) 0%, #A04E1E 100%);
  border-radius: 12px 12px 40px 40px;
  box-shadow:
    inset -12px 0 20px rgba(0,0,0,0.15),
    0 20px 60px rgba(30,15,8,0.25);
}

.cup-body::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 60px;
  background: linear-gradient(180deg, #3D1A08 0%, #2D1308 100%);
  border-radius: 50% 50% 30px 30px;
}

.cup-handle {
  position: absolute;
  right: -18px;
  top: 55px;
  width: 45px;
  height: 70px;
  border: 14px solid var(--amber);
  border-left: none;
  border-radius: 0 40px 40px 0;
}

.steam {
  position: absolute;
  bottom: 175px;
  width: 3px;
  height: 40px;
  background: rgba(61,35,20,0.15);
  border-radius: 2px;
}

.steam-1 { left: calc(50% - 20px); transform: rotate(-8deg); animation: steam 2.5s ease-in-out infinite; }
.steam-2 { left: calc(50%); height: 55px; animation: steam 2.5s ease-in-out 0.6s infinite; }
.steam-3 { left: calc(50% + 20px); transform: rotate(8deg); animation: steam 2.5s ease-in-out 1.2s infinite; }

@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  50% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-30px) scaleX(0.6); }
}

/* Map pins */
.hero-pins {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,98,42,0.2);
}

.pin-label {
  font-size: 0.75rem;
  color: var(--roast);
  background: white;
  padding: 3px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
  font-weight: 500;
}

.pin-1 { top: 35%; left: -10px; }
.pin-2 { top: 20%; right: -10px; }
.pin-3 { top: 55%; right: 10px; }

/* Hero stats */
.hero-stats {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--espresso);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(247,242,234,0.6);
  margin-top: 0.3rem;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(247,242,234,0.15);
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 3rem;
  background: var(--cream);
}

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

.manifesto-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

.manifesto-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 3.5rem;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--amber);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.manifesto-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manifesto-list li {
  font-size: 1rem;
  color: var(--roast);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.manifesto-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(61,35,20,0.25);
}

.manifesto-list--good li::before {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,98,42,0.15);
}

/* === VIBES === */
.vibes {
  padding: 7rem 3rem;
  background: var(--off-white);
}

.vibes-inner { max-width: 1100px; margin: 0 auto; }

.vibes-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

.vibes-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 3rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vibe-card {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(61,35,20,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vibe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,15,8,0.1);
}

.vibe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.vibe-card--work::before { background: linear-gradient(90deg, var(--amber), var(--amber-light)); }
.vibe-card--date::before { background: linear-gradient(90deg, #C8622A, #D4846A); }
.vibe-card--roadtrip::before { background: linear-gradient(90deg, var(--roast), var(--amber)); }
.vibe-card--solo::before { background: linear-gradient(90deg, var(--espresso), var(--roast)); }

.vibe-icon {
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.vibe-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.vibe-desc {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === CITIES === */
.cities {
  padding: 7rem 3rem;
  background: var(--espresso);
  color: var(--cream);
}

.cities-inner { max-width: 1100px; margin: 0 auto; }

.cities-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-light);
  display: block;
  margin-bottom: 1rem;
}

.cities-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.cities-desc {
  font-size: 1.05rem;
  color: rgba(247,242,234,0.65);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,242,234,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.city-block {
  padding: 2rem;
  background: rgba(30,15,8,0.8);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.city-block--wide {
  grid-column: 1 / -1;
  background: rgba(200,98,42,0.15);
}

.city-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.city-count {
  font-size: 0.8rem;
  color: rgba(247,242,234,0.5);
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.2rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 3.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

.closing-statement {
  text-align: left;
}

.closing-statement p {
  font-size: 1rem;
  color: var(--roast);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-statement p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--espresso);
  font-size: 1.05rem;
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 3rem;
  background: var(--espresso);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(247,242,234,0.4);
  margin-left: 1rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(247,242,234,0.35);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { display: none; }

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

  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .city-block--wide {
    grid-column: 1 / -1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .vibes { padding: 4rem 1.5rem; }
  .cities { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }

  .hero-stats { padding: 1.5rem; }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}