/* ─── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --ink: #171a1d;
  --paper: #dcdfe3;
  --light: #e7eaee;
  --hivis: #e4ff32;
  --olive: #6b7a00;
  --body: #4a5158;
  --label: #5d666e;
  --muted-dark: #98a0a8;
  --footer: #6d757c;
  --rule-light: #c0c6cc;
  --rule-dark: #2b3034;
  --on-hivis: #3f4a1a;
  --err-border: #b3261e;
  --err-bg: #f6dedb;
  --err-text: #5d1c16;
  --caption: #7b838a;

  --sans: 'Zen Kaku Gothic New', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ─── Base ───────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--olive); }
input, select, button { font-family: var(--sans); }
::placeholder { color: var(--muted-dark); }
p { margin: 0; }
h1, h2 { margin: 0; font-weight: 700; letter-spacing: -.03em; }

.mono { font-family: var(--mono); }
.muted { color: var(--label); }
.eyebrow { font-size: 11px; letter-spacing: .2em; color: var(--label); }
.step { font-size: 11px; letter-spacing: .2em; color: var(--olive); }
.h2 { font-size: clamp(26px, 3vw, 38px); }
.h2--tight { line-height: 1.05; }

.rule { height: 6px; background: var(--hivis); }
.rule--180 { width: 180px; margin: 24px 0; }
.rule--160 { width: 160px; margin: 22px 0; }

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 0;
  transition: background .12s, color .12s;
}
.btn--hivis { background: var(--hivis); color: var(--ink); }
.btn--hivis:hover { background: var(--paper); }
.btn--ink { background: var(--ink); color: var(--hivis); }
.btn--ink:hover { background: var(--hivis); color: var(--ink); }

.btn--nav { padding: 11px 22px; font-size: 13px; letter-spacing: .1em; }
.btn--hero { margin-top: 26px; padding: 18px 30px; font-size: 15px; letter-spacing: .08em; }
.btn--inline { padding: 14px 26px; font-size: 14px; letter-spacing: .08em; }
.btn--closer { padding: 20px 28px; font-size: 16px; letter-spacing: .08em; text-align: left; }
.btn--panel { padding: 16px 28px; font-size: 15px; letter-spacing: .06em; }

/* ─── Placeholders (swap for real photography) ───────────────────────── */
.ph { display: flex; align-items: center; justify-content: center; }
.ph--light { background: repeating-linear-gradient(135deg, #cfd4d9 0 11px, var(--paper) 11px 22px); }
.ph--dark { background: repeating-linear-gradient(135deg, #22262a 0 11px, #1b1f22 11px 22px); }
.ph__caption { font-size: 11px; letter-spacing: .14em; color: var(--caption); }
.ph__caption--dark { font-size: 10px; color: var(--footer); }

/* ─── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 32px;
  background: var(--ink); color: var(--paper);
}
.nav__wordmark { color: var(--paper); font-weight: 700; font-size: 17px; letter-spacing: .3em; }
.nav__wordmark:hover { color: var(--paper); }
.nav__links { display: flex; gap: 26px; font-size: 13px; letter-spacing: .1em; }
.nav__links a { color: var(--muted-dark); }
.nav__links a:hover { color: var(--olive); }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.hero__copy { min-width: 0; padding: 52px 32px; background: var(--light); }
.hero__title { margin-top: 20px; font-size: clamp(46px, 6.2vw, 78px); line-height: .98; }
.hero__body { font-size: 17px; line-height: 1.7; color: var(--body); max-width: 440px; }
.minitable { margin-top: 32px; font-size: 14px; line-height: 2.1; border-top: 1px solid var(--rule-light); }
.minitable__row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--rule-light); }

.hero__side { min-width: 0; display: flex; flex-direction: column; }
.hero__media { flex: 1; min-height: 420px; position: relative; overflow: hidden; background: var(--ink); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; display: block; }
.hivis-block { background: var(--hivis); padding: 26px 32px; }
.hivis-block__eyebrow { font-size: 11px; letter-spacing: .2em; }
.hivis-block__stat { font-size: 52px; font-weight: 700; letter-spacing: -.03em; margin-top: 6px; }
.hivis-block__caption { font-size: 15px; color: var(--on-hivis); }
.darkbar {
  background: var(--ink); color: var(--paper); padding: 22px 32px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 15px;
}

/* ─── The Bag ────────────────────────────────────────────────────────── */
.unit { background: var(--ink); color: var(--paper); padding: 52px 32px; }
.unit__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline; justify-content: space-between; }
.unit__title { font-size: clamp(30px, 4vw, 44px); }
.unit__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 28px; }
.feature__image { height: 170px; }
.feature__title { font-weight: 700; font-size: 16px; margin-top: 12px; }
.feature__body { margin-top: 6px; font-size: 14px; line-height: 1.7; color: var(--muted-dark); }

/* ─── Process ────────────────────────────────────────────────────────── */
.process {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  background: var(--light); border-top: 1px solid var(--rule-light);
}
.process__cell { min-width: 0; padding: 40px 32px; border-left: 1px solid var(--rule-light); }
.process__cell--head { border-left: none; display: flex; align-items: flex-start; }
.process__title { font-weight: 700; font-size: 20px; margin-top: 10px; }
.process__body { margin-top: 8px; font-size: 15px; line-height: 1.7; color: var(--body); }

/* ─── Spec ───────────────────────────────────────────────────────────── */
.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); border-top: 1px solid var(--rule-light); }
.spec__cell { min-width: 0; padding: 44px 32px; }
.spec__title { margin-bottom: 22px; }
.spectable { margin: 0; font-size: 15px; border-top: 1px solid var(--rule-light); }
.spectable__row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--rule-light); }
.spectable dt { color: var(--label); }
.spectable dd { margin: 0; text-align: right; }
.spec__gallery {
  border-left: 1px solid var(--rule-light);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px;
}
.spec__image { min-height: 190px; }
.spec__image .ph__caption { font-size: 10px; }

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--rule-light); background: var(--light);
}
.faq__cell { min-width: 0; padding: 44px 32px; }
.faq__cell--list { border-left: 1px solid var(--rule-light); }
.faq__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px 36px; }
.faq__q { font-weight: 700; font-size: 16px; }
.faq__a { margin-top: 7px; font-size: 15px; line-height: 1.7; color: var(--body); }

/* ─── Closer + footer ────────────────────────────────────────────────── */
.closer { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); background: var(--ink); color: var(--paper); }
.closer__cell { min-width: 0; padding: 52px 32px; }
.closer__cell--cta { display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; border-left: 1px solid var(--rule-dark); }

.footer {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  background: var(--ink); color: var(--footer); border-top: 1px solid var(--rule-dark);
  font-size: 11px; letter-spacing: .14em;
}
.footer__left { padding: 16px 32px; }
.footer__links { padding: 16px 32px; display: flex; gap: 24px; }
.footer__links a { color: var(--footer); }
.footer__links a:hover { color: var(--paper); }

/* ─── Reservation panel ──────────────────────────────────────────────── */
.scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(23, 26, 29, .74);
  display: flex; justify-content: flex-end;
}
.scrim[hidden] { display: none; }
.panel {
  width: min(760px, 100%); background: var(--light);
  overflow-y: auto; display: flex; flex-direction: column;
  animation: slide-in .22s ease-out;
}
@keyframes slide-in { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .panel { animation: none; } }

.panel__head {
  position: sticky; top: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 26px; background: var(--ink); color: var(--paper);
}
.panel__head-title { font-weight: 700; font-size: 15px; letter-spacing: .2em; }
.panel__close { background: none; border: none; color: var(--muted-dark); font-size: 12px; letter-spacing: .14em; cursor: pointer; }
.panel__close:hover { color: var(--paper); }

.panel__form { padding: 32px 26px 0; }
.panel__form[hidden] { display: none; }
.panel__title { font-size: 24px; font-weight: 700; letter-spacing: -.025em; }
.panel__body { margin-top: 10px; font-size: 16px; line-height: 1.7; color: var(--body); max-width: 460px; }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 24px; }
.field {
  grid-column: 1 / -1; display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; letter-spacing: .14em; color: var(--label);
}
.field input {
  border: 1px solid var(--ink); background: #fff; padding: 15px; font-size: 16px;
  outline: none; color: var(--ink); border-radius: 0; width: 100%;
}
.field input:focus { outline: 2px solid var(--hivis); outline-offset: -1px; }
.input--mono { font-family: var(--mono); }
.fineprint { font-size: 11px; letter-spacing: .12em; color: var(--label); margin-top: 14px; }
.error {
  margin-top: 14px; border-left: 6px solid var(--err-border); background: var(--err-bg);
  color: var(--err-text); padding: 12px 16px; font-size: 14px; line-height: 1.6;
}
.error[hidden] { display: none; }

.panel__done { padding: 44px 26px 0; }
.panel__done[hidden] { display: none; }
.panel__done-title { font-size: clamp(30px, 4.6vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; margin-top: 12px; max-width: 520px; }
.panel__done-line { font-size: 16px; line-height: 1.7; color: var(--body); }

.panel__spacer { flex: 1; }
.panel__foot {
  position: sticky; bottom: 0; background: var(--ink); color: var(--paper);
  margin-top: 32px; padding: 18px 26px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.panel__status { font-size: 14px; color: var(--muted-dark); }

body.panel-open { overflow: hidden; }
