/* ============================================================
   PURRHAUS — a Bauhaus-tinged cat café, Bengaluru (fictional)
   Warm paper base · one confident tomato accent · Fraunces + Karla
   Perf laws: transform/opacity only · no backdrop-filter in
   scrolling containers · no infinite SMIL/filter animation.
   ============================================================ */

:root {
  --paper: #f5eedf;
  --paper-2: #ece1c9;
  --paper-3: #e4d6b8;
  --ink: #221d14;
  --ink-soft: #4c4433;
  --accent: #e0491f;
  --accent-deep: #b93312;
  --mustard: #e2a53b;
  --line: rgba(34, 29, 20, 0.16);
  --line-strong: rgba(34, 29, 20, 0.34);
  --radius: 18px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Karla", "Segoe UI", sans-serif;
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1180px, calc(100vw - clamp(32px, 6vw, 96px)));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--paper); }

img, canvas, video, svg { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 14em;
}
.section-head p.lede {
  margin-top: 14px;
  max-width: 44em;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
}

/* ---------- loader ---------- */

#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 7vw, 72px);
  letter-spacing: 0.04em;
  display: flex;
  overflow: hidden;
}
.loader-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: loaderUp 0.6s var(--ease-snap) forwards;
}
.loader-word span:nth-child(2) { animation-delay: 0.05s; }
.loader-word span:nth-child(3) { animation-delay: 0.1s; }
.loader-word span:nth-child(4) { animation-delay: 0.15s; }
.loader-word span:nth-child(5) { animation-delay: 0.2s; }
.loader-word span:nth-child(6) { animation-delay: 0.25s; }
.loader-word span:nth-child(7) { animation-delay: 0.3s; }
.loader-word span:nth-child(8) { animation-delay: 0.35s; }
@keyframes loaderUp { to { transform: translateY(0); } }
.loader-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: loaderFade 0.5s ease 0.5s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
.loader-paw {
  width: 30px;
  height: 30px;
  opacity: 0;
  animation: loaderFade 0.5s ease 0.65s forwards;
}
@media (prefers-reduced-motion: reduce) {
  #loader { display: none; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.brand .dot { color: var(--accent); }
.brand small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-snap);
}
.site-nav a:hover { background: var(--paper-2); transform: translateY(-1px); }
.site-nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.site-nav a.nav-cta { background: var(--accent); color: var(--paper); }
.site-nav a.nav-cta:hover { background: var(--accent-deep); }

@media (max-width: 640px) {
  .site-header .bar { flex-wrap: wrap; row-gap: 2px; justify-content: center; padding: 10px 0; }
  .brand { font-size: 20px; }
  .brand small { display: none; }
  .site-nav { gap: 2px; }
  .site-nav a { padding: 7px 9px; font-size: 12.5px; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.22s var(--ease-snap), background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn.btn-accent { background: var(--accent); border-color: var(--accent); }
.btn.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn.btn-ghost { background: transparent; color: var(--ink); }
.btn.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform 0.22s var(--ease-snap); }
.btn:hover .arrow { transform: translateX(4px); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 8vh, 96px) 0 clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 92px);
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 34em;
}
.hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--mustard); }

/* per-letter reveal (words are nowrap wrappers — never break mid-word) */
.split .w { display: inline-block; white-space: nowrap; }
.split .l { display: inline-block; }
.js-anim .split .l {
  opacity: 0;
  transform: translateY(0.55em) rotate(4deg);
  animation: letterIn 0.6s var(--ease-snap) forwards;
  animation-delay: calc(var(--i) * 28ms + 0.15s);
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* laser playground */
.laser-stage {
  position: relative;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(226, 165, 59, 0.22), transparent 42%),
    var(--paper-2);
  aspect-ratio: 4 / 4.6;
  max-height: 560px;
  overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--ink);
}
.laser-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.laser-hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.laser-score {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .laser-stage { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ---------- marquee strip (static, no infinite anim) ---------- */

.strip {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-content: space-between;
}
.strip .sep { color: var(--accent); }
@media (max-width: 720px) {
  .strip .wrap span:nth-child(n + 4) { display: none; }
}

/* ---------- sections ---------- */

section.block { padding: clamp(56px, 9vh, 110px) 0; }
section.block + section.block { border-top: 1px solid var(--line); }
section.tinted { background: var(--paper-2); border-top: 1px solid var(--line); }

.cols-3 {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.concept-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
  position: relative;
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap);
}
.concept-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 0 var(--ink); }
.concept-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
}
.concept-card h3 { margin-top: 10px; font-size: 24px; }
.concept-card p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) {
  .cols-3 { grid-template-columns: 1fr; }
}

/* ---------- house rules ---------- */

.rules {
  margin-top: 40px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.rule {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 26px;
  align-items: baseline;
  transition: background-color 0.2s ease;
}
.rule + .rule { border-top: 1px solid var(--line); }
.rule:hover { background: var(--paper-2); }
.rule .no {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
}
.rule h3 { font-size: 20px; }
.rule p { margin-top: 6px; color: var(--ink-soft); font-size: 15px; max-width: 56em; }
@media (max-width: 640px) {
  .rule { grid-template-columns: 48px 1fr; padding: 18px; }
}

/* ---------- nap board ---------- */

.napboard {
  margin-top: 40px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.napboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(245, 238, 223, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.live-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--mustard); }
.live-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  font-style: normal;
}
.nap-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px 22px;
  align-items: baseline;
  font-size: 15px;
}
.nap-row + .nap-row { border-top: 1px solid rgba(245, 238, 223, 0.12); }
.nap-row .who { font-family: var(--font-display); font-weight: 900; font-size: 17px; }
.nap-row .where { color: rgba(245, 238, 223, 0.78); }
.nap-row .state {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 238, 223, 0.35);
  white-space: nowrap;
}
.nap-row .state.asleep { color: var(--mustard); border-color: var(--mustard); }
.nap-row .state.awake { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.nap-foot {
  padding: 12px 22px;
  font-size: 12px;
  color: rgba(245, 238, 223, 0.55);
  border-top: 1px solid rgba(245, 238, 223, 0.12);
}
@media (max-width: 640px) {
  .nap-row { grid-template-columns: 1fr auto; }
  .nap-row .where { grid-column: 1 / -1; }
}

/* ---------- video slots ---------- */

.vid-slot {
  position: relative;
  margin-top: 44px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background:
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(34, 29, 20, 0.05) 22px 44px),
    var(--paper-3);
}
.vid-slot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 18px 26px;
  box-shadow: 6px 6px 0 0 var(--ink);
  max-width: min(82%, 460px);
}
.vid-chip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.15;
}
.vid-chip small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.vid-slot .reel-tag {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- teaser rails ---------- */

.rails {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.rail {
  position: relative;
  display: block;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  min-height: 220px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap);
}
.rail:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 0 var(--ink); }
.rail .rail-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.rail h3 { margin-top: 12px; font-size: clamp(24px, 2.4vw, 32px); }
.rail p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; max-width: 26em; }
.rail .go {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.25s var(--ease-snap);
}
.rail:hover .go { transform: translateX(5px); }
.rail.rail-accent { background: var(--accent); border-color: var(--accent-deep); color: var(--paper); }
.rail.rail-accent .rail-kicker { color: var(--paper); opacity: 0.85; }
.rail.rail-accent p { color: rgba(245, 238, 223, 0.85); }
.rail.rail-accent:hover { box-shadow: 6px 6px 0 0 var(--accent-deep); }
.rail.rail-dark { background: var(--ink); color: var(--paper); }
.rail.rail-dark .rail-kicker { color: var(--mustard); }
.rail.rail-dark p { color: rgba(245, 238, 223, 0.75); }
@media (max-width: 860px) {
  .rails { grid-template-columns: 1fr; }
  .rail { min-height: 0; padding-bottom: 56px; }
}

/* ---------- cats page ---------- */

.cat-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.cat-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap);
}
.cat-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 0 var(--ink); }
.cat-portrait {
  position: relative;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
}
.cat-portrait .mono {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(84px, 9vw, 128px);
  line-height: 1;
  transition: transform 0.3s var(--ease-snap);
}
.cat-card:hover .cat-portrait .mono { transform: rotate(-6deg) scale(1.08); }
.cat-portrait .ears {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 34px;
  height: 20px;
  opacity: 0.9;
}
.cat-portrait::after {
  content: "";
  position: absolute;
  inset: auto -20px -32px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.35;
}
.cat-body { padding: 20px 22px 22px; }
.cat-body .cat-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.cat-body h3 { font-size: 26px; }
.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.badge.adopt { background: var(--mustard); }
.badge.staff { background: transparent; color: var(--ink-soft); border-color: var(--line-strong); }
.cat-body .bio { margin-top: 8px; font-size: 14px; color: var(--ink-soft); min-height: 3.2em; }
.stat { margin-top: 14px; }
.stat .stat-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat .bar {
  margin-top: 6px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper-2);
}
.stat .bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(var(--v, 0.5));
}
.stat.mustard .bar i { background: var(--mustard); }
.laptop-take {
  margin-top: 16px;
  font-size: 13px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 12px;
}
.laptop-take strong {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 4px;
}

/* ---------- menu page ---------- */

.menu-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.menu-col h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.menu-col h3 small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease, transform 0.2s var(--ease-snap);
}
.menu-item:hover { background: var(--paper-2); transform: translateX(4px); }
.menu-item .mi-name { font-weight: 700; font-size: 16px; }
.menu-item .mi-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--accent-deep);
  white-space: nowrap;
}
.menu-item .mi-desc {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-soft);
}
.menu-item .tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 2px;
  color: var(--ink-soft);
}
.bribe-note {
  margin-top: 26px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--paper);
}
.bribe-note strong { color: var(--ink); }
@media (max-width: 820px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ---------- visit page ---------- */

.visit-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
}

.booking {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 8px 8px 0 0 var(--ink);
  overflow: hidden;
}
.booking-head {
  padding: 22px 26px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--accent);
  color: var(--paper);
}
.booking-head h3 { font-size: 24px; }
.booking-head p { margin-top: 4px; font-size: 13px; opacity: 0.9; }
.booking-body { padding: 26px; }
.field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 22px 0 10px;
}
.field-label:first-child { margin-top: 0; }
.day-row, .slot-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s var(--ease-snap), background-color 0.18s ease, color 0.18s ease;
}
.chip-btn:hover { transform: translateY(-2px); }
.chip-btn[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.chip-btn .sub { display: block; font-weight: 400; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; }
.chip-btn[disabled] { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
}
.stepper button {
  font-size: 20px;
  font-weight: 700;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--paper-2);
  cursor: pointer;
  transition: background-color 0.15s ease;
  color: var(--ink);
}
.stepper button:hover { background: var(--paper-3); }
.stepper output {
  width: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
}
.addon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.addon:hover { background: var(--paper-2); }
.addon input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--accent); }
.addon .addon-name { font-weight: 700; font-size: 15px; }
.addon .addon-desc { font-size: 13px; color: var(--ink-soft); }
.quote {
  margin-top: 26px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 4px 0;
}
.quote-row.total {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--ink);
  padding-top: 10px;
}
.booking .btn { width: 100%; justify-content: center; margin-top: 18px; }
.allergy-line {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-left: 3px solid var(--mustard);
  padding-left: 12px;
}

/* confirmation state */
.confirm-panel { text-align: center; padding: 14px 6px 6px; }
.confirm-panel .tick {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--mustard);
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 30px;
}
.confirm-panel h3 { font-size: 28px; }
.confirm-panel .ref {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--paper-2);
  border: 1.5px dashed var(--line-strong);
  border-radius: 10px;
  padding: 8px 18px;
}
.confirm-panel p.det { margin-top: 14px; font-size: 15px; color: var(--ink-soft); }
.confirm-panel .note { margin-top: 16px; font-size: 12px; color: var(--ink-soft); }

.info-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px 26px;
}
.info-card + .info-card { margin-top: 18px; }
.info-card h3 { font-size: 22px; display: flex; align-items: baseline; justify-content: space-between; }
.info-card h3 small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.info-card address { font-style: normal; margin-top: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.hours { margin-top: 10px; width: 100%; border-collapse: collapse; font-size: 14px; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.first-visit { margin-top: 12px; padding-left: 0; list-style: none; }
.first-visit li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.first-visit li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.first-visit li:last-child { border-bottom: 0; }

/* ---------- 404 ---------- */

.err-hero {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.err-hero .code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(96px, 20vw, 220px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.err-hero h1 { font-size: clamp(28px, 4vw, 46px); margin-top: 10px; }
.err-hero p { margin-top: 14px; color: var(--ink-soft); max-width: 34em; margin-inline: auto; }
.err-hero .btn { margin-top: 28px; }

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

.site-footer {
  border-top: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 90px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 28px;
}
.site-footer .brand { color: var(--paper); font-size: 28px; }
.site-footer p.tag { margin-top: 12px; font-size: 14px; color: rgba(245, 238, 223, 0.7); max-width: 26em; }
.foot-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 14px;
}
.foot-links { list-style: none; }
.foot-links li + li { margin-top: 8px; }
.foot-links a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(245, 238, 223, 0.85);
  transition: color 0.2s ease;
}
.foot-links a:hover { color: var(--accent); }
.foot-fine {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 238, 223, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(245, 238, 223, 0.55);
}
.foot-fine b { color: rgba(245, 238, 223, 0.85); font-weight: 700; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- cat tail (fixed corner, flicks occasionally via JS) ---------- */

#tail {
  position: fixed;
  right: -6px;
  bottom: -8px;
  z-index: 90;
  width: 92px;
  height: 92px;
  pointer-events: none;
}
#tail svg {
  transform-origin: 88% 92%;
  transition: transform 0.5s var(--ease-snap);
}
#tail.flick svg { transform: rotate(-16deg); }
@media (prefers-reduced-motion: reduce) {
  #tail svg { transition: none; }
  #tail.flick svg { transform: none; }
}

/* ---------- paw ripple ---------- */

.paw-stamp {
  position: fixed;
  z-index: 150;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  pointer-events: none;
  opacity: 0.85;
  transform: scale(0.4) rotate(var(--rot, 0deg));
  animation: pawFade 0.55s ease-out forwards;
}
@keyframes pawFade {
  30% { opacity: 0.7; transform: scale(1) rotate(var(--rot, 0deg)); }
  100% { opacity: 0; transform: scale(1.15) rotate(var(--rot, 0deg)); }
}

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); }
.js-anim .reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-snap);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js-anim .split .l { opacity: 1; transform: none; animation: none; }
  .paw-stamp { display: none; }
  .btn, .rail, .concept-card, .cat-card, .menu-item, .chip-btn { transition: none; }
}

/* focus visibility */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
