/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body.menu-open { overflow: hidden; }
body { font-size: 16px; line-height: 1.6; }
svg { flex: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #F0E2C6; }
::-webkit-scrollbar-thumb { background: #4C5E34; }
::-webkit-scrollbar-thumb:hover { background: #A8523F; }

.ital { font-family: "IM Fell English", serif; font-style: italic; }
.type { font-family: "Courier Prime", monospace; letter-spacing: 0.02em; }
.font-sc { font-family: "IM Fell English SC", "IM Fell English", serif; letter-spacing: 0.05em; }
.font-display { font-family: "IM Fell English", serif; }
.ink-link { color: #A8523F; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ink-link:hover { color: #4C5E34; }

.rule { display: inline-block; width: 36px; height: 1px; background: #4C5E34; }

/* ---------- paper grain ---------- */
.grain {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body > *:not(.grain):not(.fs-menu) { position: relative; z-index: 1; }

/* ---------- top ticker ---------- */
.top-tick {
  background: #1A1A24;
  color: #F0E2C6;
  border-bottom: 1px solid #1A1A24;
  padding: 0.45rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Courier Prime", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.top-tick-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: tick 40s linear infinite;
  padding-right: 1.5rem;
}
.top-tick-track .dot { color: #A8523F; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #F0E2C6;
  border-bottom: 3px double #1A1A24;
  box-shadow: 0 2px 0 #E3D0AC;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 900px) { .nav-inner { grid-template-columns: auto 1fr auto; padding: 1rem 1.5rem; } }

.nav-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.nav-brand-word {
  font-family: "IM Fell English SC", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: #1A1A24;
}
@media (min-width: 768px) { .nav-brand-word { font-size: 1.85rem; } }
.nav-brand-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E7E5D;
}

.nav-tabs {
  display: none;
  justify-self: center;
  align-items: flex-end;
  gap: 0;
}
@media (min-width: 900px) { .nav-tabs { display: inline-flex; } }
.nav-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 1rem 0.6rem;
  margin: 0 -1px;
  color: #1A1A24;
  text-decoration: none;
  border: 1px solid #8E7E5D;
  border-bottom: 0;
  background: #E3D0AC;
  font-family: "IM Fell English", serif;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-tab:hover { background: #F0E2C6; transform: translateY(-2px); }
.nav-tab-n {
  font-family: "IM Fell English SC", serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #A8523F;
}

.menu-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1A1A24;
  background: transparent;
  color: #1A1A24;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 900px) { .menu-btn { display: none; } }
.menu-btn:hover { background: #1A1A24; color: #F0E2C6; }
.menu-open .menu-btn { background: #4C5E34; color: #F0E2C6; border-color: #4C5E34; }

.burger { position: relative; display: block; width: 18px; height: 10px; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.8px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.68, -0.2, 0.3, 1.4), top 0.3s cubic-bezier(0.68, -0.2, 0.3, 1.4);
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 7px; }
.menu-open .burger span:nth-child(1) { top: 4.5px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 4.5px; transform: rotate(-45deg); }

/* FS MENU — video background with sepia overlay */
.fs-menu {
  position: fixed; inset: 0;
  z-index: 45;
  background: #1A1A24;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.menu-open .fs-menu { opacity: 1; visibility: visible; pointer-events: auto; }

.fs-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.65) contrast(0.95) saturate(0.75) brightness(0.48);
  z-index: 0;
  transform-origin: 30% 30%;
  will-change: transform, opacity;
}
/* two overlapping stills cross-fade with slow Ken Burns */
.menu-open .fs-video-fallback {
  animation: fs-kb-a 22s ease-in-out infinite;
}
.menu-open .fs-video-fallback--alt {
  z-index: 1;
  animation: fs-kb-b 22s ease-in-out infinite;
  transform-origin: 70% 70%;
  opacity: 0;
}
@keyframes fs-kb-a {
  0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
  45%      { opacity: 1; transform: scale(1.12) translate(-2.5%, -1.5%); }
  55%      { opacity: 0; transform: scale(1.12) translate(-2.5%, -1.5%); }
  95%      { opacity: 0; transform: scale(1) translate(0, 0); }
}
@keyframes fs-kb-b {
  0%, 100% { opacity: 0; transform: scale(1.05) translate(0, 0); }
  45%      { opacity: 0; transform: scale(1.05) translate(0, 0); }
  55%      { opacity: 1; transform: scale(1.05) translate(1.5%, -1%); }
  95%      { opacity: 1; transform: scale(1.18) translate(2.5%, -2.5%); }
}

.fs-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(26, 26, 36, 0.82) 0%, rgba(76, 94, 52, 0.45) 50%, rgba(168, 82, 63, 0.45) 100%),
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(240, 226, 198, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(240, 226, 198, 0.025) 3px 4px);
  pointer-events: none;
}

.fs-stamp {
  position: absolute;
  top: 80px; right: 1rem;
  z-index: 3;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid #C9A24A;
  color: #C9A24A;
  background: rgba(26, 26, 36, 0.6);
  backdrop-filter: blur(4px);
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 768px) { .fs-stamp { top: 96px; right: 2rem; padding: 0.7rem 1rem; } }
.menu-open .fs-stamp { opacity: 1; transform: rotate(4deg) scale(1); }
.fs-stamp-code { font-size: 0.58rem; letter-spacing: 0.22em; }
.fs-stamp-date { font-size: 0.62rem; letter-spacing: 0.2em; font-weight: 700; color: #F0E2C6; }

.fs-wrap {
  position: relative;
  z-index: 4;
  height: 100%;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.fs-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(240, 226, 198, 0.25);
}
.fs-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  font-family: "IM Fell English", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  color: #F0E2C6;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 226, 198, 0.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.25s ease, padding-left 0.3s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease;
}
.menu-open .fs-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.2s + var(--i, 0) * 0.06s);
}
.fs-link:hover {
  color: #C9A24A;
  padding-left: 0.5rem;
  border-color: rgba(201, 162, 74, 0.4);
}
.fs-link > span {
  font-family: "IM Fell English SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #C9A24A;
  min-width: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.fs-foot {
  border-top: 1px solid rgba(240, 226, 198, 0.2);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fs-phone {
  font-family: "IM Fell English", serif;
  font-size: 1.75rem;
  color: #F0E2C6;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.fs-phone:hover { color: #C9A24A; }
.fs-hours { font-size: 0.78rem; color: rgba(240, 226, 198, 0.6); }

/* ---------- HERO ---------- */
.hero {
  position: relative !important;
  padding: 4rem 1rem;
  overflow: hidden;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center;
  /* CSS-only dark archive palette as guaranteed bg (even without photos) */
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(168, 82, 63, 0.25), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(76, 94, 52, 0.25), transparent 70%),
    linear-gradient(135deg, #2C1E18 0%, #1A1A24 55%, #221812 100%) !important;
}
@media (min-width: 768px)  { .hero { padding: 5rem 2rem; min-height: 90vh !important; } }
@media (min-width: 1100px) { .hero { padding: 6rem 2rem; } }

/* Background media — Ken Burns + scanlines + flicker ~= "video" */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.55) contrast(1.05) saturate(0.85) brightness(0.7);
  z-index: 0;
}
/* ACTUAL background video (plays on top of poster image) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  /* heavy sepia + blur makes any video look like archival footage */
  filter: sepia(0.9) contrast(1.1) saturate(0.55) brightness(0.42) blur(0.4px);
}
@keyframes hero-kb-a {
  0%, 100% { opacity: 1; transform: scale(1.02) translate(0, 0); }
  45%      { opacity: 1; transform: scale(1.12) translate(-2%, -1.5%); }
  55%      { opacity: 0; transform: scale(1.12) translate(-2%, -1.5%); }
  95%      { opacity: 0; transform: scale(1.02) translate(0, 0); }
}
@keyframes hero-kb-b {
  0%, 45%, 100% { opacity: 0; transform: scale(1.04) translate(0, 0); }
  55%           { opacity: 1; transform: scale(1.04) translate(0, 0); }
  95%           { opacity: 1; transform: scale(1.15) translate(2%, -1.5%); }
}

.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(26, 26, 36, 0.2) 2px 3px);
  mix-blend-mode: multiply;
  animation: hero-flicker 3.6s steps(4) infinite;
  pointer-events: none;
}
@keyframes hero-flicker {
  0%, 80%, 100% { opacity: 0.55; }
  20%           { opacity: 0.4; }
  55%           { opacity: 0.68; }
}

.hero-grain-overlay {
  position: absolute;
  inset: -5%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
  animation: hero-grain 0.6s steps(4) infinite;
  pointer-events: none;
}
@keyframes hero-grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 36, 0.35) 0%, rgba(26, 26, 36, 0.1) 35%, rgba(26, 26, 36, 0.1) 65%, rgba(26, 26, 36, 0.4) 100%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 0%, rgba(26, 26, 36, 0.25) 100%);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  border: 2px solid #1A1A24;
  padding: 2rem 1.25rem;
  background: #F0E2C6;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(26, 26, 36, 0.1);
}
@media (min-width: 768px) { .hero-wrap { padding: 2.5rem 2.5rem 3rem; } }
.hero-wrap::before, .hero-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: #1A1A24;
}
.hero-wrap::before { top: 6px; }
.hero-wrap::after { bottom: 6px; }

.hero-code {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  font-family: "Courier Prime", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A24;
  margin-bottom: 1.5rem;
}
.code-label { color: #8E7E5D; }
.code-val { font-weight: 700; }
.code-stamp {
  margin-left: auto;
  padding: 0.15rem 0.55rem;
  border: 1.5px solid #A8523F;
  color: #A8523F;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  transform: rotate(-3deg);
}

.hero-h {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-size: clamp(3.25rem, 14vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #1A1A24;
  text-align: center;
}
.reveal-word { display: inline-block; overflow: hidden; }
.reveal-word > span { display: inline-block; }

.hero-tag {
  margin-top: 0.5rem;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.25em;
  color: #A8523F;
}
.hero-lead {
  margin: 1.75rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: #1A1A24;
}

.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.hero-stats {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #8E7E5D;
  border-left: 1px solid #8E7E5D;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.hero-stats > div {
  padding: 0.85rem 1rem;
  border-right: 1px solid #8E7E5D;
  border-bottom: 1px solid #8E7E5D;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-stats dt {
  font-family: "Courier Prime", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E7E5D;
}
.hero-stats dd {
  font-family: "Crimson Text", serif;
  font-size: 0.92rem;
  color: #1A1A24;
}
.hero-stats dd b {
  font-family: "IM Fell English", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: #4C5E34;
  margin-right: 0.3rem;
}

.hero-rule {
  margin: 1.75rem 0 0.85rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, #1A1A24 0 8px, transparent 8px 14px);
}
.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: #8E7E5D;
  text-transform: uppercase;
}
.hero-foot .sep { color: #C9A77A; }

/* ---------- BUTTONS ---------- */
.btn-olive {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  background: #4C5E34;
  color: #F0E2C6;
  border: 0;
  font-family: "IM Fell English SC", serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 2px 2px 0 #1A1A24;
}
.btn-olive:hover { background: #A8523F; transform: translate(-1px, -1px); box-shadow: 3px 3px 0 #1A1A24; }
.btn-olive:active { transform: translate(2px, 2px); box-shadow: none; }

.btn-frame {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  background: transparent;
  color: #1A1A24;
  border: 1.5px solid #1A1A24;
  font-family: "IM Fell English SC", serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn-frame:hover { background: #1A1A24; color: #F0E2C6; }

.mt-4 { margin-top: 1rem; }

/* ---------- VIDEO BANNER (archive atmosphere) ---------- */
.vb {
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  max-width: 1400px;
}
@media (min-width: 768px) { .vb { padding: 2rem 2rem 3rem; } }
.vb-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #1A1A24;
  border: 2px solid #1A1A24;
  box-shadow: 6px 8px 0 rgba(26, 26, 36, 0.22);
}
@media (max-width: 640px) { .vb-frame { aspect-ratio: 4 / 3; } }
.vb-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.55) contrast(0.96) saturate(0.78) brightness(0.85);
  z-index: 0;
  animation: vb-kb-a 26s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.vb-fallback--b {
  z-index: 1;
  transform-origin: 70% 40%;
  opacity: 0;
  animation: vb-kb-b 26s ease-in-out infinite;
}
@keyframes vb-kb-a {
  0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
  48%      { opacity: 1; transform: scale(1.1) translate(-2%, -1%); }
  52%      { opacity: 0; transform: scale(1.1) translate(-2%, -1%); }
}
@keyframes vb-kb-b {
  0%, 100% { opacity: 0; transform: scale(1.05) translate(1%, 0); }
  48%      { opacity: 0; transform: scale(1.05) translate(1%, 0); }
  52%      { opacity: 1; transform: scale(1.05) translate(1%, 0); }
  98%      { opacity: 1; transform: scale(1.15) translate(2%, -1.5%); }
}
.vb-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(26, 26, 36, 0.18) 2px 3px);
  mix-blend-mode: multiply;
  animation: vb-flicker 3.8s steps(4) infinite;
}
@keyframes vb-flicker {
  0%, 80%, 100% { opacity: 0.6; }
  20%           { opacity: 0.45; }
  55%           { opacity: 0.72; }
}
.vb-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(26, 26, 36, 0.1) 0%, rgba(26, 26, 36, 0.5) 100%),
    radial-gradient(ellipse 100% 70% at 50% 40%, rgba(240, 226, 198, 0.08) 0%, transparent 60%);
}
.vb-stamp {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  background: #F0E2C6;
  color: #1A1A24;
  border: 2px solid #1A1A24;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: "IM Fell English", serif;
  transform: rotate(-2.5deg);
  box-shadow: 3px 3px 0 #A8523F;
  max-width: 60%;
}
@media (min-width: 768px) { .vb-stamp { right: 2rem; bottom: 1.5rem; padding: 1rem 1.25rem; } }
.vb-stamp-t { font-size: clamp(1.1rem, 2.2vw, 1.5rem); letter-spacing: 0.02em; }
.vb-stamp-line { font-size: 0.6rem; letter-spacing: 0.2em; color: #8E7E5D; text-transform: uppercase; }

/* ---------- CATEGORIES / drawers ---------- */
.cats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
@media (min-width: 768px) { .cats { padding: 3rem 2rem 6rem; } }
.cats-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cats-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #8E7E5D; }
.cats-h {
  font-family: "IM Fell English", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: #1A1A24;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 640px)  { .cats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .cats-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; } }

.drawer {
  position: relative;
  display: block;
  background: #E3D0AC;
  border: 1px solid #8E7E5D;
  padding: 0;
  text-decoration: none;
  color: #1A1A24;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 3px 3px 0 #8E7E5D;
}
.drawer:hover {
  transform: translate(-2px, -3px);
  background: #F0E2C6;
  box-shadow: 5px 6px 0 #1A1A24;
}
.drawer-handle {
  width: 40px;
  height: 10px;
  background: #1A1A24;
  border-radius: 0;
  margin: 0.75rem auto 0;
}
.drawer-body {
  padding: 1rem 0.9rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.drawer-ic { width: 26px; height: 26px; color: #A8523F; }
.drawer-letter {
  font-family: "IM Fell English SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #4C5E34;
}
.drawer-title {
  font-family: "IM Fell English", serif;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #1A1A24;
  min-height: 2.4rem;
}
.drawer-n { font-size: 0.7rem; color: #8E7E5D; }

/* ---------- CATALOG / index cards ---------- */
.catalog {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
@media (min-width: 768px) { .catalog { padding: 3rem 2rem 6rem; } }
.cat-head { margin-bottom: 2rem; }
.cat-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #8E7E5D; }
.cat-h {
  margin-top: 0.3rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: #1A1A24;
}
.cat-lead {
  margin-top: 1rem;
  max-width: 42rem;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  color: #1A1A24;
}
.cat-filters {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cat-fil {
  padding: 0.4rem 0.85rem;
  background: transparent;
  border: 1px solid #1A1A24;
  color: #1A1A24;
  font-family: "Courier Prime", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.cat-fil:hover { background: #A8523F; color: #F0E2C6; border-color: #A8523F; }
.cat-fil.is-on { background: #1A1A24; color: #F0E2C6; }

.cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (min-width: 640px)  { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }

/* index card — 3×5 style */
.card {
  position: relative;
  padding: 0 0 1rem;
  background: #FBF2DB;
  border: 1px solid #8E7E5D;
  box-shadow: 3px 4px 0 rgba(26, 26, 36, 0.18);
  transform: rotate(var(--rot, 0));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
  overflow: hidden;
}

/* card photo (thumbnail at top) */
.card-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1A1A24;
  border-bottom: 2px solid #1A1A24;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.5) contrast(0.96) saturate(0.8) brightness(0.94);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.card:hover .card-photo img {
  transform: scale(1.04);
  filter: sepia(0.25) contrast(1.03) saturate(1) brightness(1);
}
.card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(26, 26, 36, 0.45) 100%),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(251, 242, 219, 0.04) 2px 3px);
  pointer-events: none;
}
.card-photo-tag {
  position: absolute;
  right: 8px; top: 8px;
  padding: 0.15rem 0.45rem;
  background: #F0E2C6;
  color: #1A1A24;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #8E7E5D;
  transform: rotate(3deg);
}
.card.sold .card-photo img { filter: sepia(0.75) contrast(0.85) saturate(0.4) brightness(0.85); }

/* card content wrapper with ruled paper background */
.card > .card-top,
.card > .card-title,
.card > .card-author,
.card > .card-meta,
.card > .card-note,
.card > .card-foot {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}
.card > .card-top { margin-top: 0.9rem; }
.card:hover {
  transform: rotate(0) translateY(-3px);
  box-shadow: 4px 6px 0 rgba(26, 26, 36, 0.3);
  z-index: 2;
}
.card.is-hidden { display: none; }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #8E7E5D;
  text-transform: uppercase;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #8E7E5D;
  margin-bottom: 0.85rem;
}
.card-class { color: #4C5E34; font-weight: 700; }
.card-year { color: #A8523F; font-weight: 700; }

.card-title {
  font-family: "IM Fell English", serif;
  font-size: 1.45rem;
  line-height: 1.15;
  color: #1A1A24;
}
.card-author {
  margin-top: 0.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: #4C5E34;
}

.card-meta {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem 0.75rem;
  font-size: 0.72rem;
  color: #1A1A24;
}
.card-meta > div { display: flex; flex-direction: column; gap: 0.1rem; }
.card-meta dt { color: #8E7E5D; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.58rem; }
.card-meta dd { font-weight: 700; }

.card-note {
  margin-top: 0.6rem;
  font-family: "Crimson Text", serif;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #1A1A24;
}

.card-foot {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px dashed #8E7E5D;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.card-price {
  font-family: "IM Fell English", serif;
  font-size: 1.25rem;
  color: #1A1A24;
  font-weight: 400;
}
.card-req {
  font-family: "Courier Prime", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A8523F;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card-req:hover { color: #4C5E34; }
.card-sold {
  font-family: "Courier Prime", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #8E7E5D;
  text-transform: uppercase;
}

.card-stamp {
  position: absolute;
  top: 8px; right: 8px;
  padding: 0.15rem 0.45rem;
  border: 1px solid #4C5E34;
  color: #4C5E34;
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  transform: rotate(8deg);
  opacity: 0.75;
}
.card-stamp--red {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  padding: 0.35rem 0.9rem;
  border: 3px double #A8523F;
  color: #A8523F;
  font-family: "IM Fell English SC", serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  background: rgba(251, 242, 219, 0.4);
  opacity: 0.9;
}
.card.sold .card-title,
.card.sold .card-note { opacity: 0.55; }
.card.sold .card-price { color: #8E7E5D; text-decoration: line-through; }

/* ---------- SERVICES ---------- */
.svc {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
@media (min-width: 768px) { .svc { padding: 3rem 2rem 6rem; } }
.svc-head { margin-bottom: 2.5rem; }
.svc-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #8E7E5D; }
.svc-h {
  margin-top: 0.35rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
  color: #1A1A24;
}
.svc-h .ital { color: #A8523F; font-style: italic; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }

.svc-card {
  background: #FBF2DB;
  border: 1px solid #8E7E5D;
  padding: 1.75rem 1.5rem;
  box-shadow: 3px 4px 0 rgba(26, 26, 36, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.svc-card--feat {
  background: #1A1A24;
  color: #F0E2C6;
  border-color: #1A1A24;
  box-shadow: 3px 4px 0 #A8523F;
}
.svc-card--feat .svc-note { color: rgba(240, 226, 198, 0.8); }
.svc-card--feat .svc-list li { color: rgba(240, 226, 198, 0.9); }
.svc-card--feat .svc-price { color: #C9A24A; }
.svc-card--feat .svc-no { color: #C9A24A; }

.svc-no {
  font-family: "Courier Prime", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A8523F;
}
.svc-title {
  font-family: "IM Fell English", serif;
  font-size: 1.65rem;
  line-height: 1.1;
  margin-top: 0.15rem;
}
.svc-note {
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #1A1A24;
  flex: 1;
}
.svc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: "Courier Prime", monospace;
  font-size: 0.78rem;
  color: #4C5E34;
}
.svc-card--feat .svc-list { color: #C9A24A; }
.svc-list li::before { content: "— "; color: inherit; }
.svc-price {
  padding-top: 0.9rem;
  border-top: 1px dashed #8E7E5D;
  font-family: "IM Fell English", serif;
  font-size: 1.25rem;
  color: #1A1A24;
}
.svc-price .type { font-family: "Courier Prime", monospace; font-size: 0.68rem; color: #8E7E5D; margin-left: 0.35rem; letter-spacing: 0.1em; }

/* ---------- ABOUT ---------- */
.about {
  background: #1A1A24;
  color: #F0E2C6;
  padding: 0 0 4rem;
  border-top: 3px double #1A1A24;
}
@media (min-width: 768px) { .about { padding: 0 0 6rem; } }

.about-photo {
  position: relative;
  margin: 0 0 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-bottom: 3px double #F0E2C6;
}
@media (min-width: 768px) { .about-photo { margin: 0 2rem 3.5rem; aspect-ratio: 24 / 9; } }
@media (max-width: 640px) { .about-photo { aspect-ratio: 4 / 3; } }
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.45) contrast(0.95) saturate(0.75) brightness(0.85);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 36, 0.25) 0%, rgba(26, 26, 36, 0.55) 100%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(26, 26, 36, 0.04) 3px 4px);
  pointer-events: none;
}
.about-photo-cap {
  position: absolute;
  left: 1rem; bottom: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #F0E2C6;
  font-family: "IM Fell English", serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 0.9rem;
  background: rgba(26, 26, 36, 0.6);
  border: 1px solid rgba(240, 226, 198, 0.25);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .about-photo-cap { right: auto; max-width: 480px; left: 2rem; bottom: 2rem; padding: 0.7rem 1rem; } }
.about-photo-cap .type { color: #C9A24A; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; }
.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) { .about-wrap { padding: 0 2rem; } }
@media (min-width: 900px) { .about-wrap { grid-template-columns: 7fr 5fr; gap: 3.5rem; } }

.about-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #C9A24A; }
.about-h {
  margin-top: 0.5rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: #F0E2C6;
}
.about-p {
  margin-top: 1.2rem;
  font-family: "Crimson Text", serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(240, 226, 198, 0.88);
}
.drop {
  float: left;
  font-family: "IM Fell English", serif;
  font-size: 4.8rem;
  line-height: 0.9;
  padding: 0.2rem 0.45rem 0 0;
  color: #A8523F;
}
.about-sig {
  margin-top: 1.5rem;
  color: #C9A24A;
  font-size: 1.1rem;
}

.chit-card {
  padding: 1.5rem 1.4rem;
  background: #F0E2C6;
  color: #1A1A24;
  border: 1px solid #8E7E5D;
  box-shadow: 3px 4px 0 #A8523F;
  transform: rotate(1.5deg);
}
.chit-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px dashed #8E7E5D;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.chit-row span { color: #8E7E5D; }
.chit-row b { color: #1A1A24; font-family: "IM Fell English", serif; font-size: 1.1rem; letter-spacing: 0.04em; font-weight: 400; }

.chit-stamps {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}
.chit-st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.4rem;
  border: 1.5px solid #4C5E34;
  color: #4C5E34;
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  transform: rotate(-4deg);
}
.chit-st:nth-child(2) { transform: rotate(3deg); }
.chit-st:nth-child(4) { transform: rotate(2deg); }
.chit-st:nth-child(5) { transform: rotate(-2deg); }
.chit-st:nth-child(6) { transform: rotate(5deg); }
.chit-st--off {
  border-style: dashed;
  border-color: #8E7E5D;
  color: #8E7E5D;
  transform: none !important;
}
.chit-note {
  margin-top: 0.75rem;
  font-size: 0.68rem;
  color: #8E7E5D;
  line-height: 1.45;
}

/* ---------- REQUEST FORM (library slip) ---------- */
.request {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
}
@media (min-width: 768px) { .request { padding: 6rem 2rem 4rem; } }
.req-head { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 2rem; }
.req-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #8E7E5D; }
.req-h {
  margin-top: 0.35rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: #1A1A24;
}
.req-lead {
  margin-top: 0.85rem;
  max-width: 40rem;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  color: #1A1A24;
}

.req-slip {
  margin-top: 1.5rem;
  background: #FBF2DB;
  border: 2px solid #1A1A24;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: 5px 6px 0 rgba(26, 26, 36, 0.15);
}
@media (min-width: 768px) { .req-slip { padding: 2.5rem 2.5rem 2rem; } }
.req-slip::before, .req-slip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: #1A1A24;
}
.req-slip::before { top: 6px; }
.req-slip::after { bottom: 6px; }

.req-slip .slip-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1A1A24;
  margin-bottom: 1.5rem;
}
.slip-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: #8E7E5D; font-family: "Courier Prime", monospace; }
.slip-title {
  margin-top: 0.35rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.05;
  color: #1A1A24;
}
.slip-no {
  font-family: "IM Fell English", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  color: #A8523F;
  padding: 0.15rem 0.55rem;
  border: 2px solid #A8523F;
  display: inline-block;
  margin-top: 0.35rem;
}

.slip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 600px) { .slip-grid { grid-template-columns: 1fr 1fr; } }
.f { display: flex; flex-direction: column; gap: 0.3rem; }
.f--wide { grid-column: 1 / -1; }
.f-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8E7E5D; }
.f input, .f select, .f textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #1A1A24;
  background: transparent;
  padding: 0.55rem 0 0.5rem;
  font-family: "Courier Prime", monospace;
  font-size: 0.95rem;
  color: #1A1A24;
  transition: border-color 0.2s ease;
}
.f textarea { font-family: "Crimson Text", serif; font-size: 1rem; border: 1.5px solid #1A1A24; padding: 0.7rem 0.85rem; line-height: 1.55; }
.f input::placeholder, .f textarea::placeholder { color: #8E7E5D; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: #A8523F; }
.f.is-invalid input, .f.is-invalid select, .f.is-invalid textarea { border-color: #A8523F; background: rgba(168, 82, 63, 0.08); }
.f select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23A8523F' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 10px;
}
.f-err {
  display: block;
  min-height: 0.95rem;
  margin-top: 0.2rem;
  font-family: "Courier Prime", monospace;
  font-style: normal;
  font-size: 0.7rem;
  color: #A8523F;
  transition: opacity 0.2s ease;
}
.f-err:empty { opacity: 0; }

.f-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  font-family: "Crimson Text", serif;
  font-size: 0.95rem;
  color: #1A1A24;
  align-items: flex-start;
  margin-top: 0.5rem;
}
.f-consent input { margin-top: 0.2rem; accent-color: #4C5E34; }

.req-slip .slip-foot {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 2px dashed #1A1A24;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 600px) { .req-slip .slip-foot { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.slip-legend {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 30rem;
  font-size: 0.8rem;
  color: #1A1A24;
  line-height: 1.45;
}

.slip-stamp-area {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed #8E7E5D;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slip-signature {
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E7E5D;
}
.slip-sig-line {
  flex: 1;
  height: 1px;
  background-image: radial-gradient(circle, #8E7E5D 1px, transparent 1px);
  background-size: 6px 2px;
}

/* success */
.req-success {
  margin-top: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: #FBF2DB;
  border: 2px solid #4C5E34;
  box-shadow: 5px 6px 0 rgba(76, 94, 52, 0.2);
  animation: fade-in 0.4s ease;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.req-success .stamp {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 4px double #4C5E34;
  color: #4C5E34;
  font-family: "IM Fell English SC", serif;
  transform: rotate(-5deg);
  animation: stamp-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes stamp-in {
  from { transform: rotate(-15deg) scale(0.3); opacity: 0; }
  to   { transform: rotate(-5deg) scale(1); opacity: 1; }
}
.req-success .stamp span:first-child { font-size: 1.4rem; letter-spacing: 0.15em; }
.req-success .stamp span:nth-child(2) { font-family: "Courier Prime", monospace; font-size: 0.68rem; letter-spacing: 0.25em; }
.req-success .stamp span:nth-child(3) { font-family: "Courier Prime", monospace; font-size: 0.68rem; color: rgba(76, 94, 52, 0.7); }

.req-success-h {
  margin-top: 1.5rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #1A1A24;
}
.req-success-meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #8E7E5D;
}
.req-success-note {
  margin-top: 0.6rem;
  font-family: "Crimson Text", serif;
  font-size: 0.95rem;
  color: #1A1A24;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- VISIT ---------- */
.visit {
  background: #E3D0AC;
  border-top: 3px double #1A1A24;
  padding: 4rem 1.25rem;
}
@media (min-width: 768px) { .visit { padding: 6rem 2rem; } }
.vs-head {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.vs-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: #8E7E5D; }
.vs-h {
  margin-top: 0.35rem;
  font-family: "IM Fell English", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.02;
  color: #1A1A24;
}
.vs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) { .vs-grid { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; } }

.vs-info {
  background: #FBF2DB;
  border: 1px solid #1A1A24;
  padding: 1.25rem 1.5rem;
  box-shadow: 3px 4px 0 rgba(26, 26, 36, 0.15);
}
.vs-info > div {
  padding: 0.85rem 0;
  border-bottom: 1px dashed #8E7E5D;
}
.vs-info > div:last-child { border-bottom: 0; }
.vs-info dt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E7E5D;
}
.vs-ic { width: 14px; height: 14px; color: #A8523F; }
.vs-info dd {
  margin-top: 0.45rem;
  font-family: "IM Fell English", serif;
  font-size: 1.15rem;
  color: #1A1A24;
}
.vs-info dd a { color: inherit; text-decoration: none; }
.vs-info dd a:hover { color: #A8523F; }
.vs-hours { border-collapse: collapse; font-size: 0.88rem; color: #1A1A24; }
.vs-hours td { padding: 0.3rem 0; }
.vs-hours td:first-child { color: #8E7E5D; padding-right: 1.25rem; }
.vs-hours td.off { color: #8E7E5D; font-style: italic; }

.vs-map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F0E2C6;
  border: 1px solid #1A1A24;
  box-shadow: 3px 4px 0 rgba(26, 26, 36, 0.15);
}
.vs-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: sepia(0.55) contrast(0.95) saturate(0.7); }
.vs-pin {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 0.55rem 0.85rem;
  background: #1A1A24;
  color: #F0E2C6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.vs-pin:hover { background: #4C5E34; transform: translateY(-2px); }

/* ---------- FOOTER ---------- */
.foot {
  background: #1A1A24;
  color: #F0E2C6;
  border-top: 4px double #F0E2C6;
}
.foot-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .foot-wrap { grid-template-columns: 2fr 3fr; padding: 4.5rem 3rem 2rem; gap: 3rem; } }
.foot-word {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  letter-spacing: 0.08em;
}
.foot-sub {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(240, 226, 198, 0.65);
}
.foot-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.foot-head { font-size: 0.68rem; letter-spacing: 0.22em; color: rgba(240, 226, 198, 0.5); }
.foot-cols ul {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: "Crimson Text", serif;
  font-size: 0.92rem;
}
.foot-cols a { color: rgba(240, 226, 198, 0.82); text-decoration: none; }
.foot-cols a:hover { color: #C9A24A; }
.foot-tail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px dashed rgba(240, 226, 198, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(240, 226, 198, 0.5);
}
@media (min-width: 768px) { .foot-tail { flex-direction: row; justify-content: space-between; padding: 1rem 3rem 1.5rem; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .card { transform: rotate(0) !important; }
  .grain { opacity: 0.3; }
}
