/* Self-hosted so the site makes no third-party request at all. Latin subset;
   Manrope is the variable font, so one file covers 400-700.
   Both SIL Open Font License 1.1 — see public/fonts/OFL-*.txt. */

@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* yourwishpage.com — ported from the Claude Design comp `yourwishpage.dc.html`.
   The comp is deliberately light (cream ground). `color-scheme: light` is load-bearing:
   without it Chrome's auto-dark heuristic re-tints the whole palette. */

:root {
  color-scheme: light;

  --cream: #f6f1e7;
  --card: #fffdf8;
  --ink: #1c2a22;
  --green: #1f3d2b;
  --green-hover: #16301f;
  --green-deep: #173323;
  --terracotta: #b2452f;
  --mint: #d6f6de;
  --mint-hover: #c3efcf;

  --body: #2f3c35;
  --body-soft: #3a4740;
  --muted: #4a5750;
  /* The comp's #6b776f measures 3.86:1 on the reserved chip and 4.15:1 on the
     cream ground, i.e. under AA. Darkened just enough to clear 4.5:1 on every
     ground it is used against; the comp's hue is unchanged. */
  --faint: #5b6862;

  --border: #e3dccb;
  --border-strong: #d8d0bf;
  --hover-cream: #efe9dc;
  --hover-cream-deep: #ebe4d5;

  --on-green: #f2ede0;
  --on-green-soft: #d9e1d8;
  --on-green-faint: #bfc9bf;

  --tint-birthday: #f1d9b8;
  --ink-birthday: #7a4a1e;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: Manrope, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --shell: 1080px;
  --swatch: repeating-linear-gradient(135deg, #e6dfd0 0 8px, #ede7da 8px 16px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--green); }
a:hover { color: var(--green-hover); }
img { max-width: 100%; display: block; }
input, button, textarea, select { font-family: inherit; }
[hidden] { display: none !important; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 2.5px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.shell-narrow { max-width: 960px; }
.shell-tight { max-width: 820px; }
.grow { flex: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.rise { animation: rise .4s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- type ---------- */

.display { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.02; margin: 0; }
.h1 { font-size: clamp(40px, 6.5vw, 84px); line-height: .98; }
.h2 { font-size: clamp(30px, 4vw, 40px); line-height: 1.05; letter-spacing: -.01em; }
.h3 { font-size: clamp(24px, 3vw, 30px); line-height: 1.1; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 10px;
}
.eyebrow-accent { color: var(--terracotta); }
.mono { font-family: var(--mono); }
.lede { font-size: 18px; line-height: 1.55; color: var(--body); max-width: 46ch; text-wrap: pretty; }
.small { font-size: 14px; color: var(--body-soft); }
.tiny { font-size: 13px; color: var(--faint); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 18px; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--green); color: var(--cream); }
.btn-primary:hover { background: var(--green-hover); color: var(--cream); }
.btn-cta {
  background: var(--mint); color: var(--green); font-size: 16px; padding: 17px 28px;
  box-shadow: 0 14px 30px -14px rgba(31, 61, 43, .55);
}
.btn-cta:hover { background: var(--mint-hover); color: var(--green); }
.btn-outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--hover-cream-deep); color: var(--green); }
.btn-quiet { background: transparent; border: 1.5px solid var(--border-strong); color: var(--ink); font-weight: 600; }
.btn-quiet:hover { background: var(--hover-cream); color: var(--ink); }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: #98371f; color: #fff; }
.btn-link {
  background: transparent; border: 0; color: var(--body); font-weight: 600; font-size: 16px;
  text-decoration: underline; text-underline-offset: 4px; padding: 16px 12px;
}
.btn-link:hover { color: var(--green); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- header / footer ---------- */

.site-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; max-width: var(--shell); margin: 0 auto; width: 100%;
}
.wordmark {
  font-family: var(--serif); font-size: 24px; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none;
}
.wordmark:hover { color: var(--ink); }
.wordmark .dot { color: var(--terracotta); }
.head-actions { display: flex; gap: 10px; align-items: center; }
.head-link { text-decoration: none; font-size: 14px; font-weight: 600; padding: 10px 12px; color: var(--green); }

.avatar {
  border-radius: 50%; background: var(--green); color: var(--cream);
  display: grid; place-items: center; font-family: var(--serif); flex: none;
  width: 40px; height: 40px; font-size: 20px;
}
.avatar-sm { width: 34px; height: 34px; font-size: 17px; }
.avatar-lg { width: 56px; height: 56px; font-size: 28px; background: var(--cream); color: var(--green); border: 3px solid var(--terracotta); }

.site-foot {
  max-width: var(--shell); margin: 0 auto; width: 100%;
  padding: 36px 24px 48px; display: flex; flex-wrap: wrap;
  gap: 8px 22px; font-size: 14px; color: var(--muted); align-items: center;
}
.site-foot a { text-decoration: none; color: var(--muted); }
.site-foot a:hover { color: var(--green); text-decoration: underline; }
.foot-mark { font-family: var(--serif); font-size: 18px; color: var(--ink); margin-right: auto; }

/* ---------- landing ---------- */

.hero {
  max-width: var(--shell); margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; align-items: center;
}
.hero h1 { margin: 0 0 14px; }
.hero h1 em { color: var(--green); }
.hero-sub {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--body-soft); margin: 0 0 18px; letter-spacing: -.01em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-fine { font-size: 14px; color: var(--body-soft); margin-top: 14px; }
.hero-aside { position: relative; padding: 24px; min-width: 0; }
.hero-aside .eyebrow { margin-left: 6px; }

.peek {
  display: block; width: 100%; text-align: left; color: inherit; text-decoration: none;
  background: var(--card); border: 0; border-radius: 22px; padding: 26px; cursor: pointer;
  box-shadow: 0 30px 60px -30px rgba(28, 42, 34, .35), 0 1px 0 rgba(28, 42, 34, .06);
  transform: rotate(-1.5deg); transition: transform .2s ease;
}
.peek:hover { transform: rotate(-1.5deg) translateY(-3px); color: inherit; }
.peek-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.peek-rows, .peek-foot { display: block; }
.peek-head > span:last-child { min-width: 0; }
/* Both live inside an <a>, so they need to be told to stack. */
.peek-title { display: block; font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.peek-url {
  display: block; font-size: 13px; color: var(--muted); font-family: var(--mono);
  overflow-wrap: anywhere;
}
.peek-rows { display: grid; gap: 10px; }
.peek-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 12px; background: var(--cream);
}
.peek-row.is-reserved { opacity: .65; }
.peek-thumb { width: 44px; height: 44px; border-radius: 8px; background: var(--swatch); flex: none; }
.peek-row-main { flex: 1; min-width: 0; }
.peek-row-title { font-weight: 600; font-size: 14px; }
.peek-row-store { font-size: 13px; color: var(--muted); }
.peek-foot { margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.45; }

.pill-reserved {
  background: var(--ink); color: var(--cream); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px;
  white-space: nowrap;
}
.pill-top {
  background: var(--terracotta); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px;
}

.steps {
  max-width: var(--shell); margin: 0 auto; padding: 16px 24px 56px;
}
.steps-inner {
  display: flex; flex-wrap: wrap; gap: 12px 36px;
  border-top: 1px solid var(--border); padding-top: 22px;
}
.step { display: flex; gap: 12px; align-items: baseline; flex: 1; min-width: 220px; }
.step-n { font-family: var(--serif); font-size: 26px; color: var(--terracotta); line-height: 1; }
.step b { font-size: 15px; }
.step span { font-size: 15px; color: var(--body-soft); }

.band { background: var(--green); color: var(--on-green); }
.band-inner {
  max-width: var(--shell); margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; align-items: center;
}
.band h2 { margin: 0 0 14px; }
.band p { margin: 0 0 14px; line-height: 1.55; color: var(--on-green-soft); font-size: 17px; max-width: 44ch; }
.band .mono { color: var(--on-green); }
.band-fine { font-size: 14px; color: var(--on-green-faint); }

.profile-card {
  background: var(--card); color: var(--ink); border-radius: 22px; padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); min-width: 0;
}
.profile-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.profile-rows { display: grid; gap: 8px; }
.profile-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 14px; background: var(--cream); text-decoration: none; color: inherit;
  transition: background-color .15s ease;
}
.profile-row:hover { background: var(--hover-cream); color: inherit; }
.glyph {
  border-radius: 10px; flex: none; display: grid; place-items: center;
  font-family: var(--serif); width: 36px; height: 36px; font-size: 18px;
}
.glyph-lg { width: 52px; height: 52px; border-radius: 14px; font-size: 24px; }
.profile-row-main { flex: 1; min-width: 0; }
.profile-row-main b { font-size: 15px; display: block; }
.profile-row-main span { font-size: 13px; color: var(--muted); }
.profile-row-go { font-size: 13px; font-weight: 600; color: var(--green); white-space: nowrap; }

/* ---------- public wishlist page ---------- */

.page-hero { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: auto -10% -60% -10%;
  height: 220px; border-radius: 50%; background: var(--green-deep);
}
.page-hero-inner {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  padding: 32px 24px 60px; text-align: center;
}
.page-hero .avatar-lg { margin: 0 auto 12px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 50px); margin: 0 0 10px; text-wrap: pretty; }
.page-hero p {
  font-size: 17px; line-height: 1.45; color: #dfe6de;
  margin: 0 auto 14px; max-width: 46ch; text-wrap: pretty;
}
.page-facts {
  display: inline-flex; gap: 8px; align-items: center; font-size: 14px;
  color: #c9d3c8; flex-wrap: wrap; justify-content: center;
}
.page-facts .sep { opacity: .4; }

.page-body { max-width: var(--shell); margin: -40px auto 0; padding: 0 20px 56px; position: relative; z-index: 1; }

.wish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.wish-card {
  background: var(--card); border-radius: 18px; overflow: hidden;
  box-shadow: 0 1px 0 rgba(28, 42, 34, .06), 0 12px 30px -20px rgba(28, 42, 34, .3);
  display: flex; flex-direction: column; transition: opacity .3s;
}
.wish-card.is-reserved { opacity: .72; }
.wish-media {
  position: relative; aspect-ratio: 4 / 3; background: var(--swatch);
  display: grid; place-items: center;
}
.wish-media img { width: 100%; height: 100%; object-fit: cover; }
.wish-media-label {
  font-family: var(--mono); font-size: 11px; color: var(--faint);
  background: rgba(255, 253, 248, .85); padding: 4px 8px; border-radius: 6px;
}
.wish-media .pill-top { position: absolute; top: 10px; left: 10px; }
.wish-media .pill-reserved { position: absolute; top: 10px; right: 10px; }
.wish-body { padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wish-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.wish-title { font-weight: 700; font-size: 16px; line-height: 1.25; }
.wish-price { font-weight: 700; font-size: 16px; white-space: nowrap; }
.wish-meta { font-size: 14px; color: var(--muted); }
.wish-note {
  font-size: 14px; line-height: 1.45; color: var(--body);
  background: var(--cream); border-radius: 8px; padding: 8px 10px; margin-top: 2px;
}
.wish-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 10px; }
.wish-actions > * { flex: 1; font-size: 13px; padding: 11px 12px; }
.wish-taken {
  text-align: center; color: var(--faint); border-radius: 999px; padding: 11px 12px;
  font-size: 13px; font-weight: 600; background: var(--hover-cream);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.wish-empty {
  background: var(--card); border: 1px dashed var(--border-strong); border-radius: 18px;
  padding: 40px 24px; text-align: center; color: var(--muted);
}

.page-close {
  margin-top: 48px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.page-close .tiny { max-width: 52ch; }
.page-close-cta {
  text-decoration: none; font-size: 14px; font-weight: 700;
  color: var(--green); border-bottom: 1.5px solid var(--green);
}

/* ---------- dashboard ---------- */

.dash { max-width: 960px; margin: 0 auto; padding: 24px 24px 64px; }
.dash-head {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: end; gap: 16px; margin-bottom: 28px;
}
.dash-head h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1; margin: 0 0 10px; }
.url-chip {
  display: inline-flex; align-items: center; gap: 10px; background: var(--card);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 8px 8px 14px; font-size: 13px; max-width: 100%;
}
.url-chip .mono { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.url-chip button {
  background: var(--ink); color: var(--cream); border: 0; border-radius: 999px;
  padding: 6px 10px; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; flex: none;
}
.url-chip button:hover { background: #0f1a14; }

.list-cards { display: grid; gap: 14px; }
.list-card {
  background: var(--card); border-radius: 20px; padding: 22px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px;
  align-items: center; box-shadow: 0 1px 0 rgba(28, 42, 34, .06);
}
.list-card-main { display: flex; gap: 16px; align-items: center; min-width: 0; }
.list-card-text { min-width: 0; }
.list-card-title { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.list-card-title h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0; }
.list-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
}
.list-url {
  font-size: 13px; color: var(--faint); margin-top: 4px; font-family: var(--mono);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.list-stat { font-size: 14px; margin-top: 8px; color: var(--muted); }
.list-card-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: end; }
.list-card-actions .btn { font-size: 13px; padding: 10px 14px; }

.add-band {
  margin-top: 36px; background: var(--green); color: #e9e2d3; border-radius: 20px; padding: 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: center;
}
.add-band h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 6px; }
.add-band p { font-size: 13px; color: var(--on-green-faint); line-height: 1.5; margin: 0; }
.add-form {
  display: flex; gap: 8px; background: var(--card);
  border-radius: 999px; padding: 6px 6px 6px 16px; min-width: 0;
}
.add-form input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font-size: 14px; color: var(--ink); outline: none;
}
.add-form .btn { white-space: nowrap; padding: 10px 16px; font-size: 13px; }

.dash-empty {
  background: var(--card); border: 1px dashed var(--border-strong);
  border-radius: 20px; padding: 40px 24px; text-align: center;
}
.dash-empty h2 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0 0 8px; }

.wish-admin {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 14px; background: var(--cream); min-width: 0;
}
.wish-admin-main { flex: 1; min-width: 0; }
.wish-admin-main b { font-size: 15px; }
.wish-admin form { margin: 0; }
.link-danger {
  background: transparent; border: 0; color: var(--terracotta);
  font: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; padding: 6px;
}

/* ---------- dialogs ---------- */

dialog.sheet {
  border: 0; padding: 0; background: transparent; max-width: 440px; width: calc(100% - 32px);
  margin: auto auto 24px; color: var(--ink);
}
dialog.sheet::backdrop { background: rgba(28, 42, 34, .55); }
.sheet-inner {
  background: var(--card); border-radius: 22px; padding: 26px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); animation: rise .3s ease-out both;
}
.sheet-inner h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.1; margin: 0 0 8px; }
.sheet-inner p { margin: 0 0 18px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.sheet-actions { display: flex; gap: 10px; }
.sheet-actions .btn { padding: 13px; }
.sheet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sheet-grid .btn { border-radius: 12px; padding: 14px; }
.share-preview {
  border: 1px solid var(--border); border-radius: 14px; padding: 12px;
  display: flex; gap: 12px; align-items: center; margin-bottom: 18px; background: var(--cream);
}
.share-preview .glyph { width: 56px; height: 56px; border-radius: 10px; font-size: 22px; }

/* ---------- forms ---------- */

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--border-strong); border-radius: 12px;
  padding: 13px 14px; font-size: 16px; background: #fff; color: var(--ink); outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); }
.field-hint { font-size: 12px; color: var(--faint); margin-top: 6px; }
.field-prefix { display: flex; align-items: center; gap: 0; }
.field-prefix .prefix {
  font-family: var(--mono); font-size: 14px; color: var(--muted);
  border: 1.5px solid var(--border-strong); border-right: 0;
  border-radius: 12px 0 0 12px; padding: 13px 4px 13px 14px; background: var(--cream); white-space: nowrap;
}
.field-prefix input { border-radius: 0 12px 12px 0; border-left: 0; }

.auth-card {
  background: var(--card); border-radius: 22px; padding: 32px;
  box-shadow: 0 30px 60px -40px rgba(28, 42, 34, .35), 0 1px 0 rgba(28, 42, 34, .06);
  max-width: 460px; margin: 24px auto 64px;
}
.auth-card h1 { font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1.05; margin: 0 0 8px; }
.auth-card > p { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--muted); }

.notice {
  border-radius: 14px; padding: 12px 14px; font-size: 14px;
  margin-bottom: 18px; line-height: 1.45;
}
.notice-error { background: #f7e2dc; color: #7d2a15; border: 1px solid #e6c3b8; }
.notice-info { background: var(--mint); color: var(--green); border: 1px solid #b9e7c6; }

/* ---------- content pages ---------- */

.prose { max-width: 68ch; margin: 0 auto; padding: 8px 24px 64px; }
.prose h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 52px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 16px; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.1; margin: 36px 0 10px; }
.prose h3 { font-size: 17px; margin: 24px 0 6px; }
.prose p, .prose li { font-size: 17px; line-height: 1.6; color: var(--body); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose .lede { font-size: 19px; color: var(--body-soft); max-width: none; }
.faq { border-top: 1px solid var(--border); padding-top: 8px; margin-top: 28px; }
.faq details { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 22px; color: var(--terracotta); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; font-size: 16px; }

/* ---------- toast ---------- */

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 40;
  background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6);
  animation: rise .3s ease-out both; max-width: calc(100vw - 32px); text-align: center;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .hero { padding-top: 24px; gap: 24px; }
  .hero-aside { padding: 8px 0 0; }
  .peek { transform: none; }
  .peek:hover { transform: translateY(-3px); }
  .list-card { grid-template-columns: minmax(0, 1fr); }
  .list-card-actions { justify-content: start; }
  .site-head { padding: 16px; }
  .head-link { padding: 10px 4px; }
  .shell, .dash, .page-body { padding-left: 16px; padding-right: 16px; }
  .sheet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .head-actions .btn { padding: 10px 14px; font-size: 13px; }
  .wordmark { font-size: 20px; }
}

/* ---------- language switcher ---------- */

.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-sep { color: var(--muted); }
.site-foot .lang-link {
  text-decoration: none; color: var(--muted); font-weight: 600;
  padding: 2px 4px; border-radius: 4px;
}
.site-foot .lang-link:hover { color: var(--green); background: var(--hover-cream); text-decoration: none; }
.site-foot .lang-link.is-current { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-mark .dot { color: var(--terracotta); }

/* ---------- after a reservation ---------- */

.after-reserve {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--terracotta);
  border-radius: 18px; padding: 20px 24px;
  max-width: 760px; margin: 0 auto 22px;
  box-shadow: 0 12px 30px -24px rgba(28, 42, 34, .4);
}
.after-reserve-text { flex: 1; min-width: 240px; }
.after-reserve-title {
  font-family: var(--serif); font-size: 24px; line-height: 1.15;
  margin: 0 0 6px; color: var(--ink);
}
.after-reserve-body { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 44ch; }
.after-reserve-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.after-reserve-dismiss { font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.after-reserve-dismiss:hover { color: var(--green); }
.page-when { font-weight: 700; color: var(--cream); }

/* ---------- per-list search visibility ---------- */

.visibility {
  margin-top: 28px; padding: 20px 22px;
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--border-strong); border-radius: 16px;
}
.visibility.is-public { border-left-color: var(--terracotta); }
.visibility h2 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  margin: 0 0 6px; line-height: 1.2;
}
.visibility-state { margin: 0 0 8px; font-size: 15px; color: var(--ink); font-weight: 600; }
.visibility .tiny { margin: 0 0 14px; max-width: 58ch; }
.visibility form { margin: 0; }
