:root {
  --ink: #14110c;
  --paper: #f3ece0;
  --paper-2: #e8dcc8;
  --night: #17140f;
  --night-2: #221c14;
  --amber: #e8a317;
  --amber-2: #ffd27a;
  --clay: #b85c38;
  --moss: #3d6b4f;
  --moss-2: #7dba8e;
  --fog: rgba(243, 236, 224, 0.08);
  --line: rgba(20, 17, 12, 0.12);
  --line-light: rgba(243, 236, 224, 0.14);
  --danger: #c45c3e;
  --ok: #3d6b4f;
  --shadow: 0 30px 80px rgba(20, 17, 12, 0.28);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Figtree", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clay);
}
h1, h2, h3, .display { font-family: "Fraunces", Georgia, serif; font-weight: 560; letter-spacing: -0.03em; }
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.04em; font-size: 1.15rem; }
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 600; font-size: 0.95rem; }
.nav-links a { opacity: 0.78; }
.nav-links a:hover { opacity: 1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 18px; font-weight: 700;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-ghost { background: transparent; border: 1px solid var(--line); }
.btn-wide { width: 100%; }
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  padding: 56px 0 28px; align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 0.96; margin: 12px 0 18px; }
.hero p.lede { font-size: 1.15rem; max-width: 34rem; color: #3a342b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; font-size: 0.82rem; font-weight: 650;
}
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 320px; background: var(--night); color: var(--paper);
  border-radius: 36px; padding: 14px 12px 18px; box-shadow: var(--shadow);
  border: 1px solid #3a3226;
}
.phone-bar { display: flex; justify-content: space-between; font-size: 0.72rem; opacity: .7; padding: 4px 10px 10px; }
.phone-search {
  background: #2b241b; border-radius: 14px; padding: 10px 12px; display: flex; gap: 8px; align-items: center;
  color: #d7cbb8; font-size: 0.86rem; margin-bottom: 12px;
}
.phone-card { background: #2a231a; border-radius: 18px; overflow: hidden; }
.phone-card img { height: 148px; width: 100%; object-fit: cover; }
.phone-card .meta { padding: 12px; }
.phone-card h3 { font-size: 1.15rem; }
.score { display: inline-flex; align-items: center; gap: 6px; color: var(--amber-2); font-weight: 800; font-size: 0.9rem; }
.hash-btn {
  margin-top: 10px; width: 100%; background: var(--amber); color: var(--ink);
  border: 0; border-radius: 12px; padding: 10px; font-weight: 800;
}
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.mini-grid img { height: 64px; object-fit: cover; border-radius: 10px; }
section { padding: 72px 0; }
.section-head { max-width: 38rem; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin: 8px 0 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.muted { color: #5c5348; }
.night-band {
  background: var(--night); color: var(--paper); border-radius: 32px; padding: 42px;
}
.night-band .eyebrow { color: var(--amber); }
.photo-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; margin-top: 22px; }
.photo-row figure { position: relative; overflow: hidden; border-radius: 16px; min-height: 180px; }
.photo-row img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.photo-row figcaption {
  position: absolute; left: 10px; bottom: 10px; background: rgba(20,17,12,.72);
  color: #fff; padding: 4px 8px; border-radius: 8px; font-size: 0.75rem; font-weight: 700;
}
.app-shell { min-height: 100vh; background: #efe6d6; }
.app-top {
  position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, #efe6d6 88%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.app-top-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.search-box {
  display: flex; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 6px; margin: 8px 0 16px;
}
.search-box input, .search-box select {
  border: 0; outline: 0; background: transparent; padding: 10px 12px; width: 100%;
}
.biz-list { display: grid; gap: 14px; padding-bottom: 80px; }
.biz {
  display: grid; grid-template-columns: 148px 1fr; background: #fff;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
}
.biz img.cover { width: 148px; height: 100%; min-height: 148px; object-fit: cover; }
.biz .body { padding: 14px 14px 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
.tag { font-size: 0.72rem; font-weight: 750; padding: 4px 8px; border-radius: 999px; background: #efe6d6; }
.tag.ok { background: #d7ecdc; color: #244833; }
.tag.warn { background: #f6d7cc; color: #6c2e1c; }
.hash { font-family: "Fraunces", serif; font-weight: 650; color: var(--clay); }
.detail-hero { position: relative; border-radius: 24px; overflow: hidden; min-height: 280px; }
.detail-hero img { width: 100%; height: 320px; object-fit: cover; }
.detail-hero .shade {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(transparent, rgba(20,17,12,.86)); color: #fff;
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0; }
.gallery figure { border-radius: 12px; overflow: hidden; background: #ddd; }
.gallery img { height: 110px; width: 100%; object-fit: cover; }
.gallery figcaption { font-size: 0.72rem; padding: 6px 4px 8px; font-weight: 700; text-align: center; }
.special {
  background: #fff6e4; border: 1px solid #efd6a0; border-radius: 16px; padding: 14px 16px; margin: 12px 0;
}
.callbar { position: sticky; bottom: 12px; display: flex; gap: 8px; margin-top: 16px; }
.stars button { background: transparent; border: 0; font-size: 1.4rem; color: #c9bba4; }
.stars button.on { color: var(--amber); }
.form { display: grid; gap: 12px; }
.form label { font-weight: 700; font-size: 0.86rem; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; background: #fff;
}
.photo-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-slot {
  border: 1px dashed var(--line); border-radius: 14px; overflow: hidden; background: #faf6ef;
  min-height: 110px; position: relative; cursor: pointer;
}
.photo-slot img { width: 100%; height: 110px; object-fit: cover; }
.photo-slot span {
  position: absolute; left: 8px; bottom: 8px; background: rgba(20,17,12,.72); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 3px 7px; border-radius: 8px;
}
.photo-slot input { display: none; }
.verify-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: end; }
.badge-ok { display: inline-block; background: #d7ecdc; color: #244833; font-weight: 800; font-size: .78rem; padding: 4px 8px; border-radius: 999px; }
.checkrow { display: flex; gap: 14px; flex-wrap: wrap; }
.checkrow label { font-weight: 600; display: flex; gap: 6px; align-items: center; }
.price { display: grid; gap: 12px; }
.price .card { cursor: pointer; }
.price .card.picked { outline: 2px solid var(--ink); }
.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 999px;
  font-weight: 700; display: none; z-index: 80;
}
footer { padding: 40px 0 60px; color: #5c5348; font-size: 0.9rem; }
.foot-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.grade {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; font-weight: 800; font-size: 0.85rem;
  background: #d7ecdc; color: #244833; margin-right: 6px;
}
.grade.C { background: #fff1c8; color: #6a5208; }
.grade.D, .grade.F { background: #f6d7cc; color: #6c2e1c; }
.faq-dock { position: fixed; right: 18px; bottom: 18px; z-index: 30; width: min(340px, calc(100% - 24px)); }
.faq-dock > .btn { width: 100%; }
.faq-panel { margin-top: 8px; max-height: 52vh; overflow: auto; }
.trip-stop { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 880px) {
  .hero, .grid-3, .grid-2, .photo-row, .biz, .gallery { grid-template-columns: 1fr; }
  .nav-links .hide-sm { display: none; }
  .phone { width: 100%; max-width: 340px; }
  .biz img.cover { width: 100%; height: 170px; }
}
