:root {
  --sumi: #161311;
  --ink: #2a241f;
  --washi: #f3ece1;
  --paper: #fffaf2;
  --line: #e2d6c4;
  --vermillion: #c4452d;
  --vermillion-dark: #9a321f;
  --indigo: #1c3d5a;
  --indigo-deep: #102536;
  --gold: #b8924a;
  --moss: #3f6b4e;
  --warn: #a15c12;
  --ok: #2f6b46;
  --muted: #6d6458;
  --shadow: 0 18px 50px rgba(22, 19, 17, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 69, 45, 0.08), transparent 50%),
    radial-gradient(900px 400px at 110% 0%, rgba(28, 61, 90, 0.1), transparent 45%),
    var(--washi);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='48' viewBox='0 0 84 48'><path d='M0 24h84M42 0v48M21 12l42 24M21 36l42-24' stroke='%23c4a574' stroke-width='0.6' fill='none'/></svg>");
  z-index: 0;
}

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(16, 37, 54, 0.92);
  color: #f7f1e6;
  border-bottom: 1px solid rgba(184, 146, 74, 0.35);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; letter-spacing: 0.04em; }
.brand span { color: #d8c7a4; font-size: 0.82rem; }
nav { display: flex; flex-wrap: wrap; gap: 6px; }
nav a {
  color: #f7f1e6;
  text-decoration: none;
  font-size: 0.84rem;
  padding: 7px 10px;
  border-radius: 999px;
}
nav a:hover { background: rgba(255,255,255,0.08); }

.hero {
  padding: 56px 0 28px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vermillion-dark);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.95;
  margin: 12px 0 16px;
  max-width: 14ch;
}
.lede { max-width: 62ch; color: var(--muted); font-size: 1.05rem; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
}

.grid-2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.card h2, .card h3, section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 10px;
}
section { padding: 28px 0; }
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.alert {
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid transparent;
}
.alert.danger { background: #fbece8; border-color: #e8c1b6; }
.alert.warn { background: #f8efd8; border-color: #e7d3a4; }
.alert.ok { background: #e8f2ea; border-color: #c3dcc9; }
.alert b { display: block; margin-bottom: 4px; }

#map {
  height: 420px;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.table-wrap { overflow: auto; border-radius: 16px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 640px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
th { background: #efe6d6; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.right { text-align: right; }

.nights {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.night {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 10px;
  min-height: 96px;
}
.night small { color: var(--muted); display: block; }
.night b { display: block; margin-top: 4px; }
.night .n { color: var(--vermillion); font-size: 0.78rem; }

.day {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.day:last-child { border-bottom: 0; }
.date { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; line-height: 1.1; }
.date span { display: block; color: var(--muted); font-family: "IBM Plex Sans", sans-serif; font-size: 0.78rem; margin-top: 4px; }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.badge.keep { background: #e8f2ea; color: var(--ok); }
.badge.change { background: #fbece8; color: var(--vermillion-dark); }
.badge.check { background: #f8efd8; color: var(--warn); }
.costs { color: var(--muted); font-size: 0.9rem; }

.hotel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; }
.price small { display: block; font-size: 0.85rem; color: var(--muted); font-family: "IBM Plex Sans", sans-serif; }
.alt { margin-top: 8px; font-size: 0.92rem; }

.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
}
.checklist input { margin-top: 4px; }

.sources { font-size: 0.85rem; color: var(--muted); }
.sources a { color: var(--indigo); }
footer { padding: 40px 0 60px; color: var(--muted); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .day, .hotel, .nights { grid-template-columns: 1fr; }
  nav { display: none; }
}
