/* WHIM · Design System · Warm friendly consumer feel (Airbnb + OpenTable + Kayak DNA) */
:root {
  --ink: #1E1B1A;
  --ink-soft: #4A4643;
  --ink-mute: #8B8681;
  --ink-fade: #B8B3AD;
  --paper: #FFFEFB;
  --paper-warm: #FCF6EE;
  --paper-hover: #F5EFE4;
  --line: #EBE4D8;
  --line-strong: #D6CFC2;

  --coral: #FF385C;         /* Airbnb-esque primary */
  --coral-dark: #E01E3E;
  --sunset: #FF7847;
  --gold: #F2A83B;
  --teal: #14A67A;
  --sky: #4B7BE5;
  --plum: #7B5AA6;

  --grad-warm: linear-gradient(120deg, #FF385C 0%, #FF7847 55%, #F2A83B 100%);
  --grad-warm-soft: linear-gradient(120deg, rgba(255,56,92,0.08), rgba(255,120,71,0.06), rgba(242,168,59,0.08));

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30,27,26,0.04), 0 2px 6px rgba(30,27,26,0.04);
  --shadow-md: 0 4px 12px rgba(30,27,26,0.08), 0 12px 32px rgba(30,27,26,0.06);
  --shadow-lg: 0 8px 24px rgba(30,27,26,0.10), 0 24px 64px rgba(30,27,26,0.08);
  --shadow-focus: 0 0 0 3px rgba(255,56,92,0.25);

  --font-display: 'Fraunces', 'Cooper Std', 'Georgia', serif;
  --font-sans: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-wide { max-width: 1360px; }
.wrap-narrow { max-width: 820px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* Nav — Airbnb-inspired */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px) { .nav-inner { padding: 0 20px; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--coral);
}
.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad-warm);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-sans);
}
.nav-center {
  display: flex;
  justify-content: center;
}
.nav-search-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  transition: box-shadow 0.14s ease;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}
.nav-search-mini:hover { box-shadow: var(--shadow-md); }
.nav-search-mini .sep { width: 1px; height: 20px; background: var(--line); }
.nav-search-mini .lbl-dim { color: var(--ink-mute); }
.nav-search-mini .icon-bubble {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  display: grid; place-items: center;
  margin-left: 4px;
}
@media (max-width: 900px) { .nav-search-mini { padding: 8px 16px; } .nav-search-mini .sep { display: none; } .nav-search-mini > *:not(:first-child):not(.icon-bubble) { display: none; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  transition: background 0.14s ease;
}
.nav-links a:hover { background: var(--paper-hover); }
.nav-links a.active { color: var(--coral); }
.nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 700 !important;
  transition: filter 0.14s ease;
}
.nav-cta:hover { background: var(--ink) !important; filter: brightness(1.1); }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-center { justify-content: flex-end; }
}

/* Typography */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-family: var(--font-sans); font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(38px, 5.5vw, 68px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.35; }
.serif { font-family: var(--font-display); font-weight: 500; font-style: italic; letter-spacing: -0.005em; }
.warm-highlight { color: var(--coral); }
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
  font-weight: 600;
}
.eyebrow::before {
  content: "◆";
  color: var(--coral);
}

/* Section */
.section { padding: 90px 0; }
.section.tight { padding: 60px 0; }
.section.hero { padding: 60px 0 100px; }
.section.warm { background: var(--paper-warm); }
@media (max-width: 720px) { .section { padding: 60px 0; } .section.hero { padding: 40px 0 60px; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: var(--grad-warm);
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.14s ease, filter 0.14s ease, box-shadow 0.14s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--paper-hover); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* THE BIG SEARCH — Airbnb-inspired */
.search-hero {
  max-width: 940px;
  margin: 40px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.14s ease;
}
.search-hero:hover { box-shadow: 0 12px 40px rgba(30,27,26,0.14), 0 32px 80px rgba(30,27,26,0.10); }
.search-hero .field {
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  cursor: text;
  transition: background 0.12s ease;
}
.search-hero .field:hover { background: var(--paper-hover); }
.search-hero .field:last-of-type { border-right: none; }
.search-hero .field .lbl {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
}
.search-hero .field input,
.search-hero .field .val {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0;
}
.search-hero .field input::placeholder { color: var(--ink-mute); }
.search-hero .field .val { color: var(--ink-mute); }
.search-hero .send {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  margin: 6px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--paper);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  gap: 8px;
  min-width: 60px;
  transition: filter 0.14s ease;
}
.search-hero .send:hover { filter: brightness(1.06); }
@media (max-width: 900px) {
  .search-hero { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .search-hero .field { border-right: none; border-bottom: 1px solid var(--line); padding: 14px 22px; }
  .search-hero .send { margin: 12px 22px 12px; padding: 14px; }
}

/* Category strip — Airbnb-inspired */
.cat-strip {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat {
  flex-shrink: 0;
  text-align: center;
  padding: 8px 4px 12px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--ink-mute);
  transition: color 0.14s ease, border-color 0.14s ease;
  min-width: 80px;
}
.cat:hover { color: var(--ink); border-color: var(--line-strong); }
.cat.active { color: var(--ink); border-color: var(--ink); }
.cat .emoji { font-size: 28px; display: block; margin-bottom: 6px; filter: grayscale(0.15); }
.cat .cat-label { font-family: var(--font-sans); font-weight: 600; font-size: 12px; letter-spacing: 0.01em; }

/* Chip pills (secondary category / filters) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 24px auto 0;
}
.chip {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.14s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover {
  background: var(--paper-hover);
  color: var(--ink);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.chip.warm { background: var(--grad-warm-soft); border-color: rgba(255,56,92,0.25); color: var(--coral-dark); font-weight: 600; }

/* Experience card (Airbnb card DNA) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  margin-top: 32px;
}
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .card-grid { grid-template-columns: 1fr; } }
.exp-card {
  display: block;
  cursor: pointer;
  transition: transform 0.16s ease;
}
.exp-card:hover { transform: translateY(-3px); }
.exp-photo {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: var(--paper-hover);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.exp-photo .art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 82px;
}
.exp-photo .badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.exp-photo .heart {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}
.exp-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 2px;
  display: flex; justify-content: space-between; gap: 10px; align-items: flex-start;
}
.exp-title .score {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 3px;
}
.exp-meta {
  color: var(--ink-mute);
  font-size: 14px;
  margin: 0 0 2px;
}
.exp-price {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin-top: 4px;
}
.exp-price .under { color: var(--ink-mute); font-weight: 400; text-decoration: underline; margin-left: 4px; }

/* Feature blocks */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature .num-badge {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-warm-soft);
  color: var(--coral);
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
}
.feature h3 { font-size: 21px; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}
@media (max-width: 720px) { .stat-strip { grid-template-columns: 1fr 1fr; gap: 20px; } }
.stat .num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .lbl {
  color: var(--ink-mute);
  font-size: 13px;
}

/* Result preview */
.demo-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.demo-query {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 20px;
}
.demo-query .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-warm);
}
.demo-results { display: grid; gap: 12px; }
.demo-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background 0.12s ease;
}
.demo-row:hover { background: var(--paper-hover); }
.demo-row .rank {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-warm-soft);
  color: var(--coral);
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
}
.demo-row h4 { font-size: 15px; margin-bottom: 2px; }
.demo-row p { color: var(--ink-mute); font-size: 13px; margin: 0; line-height: 1.5; }
.demo-row .tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--ink);
  border: 1px solid var(--line);
  white-space: nowrap;
}

/* Waitlist */
.waitlist {
  max-width: 560px;
  margin: 32px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.waitlist-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
@media (max-width: 560px) { .waitlist-row { grid-template-columns: 1fr; } }
.waitlist input[type="email"] {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: box-shadow 0.14s ease, border-color 0.14s ease;
}
.waitlist input[type="email"]:focus { border-color: var(--coral); box-shadow: var(--shadow-focus); }
.waitlist input[type="email"]::placeholder { color: var(--ink-mute); }
.waitlist small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}
.honeypot { position: absolute; left: -5000px; }

/* Footer */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-col h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.14s ease;
}
.footer-col a:hover { color: var(--coral); }
.footer-brand-block p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 0; max-width: 340px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}

/* misc */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mt-md { margin-top: 24px; }
.mt-sm { margin-top: 14px; }
.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }
.badge-warm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--grad-warm-soft);
  color: var(--coral-dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
