:root {
  --paper: #f3efe6;
  --ink: #241c14;
  --muted: #6b5d4e;
  --line: #ddd2c0;
  --clay: #c45c26;
  --clay-2: #9a3f14;
  --leaf: #3e6b48;
  --white: #fffaf2;
  --serif: "Cormorant Garamond", "Songti SC", "Noto Serif SC", serif;
  --sans: "Manrope", "PingFang SC", "Noto Sans SC", sans-serif;
  --shadow: 0 16px 40px rgba(36, 28, 20, 0.1);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.top { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: -0.03em; }
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--clay); color: #fff8f3; border: 0; border-radius: 999px;
  padding: 10px 18px; cursor: pointer; font-weight: 700;
}
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.leaf { background: var(--leaf); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 20px 0 64px; align-items: center; }
.kicker { letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--clay); font-weight: 800; }
h1 { font-family: var(--serif); font-size: clamp(42px, 6vw, 70px); line-height: 0.92; letter-spacing: -0.04em; margin: 8px 0 16px; font-weight: 600; }
.lede { color: var(--muted); font-size: 18px; max-width: 42ch; }
.hero-actions { display: flex; gap: 10px; margin: 24px 0 12px; flex-wrap: wrap; }
.book-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 22px;
  box-shadow: var(--shadow); transform: rotate(-1.5deg);
}
.who-row { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8b48a, #8a4b2a 62%, #3a2318);
  border: 3px solid #fff;
}
.avatar.two { background: radial-gradient(circle at 30% 20%, #c9d5c0, #4d6a52 60%, #1e2c22); }
.avatar.sm { width: 42px; height: 42px; }
.host-name { font-family: var(--serif); font-size: 26px; margin: 0; }
.one-liner { color: var(--muted); margin: 2px 0 0; font-size: 14px; }
.topics { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.chip {
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font-size: 12px; background: transparent; cursor: pointer;
}
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.slot {
  border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 10px; cursor: pointer; text-align: left;
}
.slot.on { border-color: var(--clay); background: #fff1e8; }
.strip { background: var(--ink); color: #f7efe4; padding: 32px 0; }
.strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.quote { font-family: var(--serif); font-size: 28px; margin: 0 0 8px; line-height: 1.15; }
.who { opacity: 0.65; font-size: 12px; }
.section { padding: 72px 0; }
h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); margin: 0 0 10px; letter-spacing: -0.03em; }
.sub { color: var(--muted); margin: 0 0 26px; max-width: 60ch; }
.three, .pricing { display: grid; gap: 14px; }
.three { grid-template-columns: repeat(3, 1fr); }
.pricing { grid-template-columns: 1fr 1.15fr; }
.card, .price { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 20px; }
.price.featured { background: #2a2118; color: #f7efe4; }
.amt { font-family: var(--serif); font-size: 56px; margin: 4px 0; }
ul { color: inherit; opacity: 0.85; }
footer { display: flex; justify-content: space-between; padding: 28px 0 50px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.app-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 20px; border-bottom: 1px solid var(--line); position: sticky; top: 0;
  background: rgba(243, 239, 230, 0.92); z-index: 8;
}
.tabs { display: flex; gap: 6px; }
.tab { border: 0; background: transparent; padding: 8px 12px; border-radius: 999px; cursor: pointer; color: var(--muted); }
.tab.active { background: var(--ink); color: var(--paper); }
.app { width: min(1080px, calc(100% - 32px)); margin: 22px auto 70px; }
.panel { display: none; }
.panel.show { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: 12px; font-weight: 700; margin: 12px 0 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); background: var(--white); border-radius: 12px; padding: 10px 12px; outline: none;
}
textarea { min-height: 80px; resize: vertical; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.stat b { display: block; font-family: var(--serif); font-size: 28px; }
.list { display: flex; flex-direction: column; gap: 10px; }
.item {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px;
  display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 10px; align-items: center;
}
.meta { color: var(--muted); font-size: 12px; }
.week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.day { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 10px; }
.day h4 { margin: 0 0 8px; font-size: 13px; }
.hint { color: var(--muted); font-size: 12px; }
.mail { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 14px; white-space: pre-wrap; font-size: 13px; }
.modal-bg {
  position: fixed; inset: 0; background: rgba(36,28,20,0.4); display: none; align-items: center; justify-content: center; padding: 18px; z-index: 20;
}
.modal-bg.show { display: flex; }
.modal { width: min(520px, 100%); background: var(--paper); border-radius: 20px; padding: 20px; }
.seats { display: flex; flex-direction: column; gap: 8px; }
.seat { display: flex; gap: 10px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px; }
.empty { padding: 36px; text-align: center; color: var(--muted); background: var(--white); border: 1px dashed var(--line); border-radius: 16px; }
.public { width: min(720px, calc(100% - 32px)); margin: 24px auto 80px; }
@media (max-width: 900px) {
  .hero, .three, .pricing, .grid-2, .strip .wrap, .item, .week, .slots { grid-template-columns: 1fr; }
  .nav { display: none; }
}
