@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #F7F3EC;
  --card: #FFFDF9;
  --text: #2A211C;
  --text-muted: #6E645A;
  --text-faint: #9C8F80;
  --line: #E6DDCC;
  --accent: #6B1E23;
  --accent-soft: rgba(107, 30, 35, 0.08);
  --gold: #C79A4B;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  text-decoration: none;
}

nav.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: 24px;
}

nav.site-nav a:hover {
  color: var(--accent);
}

main {
  padding: 64px 0 96px;
}

.hero {
  text-align: center;
  padding-bottom: 48px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}

.hero p.tagline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.5;
  cursor: default;
}

.badges-note {
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  margin: 0;
}

.hero-shot-wrap {
  position: relative;
  margin: 56px auto 0;
  max-width: 360px;
  /* Matches hero-itinerary.png's own ratio exactly, so object-fit: cover
     never has to crop anything beyond what's already in the file — a fixed
     height here previously made the crop point shift with viewport width
     (cover binds by width vs by height depending on the box's aspect
     ratio), which cut off mid-card/mid-text at some sizes. */
  aspect-ratio: 640 / 714;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgba(42, 33, 28, 0.35);
}

.hero-shot-wrap::before {
  content: '';
  position: absolute;
  inset: -60px -80px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 70%);
  z-index: 0;
}

.hero-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.features {
  margin-top: 72px;
}

.features-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 24px;
}

/* Mirrors the app's own itinerary card: a rail of connected, colored
   icon dots down the left, each paired with a card carrying the same
   accent as a top border — the site literally reuses the product's
   visual language instead of a generic feature grid. */
.itinerary-feature {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.feature-rail {
  position: relative;
  width: 44px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 1;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-rail::after {
  content: '';
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

.feature-last .feature-rail::after {
  display: none;
}

.feature-card {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.feature-last .feature-card {
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.feature-oxblood .feature-icon { background: var(--accent); }
.feature-oxblood .feature-card { border-top-color: var(--accent); }

.feature-gold .feature-icon { background: var(--gold); }
.feature-gold .feature-card { border-top-color: var(--gold); }

.feature-forest .feature-icon { background: #4A6B54; }
.feature-forest .feature-card { border-top-color: #4A6B54; }

.feature-slate .feature-icon { background: #4A6B8A; }
.feature-slate .feature-card { border-top-color: #4A6B8A; }

.feature-terracotta .feature-icon { background: #A8623F; }
.feature-terracotta .feature-card { border-top-color: #A8623F; }

@media (max-width: 560px) {
  .hero h1 {
    font-size: 32px;
  }
  .itinerary-feature {
    gap: 14px;
  }
  .feature-rail {
    width: 36px;
  }
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  .feature-icon svg {
    width: 17px;
    height: 17px;
  }
  .feature-rail::after {
    top: 36px;
  }
}

/* Legal pages */
.legal h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 4px;
}

.legal .updated {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal section {
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.legal p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

footer.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-left: 18px;
}

footer.site-footer a:hover {
  color: var(--accent);
}

footer.site-footer .copyright {
  color: var(--text-faint);
  font-size: 13px;
}
