/* =========================================================
   inicio — barber & grooming
   palette: paper / ink / oxblood / brass
   ========================================================= */

:root {
  --paper:   #ece5d4;   /* warm cream */
  --paper-2: #e2dac6;   /* deeper paper */
  --ink:     #161310;   /* warm near-black */
  --ink-2:   #2b2520;
  --ink-3:   #5b5147;
  --rust:    #a23b1f;   /* oxblood / terracotta */
  --rust-2:  #6f2a17;
  --brass:   #b08a4a;
  --line:    rgba(22,19,16,.18);

  --serif:   "Fraunces", "Zen Old Mincho", "Times New Roman", serif;
  --display: "Cormorant Garamond", "Fraunces", "Zen Old Mincho", serif;  /* extra elegant italic display */
  --sans:    "Inter", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --jp:      "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --shop:    "Oswald", "Inter", system-ui, sans-serif;  /* heritage barber type */
  --pole-red:  #b13524;
  --pole-blue: #1a3a6b;

  --gutter: clamp(20px, 4vw, 56px);
  --max:    1640px;

  --ease:    cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, iframe { display: block; max-width: 100%; }
img { object-fit: cover; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* custom scrollbar — cream track + rust thumb */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track {
  background: rgba(236,229,212,.5);
  border-left: 1px solid rgba(22,19,16,.08);
}
::-webkit-scrollbar-thumb {
  background: rgba(22,19,16,.4);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--rust);
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }
html { scrollbar-color: rgba(22,19,16,.45) rgba(236,229,212,.5); scrollbar-width: thin; }

/* unified focus-visible — refined rust outline for accessibility */
*:focus { outline: 0; }
*:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 1px;
}
.calendar__day:focus-visible,
.nav__cta:focus-visible,
.map__action:focus-visible,
.ticket__submit:focus-visible,
.totop:focus-visible {
  outline-offset: 4px;
}

/* anchor links should scroll past the fixed nav */
section[id], #book, #casa, #menu, #visit {
  scroll-margin-top: 100px;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: .005em;
  overflow-x: hidden;
  cursor: none;
}

/* fixed hawaii ocean background — stays still while content scrolls over it */
.ocean-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(8,18,30,.22) 0%, rgba(8,18,30,.04) 30%, rgba(8,18,30,.32) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=2400&q=85&auto=format&fit=crop");
  background-size: cover, cover;
  background-position: center, center 30%;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 900px) { body { cursor: auto; } }

/* film grain on background */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/></svg>");
  opacity: .12;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 9999;
}

/* hairline frame */
body::after {
  content: "";
  position: fixed; inset: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 50;
  border-radius: 2px;
}
@media (max-width: 700px) { body::after { inset: 8px; } }

/* ===========================================================
   ANIMATIONS — cascades, particles, ripples
   =========================================================== */

/* CASCADE — children fade-up sequentially when parent is in view */
.cascade > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
}
.cascade.is-cascading > * {
  opacity: 1;
  transform: translateY(0);
}

/* small vertical wordmark on left edge of hero */
.hero__vmark {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  writing-mode: vertical-rl;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(236,229,212,.7);
  pointer-events: none;
}
.hero__vmark em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--paper);
}
.hero__vmark-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--rust);
}
@media (max-width: 900px) {
  .hero__vmark { display: none; }
}

/* HERO PARTICLES — drifting paper specks */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(236,229,212,.7);
  box-shadow: 0 0 8px rgba(236,229,212,.45);
  animation: drift var(--s, 16s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1);     opacity: 0;   }
  10%  { opacity: .55; }
  50%  { transform: translate(38px, -90px) scale(1.4); opacity: .85; }
  90%  { opacity: .35; }
  100% { transform: translate(80px, -180px) scale(.8); opacity: 0; }
}

/* services marquee removed */

/* CALENDAR DAY RIPPLE */
.calendar__day {
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.calendar__day .ripple {
  position: absolute;
  width: 14px; height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 50%;
  background: rgba(22,19,16,.25);
  transform: scale(0);
  animation: rippleOut .65s var(--ease-out) forwards;
  pointer-events: none;
}
.calendar__day.is-selected .ripple { background: rgba(236,229,212,.45); }
@keyframes rippleOut {
  to { transform: scale(8); opacity: 0; }
}

/* HOVER SCISSOR on menu items — slides out from the left */
.menu__item {
  position: relative;
}
.menu__item .menu__scissor {
  position: absolute;
  left: -20px;
  top: 32px;
  width: 26px; height: 18px;
  color: var(--brass);
  opacity: 0;
  transform: translateX(-12px) rotate(-20deg);
  transition: opacity .35s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.menu__item:hover .menu__scissor {
  opacity: 1;
  transform: translateX(0) rotate(0);
}
.menu__item .menu__scissor circle { transform-origin: center; }
.menu__item .menu__scissor .blade-top { transform-origin: 5px 6px; transition: transform .35s var(--ease); }
.menu__item .menu__scissor .blade-bot { transform-origin: 5px 18px; transition: transform .35s var(--ease); }
.menu__item:hover .menu__scissor .blade-top { transform: rotate(-8deg); }
.menu__item:hover .menu__scissor .blade-bot { transform: rotate(8deg); }
@media (max-width: 700px) { .menu__item .menu__scissor { display: none; } }

/* HERO post-title letter stagger */
.hero__post-key {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
}
.hero__post-key .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: charIn .7s var(--ease-out) forwards;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   ACCESSIBILITY — skip link
   =========================================================== */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible {
  top: 16px;
  outline-offset: 2px;
}

/* ===========================================================
   FIXED PAGE INDICATOR — bottom left
   =========================================================== */
.pageno {
  position: fixed;
  left: 24px;
  bottom: 26px;
  z-index: 94;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-shadow: 0 1px 8px rgba(236,229,212,.8);
  pointer-events: none;
}
.pageno__cur {
  font-size: 22px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--rust);
  min-width: 22px;
}
.pageno__sep { opacity: .4; }
.pageno__total { opacity: .55; }
@media (max-width: 700px) {
  .pageno { left: 12px; bottom: 16px; }
  .pageno__cur { font-size: 18px; }
}

/* ===========================================================
   MARGINALIA — editorial notes between sections
   =========================================================== */
.marginalia {
  position: relative;
  margin: 100px auto;
  max-width: 540px;
  padding: 32px 36px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  /* soft paper card backing so the note stays readable over the ocean */
  background: rgba(236, 229, 212, .82);
  backdrop-filter: blur(14px) saturate(.95);
  -webkit-backdrop-filter: blur(14px) saturate(.95);
  border: 1px solid rgba(22,19,16,.16);
  box-shadow:
    0 22px 50px -28px rgba(0,0,0,.3),
    0 6px 16px -10px rgba(0,0,0,.16);
}
.marginalia--right {
  margin-left: auto;
  margin-right: var(--gutter);
}
.marginalia::before {
  content: "✦";
  display: block;
  color: var(--rust);
  font-size: 16px;
  text-align: left;
  opacity: .9;
}
.marginalia--right::before { text-align: right; }
.marginalia__num {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rust);
}
.marginalia p {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
}
.marginalia p em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  font-size: 1.15em;
  margin: 0 3px;
}
.marginalia__sig {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--brass);
  align-self: end;
}
.marginalia--right { text-align: right; }
.marginalia--right .marginalia__num,
.marginalia--right .marginalia__sig { justify-self: end; }
.marginalia--right p { text-align: right; }

@media (max-width: 700px) {
  .marginalia { margin: 60px auto; max-width: none; }
  .marginalia--right { padding-right: var(--gutter); }
}

/* ===========================================================
   CALENDAR — "next available slot" floating badge
   =========================================================== */
.calendar__next {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.3);
  z-index: 2;
}
.calendar__next::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ec990;
  box-shadow: 0 0 0 0 rgba(110,201,144,.6);
  animation: pulse 2.4s infinite;
  color: rgba(110,201,144,.45);
}
.calendar__next-key { color: var(--brass); }
.calendar__next-val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
}
@media (max-width: 700px) {
  .calendar__next {
    top: 18px;
    right: 18px;
    font-size: 9px;
    padding: 5px 10px;
  }
  .calendar__next-val { font-size: 12px; }
  /* on narrow widths, move title down to make room for the badge */
  .calendar__title { padding-top: 38px; }
}

/* ===========================================================
   BACK-TO-TOP — round paper button
   =========================================================== */
.totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(22,19,16,.32);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transform: translateY(12px) scale(.92);
  visibility: hidden;
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s, background .35s var(--ease), color .35s var(--ease);
  box-shadow:
    0 14px 30px -14px rgba(0,0,0,.32),
    0 4px 10px -6px rgba(0,0,0,.2);
}
.totop.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.totop:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.totop svg {
  width: 14px; height: 16px;
}
.totop__label {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .22em;
}
@media (max-width: 700px) {
  .totop { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* ===========================================================
   TOP SCROLL PROGRESS BAR — hairline rust line
   =========================================================== */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(22,19,16,.04);
}
.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rust), var(--brass));
  transition: width .12s linear;
}

/* corner indicator removed */

/* ===========================================================
   SECTION WATERMARK — huge faded numeral behind heading
   =========================================================== */
.watermark {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(220px, 30vw, 480px);
  line-height: .8;
  letter-spacing: -.05em;
  color: rgba(22,19,16,.045);
  top: -.18em;
  right: var(--gutter);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.menu .watermark,
.casa--inverse .watermark,
.watermark--light {
  color: rgba(236,229,212,.06);
}

/* sections need to host the watermark */
.about, .menu, .works, .casa, .book, .visit {
  position: relative;
  overflow: hidden;
}
.about > *, .menu > *, .works > *, .casa > *, .book > *, .visit > * {
  position: relative;
  z-index: 1;
}

/* ===========================================================
   SECTION HEAD ICONS — small SVG per chapter
   =========================================================== */
.section-head { gap: 14px; }
.section-head__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--rust);
  margin-right: -4px;
  transform: translateY(-2px);
}
.menu .section-head__icon,
.menu .section-head__num {
  /* menu has dark bg — needs lighter accents */
}
.menu .section-head__icon { color: var(--brass); }

/* ===========================================================
   LOADER
   =========================================================== */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.is-loaded .loader { opacity: 0; visibility: hidden; }

.loader__inner {
  text-align: center;
  padding: 0 24px;
}
.loader__counter {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.loader__counter [data-count] { display: inline-block; min-width: 2ch; color: var(--brass); }
.loader__pct { color: rgba(236,229,212,.55); }

.loader__word {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 200px);
  font-weight: 400;
  letter-spacing: -.035em;
  display: inline-flex;
  overflow: hidden;
}
.loader__char {
  display: inline-block;
  transform: translateY(110%);
  animation: charUp .9s var(--ease-out) forwards;
}
.loader__char:nth-child(1){ animation-delay: .1s; font-style: italic; }
.loader__char:nth-child(2){ animation-delay: .18s; }
.loader__char:nth-child(3){ animation-delay: .26s; }
.loader__char:nth-child(4){ animation-delay: .34s; }
.loader__char:nth-child(5){ animation-delay: .42s; }
.loader__char:nth-child(6){ animation-delay: .50s; font-style: italic; }

@keyframes charUp { to { transform: translateY(0); } }

.loader__sub {
  margin-top: 22px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  opacity: .72;
  color: var(--brass);
}
.loader__sub em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--paper);
  margin-right: 6px;
}

.loader__est {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 36px;
  opacity: 0;
  animation: loaderFadeIn .8s var(--ease) .2s forwards;
}

.loader__rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  margin: 28px auto 22px;
  opacity: 0;
  animation: loaderFadeIn 1.2s var(--ease) 1.1s forwards;
}
.loader__rule span:first-child,
.loader__rule span:last-child {
  height: 1px;
  background: rgba(236, 229, 212, .25);
}
.loader__rule-dot {
  width: 5px;
  height: 5px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--rust);
  animation: pulse 2.4s 1.5s infinite;
}

.loader__cite {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(236, 229, 212, .55);
  opacity: 0;
  animation: loaderFadeIn 1s var(--ease) 1.3s forwards;
}

.loader__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(236, 229, 212, .3);
  pointer-events: none;
  opacity: 0;
  animation: loaderFadeIn .8s var(--ease) .5s forwards;
}
.loader__corner--tl { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.loader__corner--tr { top: 24px; right: 24px; border-left: 0; border-bottom: 0; }
.loader__corner--bl { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.loader__corner--br { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(236,229,212,.15);
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--paper), var(--brass));
  background-size: 200% 100%;
  animation: loaderBarShimmer 2s linear infinite;
  transition: width .25s linear;
}
@keyframes loaderBarShimmer {
  from { background-position: 0% 0%; }
  to   { background-position: 200% 0%; }
}

/* ===========================================================
   CUSTOM CURSOR
   =========================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 998;
  /* dual halo (dark + light) so cursor pops on any background */
  filter:
    drop-shadow(0 0 1px rgba(22,19,16,.95))
    drop-shadow(0 0 2px rgba(22,19,16,.6))
    drop-shadow(0 0 6px rgba(236,229,212,.55));
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.cursor.is-active { opacity: 1; }
.cursor__dot, .cursor__ring {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: #fff;
  box-shadow:
    0 0 0 1.5px rgba(22,19,16,.95),
    0 0 0 3px rgba(236,229,212,.5);
}
.cursor__ring {
  width: 44px; height: 44px;
  border: 2px solid #fff;
  box-shadow:
    0 0 0 1px rgba(22,19,16,.7),
    inset 0 0 0 1px rgba(22,19,16,.5);
  transition: width .35s var(--ease), height .35s var(--ease), background .25s var(--ease);
  display: grid; place-items: center;
}
.cursor__scissor {
  width: 22px; height: 16px;
  color: var(--ink);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.cursor__blade-top { transform-origin: 5px 6px; transition: transform .3s var(--ease); }
.cursor__blade-bot { transform-origin: 5px 18px; transition: transform .3s var(--ease); }
.cursor__label {
  position: absolute;
  bottom: -22px;
  font-family: var(--jp);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: .12em;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .2s ease;
}
.cursor.is-hover .cursor__ring {
  width: 80px; height: 80px;
  background: var(--paper);
}
.cursor.is-hover .cursor__dot { opacity: 0; }
.cursor.is-hover .cursor__scissor {
  opacity: 1;
  transform: scale(1);
  color: var(--ink);
}
.cursor.is-hover .cursor__label { opacity: 1; }
/* on active (mousedown) — snip animation */
.cursor.is-snipping .cursor__blade-top { transform: rotate(-10deg); }
.cursor.is-snipping .cursor__blade-bot { transform: rotate(10deg); }

@media (max-width: 900px) { .cursor { display: none; } }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  color: var(--paper);
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease);
  text-shadow: 0 1px 14px rgba(0,0,0,.25);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-solid {
  background: rgba(236, 229, 212, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  text-shadow: none;
}
.nav .nav__cta { border-color: currentColor; }
.nav.is-solid .nav__cta { border-color: var(--ink); }
.nav.is-solid .nav__cta::before { background: var(--ink); }
.nav .nav__cta::before { background: var(--paper); }
.nav .nav__cta:hover { color: var(--ink); }
.nav.is-solid .nav__cta:hover { color: var(--paper); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
}
.nav__mark { width: 30px; height: 30px; }
.nav__name em { font-style: italic; font-weight: 400; }

.nav__seal {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  color: currentColor;
  flex-shrink: 0;
}
.nav__seal-ring,
.nav__seal-core {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nav__seal-ring {
  animation: navSealSpin 28s linear infinite;
  transform-origin: center;
}
@keyframes navSealSpin {
  to { transform: rotate(360deg); }
}

.nav__links {
  display: flex;
  gap: 34px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  display: inline-flex;
  gap: 6px;
  padding: 6px 0;
  transition: letter-spacing .4s var(--ease);
}
.nav__links a span {
  font-family: var(--mono);
  font-size: 10px;
  opacity: .55;
  transform: translateY(-1px);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.nav__links a:hover {
  letter-spacing: .12em;
}
.nav__links a:hover span { color: var(--rust); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .35s var(--ease), letter-spacing .4s var(--ease);
}
.nav__cta:hover { letter-spacing: .18em; }
.nav__cta::after {
  /* tiny dot in the cta button — syncs with open/closed status */
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ec990;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2.4s infinite;
  color: rgba(110, 201, 144, .45);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__cta.is-closed::after {
  background: var(--rust);
  color: rgba(162, 59, 31, .4);
}
.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.nav__cta:hover { color: var(--paper); }
.nav__cta:hover::before { transform: translateY(0); }

.nav__cta-text {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  height: 1.5em;
  line-height: 1.5;
}
.nav__cta-text span {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  transition: transform .5s var(--ease);
}
.nav__cta-text span:last-child { transform: translateY(105%); }
.nav__cta:hover .nav__cta-text span:first-child { transform: translateY(-105%); }
.nav__cta:hover .nav__cta-text span:last-child  { transform: translateY(0); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* nav right group — status indicator + cta */
.nav__right {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6ec990;
  box-shadow: 0 0 0 0 rgba(110,201,144,.55);
  animation: pulse 2.4s infinite;
  color: rgba(110,201,144,.45);
}
.status.is-closed .status__dot {
  background: var(--rust);
  color: rgba(162,59,31,.4);
}
@media (max-width: 900px) {
  .status { display: none; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { padding: 10px 16px; font-size: 12px; }
}

/* chapter marker / services marquee / corner indicator removed for clarity */

/* ===========================================================
   GENERIC SECTION HEAD
   =========================================================== */
/* unified elegant section heads — italic serif + rust pill number */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 var(--gutter);
  margin-bottom: 56px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 26px);
  letter-spacing: -.005em;
  color: var(--ink);
}
.section-head__num {
  font-family: var(--shop);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.section-head__label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.005em;
  position: relative;
  padding-left: 6px;
  text-shadow:
    0 1px 0 rgba(236,229,212,.7),
    0 0 18px rgba(236,229,212,.85);
}
.section-head__icon {
  filter: drop-shadow(0 0 8px rgba(236,229,212,.7));
}
.section-head__num {
  background: rgba(236,229,212,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.section-head__icon {
  width: 24px; height: 24px;
}
/* the trailing hairline at the right end of the section-head */
.section-head::before {
  /* keep existing flex spacer */
}
.section-head::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-3px);
}

/* reveal animations */
.reveal-line, .reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-line > *, .reveal-word > * { display: inline-block; }
.reveal-line, .reveal-word { position: relative; }
.reveal-line::after, .reveal-word::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--paper);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}
.is-inview .reveal-line::after,
.is-inview .reveal-word::after { transform: scaleX(0); transform-origin: right; }

.reveal-line, .reveal-word {
  /* ensure text inside still wraps nicely */
}
.reveal-line { display: block; }

/* ===========================================================
   HERO — editorial cover composition (transparent, lets ocean show)
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 92px var(--gutter) 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  isolation: isolate;
  color: var(--paper);
  background: transparent;
}

/* (mobile ocean-bg fallback handled near .ocean-bg) */

/* loose text now sits directly on the ocean — needs strong shadows */
.menu .section-head__label,
.menu__cover-stamp,
.menu__cover-stamp em,
.menu__cover-title,
.menu__cover-title em,
.menu__cover-sub,
.menu__cover-sub span {
  text-shadow:
    0 1px 0 rgba(22,19,16,.9),
    0 0 18px rgba(22,19,16,.95),
    0 0 36px rgba(22,19,16,.75);
}
/* menu cover stamp specifically — stronger so the brass italic stays readable */
.menu__cover-stamp em {
  text-shadow:
    0 2px 0 rgba(22,19,16,.95),
    0 0 22px rgba(22,19,16,1),
    0 0 44px rgba(22,19,16,.85);
}
/* the section-head label in menu (dark theme) gets the dark shadow */
.menu .section-head__label {
  color: var(--paper);
}
.menu .section-head__icon {
  filter: drop-shadow(0 0 10px rgba(22,19,16,.85));
}
.menu .section-head__num {
  background: rgba(22,19,16,.55);
  color: var(--brass);
}

.casa .section-head, .casa::before,
.book .section-head,
.visit .section-head {
  text-shadow:
    0 1px 0 rgba(22,19,16,.55),
    0 0 14px rgba(22,19,16,.7);
}

.foot__big {
  text-shadow:
    0 2px 0 rgba(22,19,16,.85),
    0 0 28px rgba(22,19,16,.95),
    0 0 50px rgba(22,19,16,.75);
}
.foot__base {
  text-shadow:
    0 1px 0 rgba(22,19,16,.75),
    0 0 18px rgba(22,19,16,.9);
}

/* watermarks softened so the ocean stays the hero */
.watermark { color: rgba(22,19,16,.16); }
.menu .watermark, .watermark--light { color: rgba(236,229,212,.20); }

/* photos and cards inside sections stay solid (no text-shadow propagation) */
.casa__hero, .casa__small, .map__frame, .map__card,
.ticket, .calendar, .visit__cue, .casa__note,
.menu__list, .menu__foot, .foot__cols,
.casa__head, .book__lede, .visit__intro {
  text-shadow: none;
}

/* subtle horizon line through the hero, like the interlude */
.hero::before {
  content: "";
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  top: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236,229,212,.3) 18%, rgba(236,229,212,.3) 82%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* hero text colors flip to paper on the photograph */
.hero__meta-key { color: var(--paper); opacity: .9; }
.hero__meta-val { color: rgba(236,229,212,.78); }
.hero__title { color: var(--paper); text-shadow: 0 2px 30px rgba(0,0,0,.18); }
/* i / o accent stays rust — defined later in original .hero__title em rule */

.hero__lede { color: rgba(236,229,212,.88); text-shadow: 0 1px 14px rgba(0,0,0,.25); }

.hero .reveal-line::after,
.hero .reveal-word::after { background: rgba(8,18,30,.85); }

/* scroll indicator + caption colors */
.hero__scroll { color: rgba(236,229,212,.85); }
.hero__scroll-line { background: rgba(236,229,212,.55); }
.hero__scroll-line::after { background: var(--paper); }
.hero__caption { color: var(--paper); }

/* nav over hero — we want darker logo/links to still read on bright sky.
   ensure a soft top fade so they're legible */
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0,0,0,.22), transparent);
  z-index: 0;
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

/* DECK — top editorial cover header */
.hero__deck {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-top: 4px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(236,229,212,.78);
}
.hero__deck-l { justify-self: start; display: inline-flex; align-items: center; gap: 10px; }
.hero__deck-r { justify-self: end;   display: inline-flex; align-items: center; gap: 10px; }
.hero__deck-c { justify-self: center; }
.hero__deck-key { color: var(--rust); }
.hero__deck-val { color: var(--paper); }
.hero__deck-place {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--paper);
  padding-left: 4px;
}
.hero__deck-place em {
  font-style: italic;
  font-weight: 600;
}
.hero__deck-sep {
  display: inline-block;
  width: 18px; height: 1px;
  background: rgba(236,229,212,.42);
}
.hero__deck-tag {
  font-weight: 600;
  letter-spacing: .42em;
  color: var(--paper);
}
.hero__deck-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--paper);
  background: rgba(8,18,30,.18);
}
.hero__deck-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ec990;
  box-shadow: 0 0 0 0 rgba(110,201,144,.55);
  animation: pulse 2.4s infinite;
  color: rgba(110,201,144,.45);
}
.hero__deck-badge.is-closed .hero__deck-dot {
  background: var(--rust);
  color: rgba(162,59,31,.45);
}

/* CENTER — the big inicio title block */
.hero__center {
  align-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__pre {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: .03em;
  color: rgba(236,229,212,.92);
  margin-bottom: 10px;
}
.hero__pre em {
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(130px, 24vw, 400px);
  line-height: .82;
  letter-spacing: -.045em;
  color: var(--paper);
  text-shadow: 0 4px 60px rgba(0,0,0,.22);
  position: relative;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}

.hero__post {
  margin-top: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--shop);
  font-weight: 500;
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(236,229,212,.88);
}
.hero__post-bull { color: var(--rust); }
.hero__post-key.jp {
  font-family: var(--jp);
  text-transform: none;
  letter-spacing: .08em;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
}

.hero__chips {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,229,212,.92);
  padding: 8px 16px;
  border: 1px solid rgba(236,229,212,.5);
  border-radius: 999px;
  transition: border-color .35s var(--ease), color .35s var(--ease), letter-spacing .35s var(--ease);
}
.hero__chips li:hover {
  border-color: #7ad3c9;
  color: #7ad3c9;
  letter-spacing: .28em;
}
.hero__chips li:hover .hero__chip-icon { color: #7ad3c9; }
.hero__chip-icon {
  width: 18px; height: 14px;
  flex-shrink: 0;
  opacity: .9;
}

/* FOOT — scroll cue + open status */
.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 6px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,229,212,.78);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(236,229,212,.85);
  padding: 8px 0;
  position: relative;
}
.hero__scroll svg {
  width: 14px; height: 18px;
  animation: scrollNudge 1.8s var(--ease) infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.hero__foot-r {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__foot-r::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6ec990;
  color: rgba(110,201,144,.55);
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2.4s infinite;
}
.hero__foot-r.is-closed::before {
  background: var(--rust);
  color: rgba(162,59,31,.45);
}
.hero__foot-r.is-closed,
.status.is-closed { color: var(--rust); }

@media (max-width: 900px) {
  .hero__deck { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero__deck-c { display: none; }
  .hero__deck-r { font-size: 10px; }
  .hero__chips { gap: 8px; }
  .hero__chips li { font-size: 10px; padding: 6px 10px; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* (hero__type / hero__visual / hero__frame removed — new centered composition) */

/* ===========================================================
   REAL BARBER POLE (vertical, on hero left edge)
   =========================================================== */
.barberpole {
  position: absolute;
  top: 110px;
  left: var(--gutter);
  width: 28px;
  height: clamp(220px, 38vh, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.3));
}
.barberpole__cap {
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg, #d9c89a, #8c6b34 60%, #5b4421);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  z-index: 2;
}
.barberpole__cap:last-child { border-radius: 2px 2px 4px 4px; }
.barberpole__tube {
  flex: 1;
  width: 18px;
  background: #f5efe2;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(0,0,0,.18);
  border-right: 1px solid rgba(0,0,0,.18);
  box-shadow:
    inset 4px 0 6px -2px rgba(0,0,0,.18),
    inset -4px 0 6px -2px rgba(0,0,0,.08);
}
.barberpole__spiral {
  position: absolute;
  inset: -40px -20px;
  background-image: repeating-linear-gradient(
    -60deg,
    var(--pole-red) 0 8px,
    #f5efe2 8px 16px,
    var(--pole-blue) 16px 24px,
    #f5efe2 24px 32px
  );
  animation: poleSpin 4s linear infinite;
}
@keyframes poleSpin {
  to { transform: translateY(32px); }
}

@media (max-width: 980px) {
  .barberpole { display: none; }
}

/* ===========================================================
   VINTAGE CIRCULAR EST. SEAL
   =========================================================== */
.seal {
  position: absolute;
  right: calc(var(--gutter) + 20px);
  top: 130px;
  width: clamp(120px, 12vw, 160px);
  height: clamp(120px, 12vw, 160px);
  color: var(--paper);
  opacity: .92;
  z-index: 2;
  display: none;
  pointer-events: none;
}
.seal__ring,
.seal__core {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.seal__ring {
  animation: sealSpin 32s linear infinite;
}
@keyframes sealSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .seal {
    width: 84px; height: 84px;
    right: 18px;
    top: 90px;
  }
}

/* (hero__scroll-line removed — replaced by SVG arrow nudge) */

/* (ticker / marquee removed for clarity) */

/* ===========================================================
   ABOUT
   =========================================================== */
.about {
  padding: 140px 0 120px;
  position: relative;
}
.about__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}
.about__lead {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  position: sticky;
  top: 100px;
}
.about__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 300;
}
.about__quote em { color: var(--rust); font-style: italic; }
.about__quote-jp {
  margin-top: 22px;
  font-family: var(--jp);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
}

.about__body {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-family: var(--jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
}
.about__body p { margin-bottom: 1.5em; }
.about__body em {
  font-style: italic;
  color: var(--rust);
  font-family: var(--serif);
}
.about__list {
  margin-top: 28px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--ink-2);
}
.about__list span { color: var(--rust); margin-right: 8px; }

.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  filter: saturate(.85) contrast(1.05);
}
.about__portrait img {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease);
}
.about__portrait:hover img { transform: scale(1.04); }
.about__portrait figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  gap: 4px;
}

@media (max-width: 1100px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__portrait { grid-column: 1 / -1; max-width: 520px; }
  .about__lead { position: static; }
}
@media (max-width: 700px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===========================================================
   MENU
   =========================================================== */
.menu {
  padding: 120px 0;
  background: transparent;
  color: var(--paper);
}
.menu .section-head { color: var(--paper); }
.menu .section-head__num { color: var(--brass); }

/* legacy intro (unused but kept harmless) */
.menu__intro {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 80px;
}

/* ===========================================================
   MENU COVER — vintage trilingual price-card opening
   =========================================================== */
.menu__cover {
  padding: 32px var(--gutter) 80px;
  text-align: center;
  position: relative;
}
.menu__cover-stamps {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(236,229,212,.8);
  margin-bottom: 32px;
}
.menu__cover-stamp em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: .18em;
  text-transform: none;
  color: var(--brass);
  line-height: 1.1;
}
.menu__cover-stamp + .menu__cover-stamp {
  position: relative;
  padding-left: 14px;
}
.menu__cover-stamp + .menu__cover-stamp::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--rust);
}

.menu__cover-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  width: min(560px, 100%);
  margin: 0 auto 36px;
  color: var(--brass);
}
.menu__cover-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 30%, currentColor 70%, transparent);
  opacity: .5;
}
.menu__cover-ornament {
  width: 80px; height: 24px;
}

.menu__cover-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 9vw, 140px);
  line-height: .92;
  letter-spacing: -.028em;
  color: var(--paper);
  margin-bottom: 26px;
}
.menu__cover-title > span { display: block; }
.menu__cover-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}
.menu__cover-title .reveal-line { display: block; }

.menu__cover-sub {
  font-family: var(--jp);
  font-size: 16px;
  line-height: 2;
  color: rgba(236,229,212,.85);
  max-width: 38ch;
  margin: 0 auto;
}
.menu__cover-sub > span { display: block; }

/* ===========================================================
   FEATURE — featured new service (頭浸浴)
   =========================================================== */
.feature {
  position: relative;
  margin: 0 var(--gutter) 32px;
  padding: 44px 48px 40px;
  background:
    linear-gradient(180deg, rgba(122,211,201,.08), transparent 70%),
    rgba(22, 19, 16, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(122,211,201,.35);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.5),
    0 10px 30px -10px rgba(0,0,0,.3),
    0 0 0 1px rgba(122,211,201,.08) inset;
  color: var(--paper);
}

/* small corner accents (printed ticket feel) */
.feature__corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid rgba(122,211,201,.6);
  pointer-events: none;
}
.feature__corner--tl { top: 10px; left: 10px;  border-right: 0; border-bottom: 0; }
.feature__corner--tr { top: 10px; right: 10px; border-left: 0;  border-bottom: 0; }
.feature__corner--bl { bottom: 10px; left: 10px;  border-right: 0; border-top: 0; }
.feature__corner--br { bottom: 10px; right: 10px; border-left: 0;  border-top: 0; }

.feature__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(122,211,201,.28);
}

.feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 7px 14px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7ad3c9;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(122,211,201,.08);
}
.feature__tag em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--paper);
}
.feature__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7ad3c9;
  box-shadow: 0 0 0 0 rgba(122,211,201,.55);
  animation: pulse 2.4s infinite;
  color: rgba(122,211,201,.4);
}

.feature__title {
  display: flex;
  align-items: center;
  gap: 22px;
}
.feature__mark {
  width: 64px; height: 64px;
  flex-shrink: 0;
  color: #7ad3c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(122,211,201,.06);
}
.feature__mark svg { width: 36px; height: 36px; }
.feature__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -.012em;
  color: var(--paper);
  margin-bottom: 4px;
}
.feature__name-en {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7ad3c9;
}

.feature__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px 60px;
  align-items: start;
}

.feature__pitch {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  letter-spacing: -.005em;
  color: var(--paper);
  margin-bottom: 18px;
}
.feature__pitch em {
  font-style: italic;
  color: #7ad3c9;
  font-weight: 600;
}
.feature__pitch strong {
  font-weight: 600;
  color: #7ad3c9;
  font-style: italic;
}

.feature__desc {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: rgba(236,229,212,.88);
  max-width: 46ch;
}

.feature__rec {
  padding: 22px 24px;
  background: rgba(122,211,201,.08);
  border: 1px solid rgba(122,211,201,.22);
  border-radius: 2px;
}
.feature__rec-key {
  display: block;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7ad3c9;
  margin-bottom: 14px;
}
.feature__rec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
}
.feature__rec-list li {
  position: relative;
  padding-left: 22px;
}
.feature__rec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7ad3c9;
  font-weight: 700;
  font-size: 13px;
}

.feature__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px dashed rgba(122,211,201,.32);
}
.feature__pricing {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.feature__time {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7ad3c9;
}
.feature__price {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.01em;
  color: var(--paper);
}
.feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: #7ad3c9;
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--shop);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .35s var(--ease), letter-spacing .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(122,211,201,.55);
}
.feature__cta:hover {
  background: var(--paper);
  letter-spacing: .3em;
  box-shadow: 0 20px 40px -16px rgba(236,229,212,.55);
}
.feature__cta-arrow {
  font-family: var(--display);
  font-size: 18px;
  transition: transform .35s var(--ease);
}
.feature__cta:hover .feature__cta-arrow { transform: translateY(3px); }

@media (max-width: 800px) {
  .feature {
    padding: 32px 22px 28px;
    margin: 0 var(--gutter) 24px;
  }
  .feature__title { flex-direction: column; align-items: flex-start; gap: 14px; }
  .feature__mark { width: 52px; height: 52px; }
  .feature__mark svg { width: 28px; height: 28px; }
  .feature__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature__foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .feature__pricing { justify-content: space-between; }
  .feature__cta { justify-content: center; }
}

.menu__list {
  margin: 0 var(--gutter);
  padding: 50px 44px 40px;
  background: rgba(22, 19, 16, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(176,138,74,.3);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.5),
    0 10px 30px -10px rgba(0,0,0,.3);
}

/* ===========================================================
   MENU CATEGORIES — multi-section price list
   =========================================================== */
.menu__cats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.menu__cat {
  padding: 8px 0;
  position: relative;
}
.menu__cat-tag {
  position: absolute;
  top: -2px;
  right: 0;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--brass);
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .92;
}
.menu__cat--feature .menu__cat-name {
  /* tiny brass underline accent */
  position: relative;
  display: inline-block;
}
.menu__cat--feature .menu__cat-name::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass) 30%, transparent 80%);
}
.menu__cat-head {
  display: grid;
  grid-template-columns: 38px auto 1fr;
  gap: 4px 18px;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(176,138,74,.22);
  position: relative;
}
/* tiny brass corner ornament above the category */
.menu__cat-head::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 1px;
  background: var(--brass);
}
.menu__cat-icon {
  grid-row: 1 / 3;
  align-self: start;
  width: 32px; height: 24px;
  color: var(--brass);
  padding-top: 12px;
  transition: transform .5s var(--ease);
}
.menu__cat:hover .menu__cat-icon {
  transform: rotate(-6deg) translateY(-1px);
}
.menu__cat-num {
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--brass);
  padding-top: 10px;
}
.menu__cat-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--paper);
}
.menu__cat-sub {
  grid-column: 3;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(236,229,212,.82);
  margin-top: 6px;
}

.menu__cat-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
}
.menu__cat-cols--single {
  grid-template-columns: 1fr;
  max-width: 540px;
  margin: 0 auto;
}
.menu__cat-col-name {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}

.menu__rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu__rows li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 5px 0;
  transition: padding-left .35s var(--ease);
}
.menu__rows li::before {
  /* tiny brass dot that appears on hover */
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0;
  transform: translateY(-50%) translateX(-4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.menu__rows li:hover {
  padding-left: 8px;
}
.menu__rows li:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.menu__rows li:hover .menu__rp { color: var(--brass); }
.menu__rn {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: .01em;
}
.menu__rd {
  align-self: end;
  margin-bottom: .4em;
  height: 1px;
  background-image: radial-gradient(circle, rgba(236,229,212,.4) 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.menu__rp {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--paper);
  white-space: nowrap;
  letter-spacing: -.005em;
}

/* divider between categories — dotted line with brass fleuron in the center */
.menu__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 22px;
  margin: 12px 0 8px;
  position: relative;
}
.menu__rule::before,
.menu__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background:
    radial-gradient(circle, rgba(176,138,74,.45) 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: center;
}
/* the diamond + dots fleuron in the center */
.menu__rule {
  background:
    radial-gradient(circle, var(--brass) 2px, transparent 2.5px) center / 12px 4px no-repeat;
}

@media (max-width: 700px) {
  .menu__list { padding: 36px 22px 28px; }
  .menu__cat-head {
    grid-template-columns: 32px 1fr;
    gap: 4px 14px;
  }
  .menu__cat-icon { padding-top: 4px; }
  .menu__cat-num {
    grid-row: auto;
    grid-column: 2;
    padding-top: 0;
  }
  .menu__cat-name { grid-column: 2; }
  .menu__cat-sub { grid-column: 2; }
  .menu__cat-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .menu__rn { font-size: 14px; }
  .menu__rp { font-size: 15px; }
}

/* small fleuron divider between items */
.menu__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  color: var(--brass);
  opacity: .6;
}
.menu__divider svg {
  width: 32px; height: 12px;
}
.menu__item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(236,229,212,.18);
  transition: background .4s var(--ease), padding-left .5s var(--ease);
}
.menu__item:hover {
  padding-left: 12px;
  background: rgba(236,229,212,.025);
}

.menu__num {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .22em;
  color: var(--brass);
  padding-top: 14px;
}

.menu__body { display: flex; flex-direction: column; gap: 8px; }

/* the price-list line: name . . . . . . . . price */
.menu__line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: baseline;
}

.menu__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.7vw, 38px);
  letter-spacing: -.012em;
  line-height: 1.1;
  color: var(--paper);
}
.menu__name small {
  display: inline-block;
  font-family: var(--shop);
  font-style: normal;
  font-size: .48em;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-left: 10px;
  vertical-align: .16em;
}

/* dotted leader between name and price (vintage price list) */
.menu__dots {
  align-self: end;
  margin-bottom: .35em;
  height: 1px;
  background-image: radial-gradient(circle, rgba(236,229,212,.42) 1px, transparent 1px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}

.menu__price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.01em;
  color: var(--paper);
  white-space: nowrap;
}

.menu__desc {
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(236,229,212,.84);
  max-width: 56ch;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.menu__time {
  flex-shrink: 0;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-right: 4px;
}

/* signature item — distinct framed panel */
.menu__item--feature {
  position: relative;
  padding: 38px 28px 32px;
  margin: 8px 0;
  background:
    linear-gradient(180deg, rgba(176,138,74,.10), rgba(176,138,74,.02) 80%);
  border: 1px solid rgba(176,138,74,.32);
  grid-template-columns: 88px 1fr;
  border-bottom: 1px solid rgba(176,138,74,.32);
}
.menu__item--feature::before {
  content: "★ SIGNATURE · 一番人気";
  position: absolute;
  top: -10px; left: 22px;
  padding: 2px 12px;
  background: var(--ink);
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--brass);
}
.menu__item--feature::after {
  /* corner ornaments */
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(176,138,74,.18);
  pointer-events: none;
}
.menu__item--feature .menu__name {
  font-size: clamp(28px, 3vw, 44px);
}
.menu__item--feature .menu__price {
  color: var(--brass);
}
.menu__item--feature .menu__num {
  color: var(--brass);
  font-weight: 600;
}

/* ===========================================================
   MENU FOOT — notes + barber signature
   =========================================================== */
.menu__foot {
  margin: 0 var(--gutter);
  padding: 40px;
  background: rgba(22, 19, 16, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(176,138,74,.3);
  border-top: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.menu__foot-notes {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.menu__foot-aster {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--rust);
  padding-top: 4px;
}
.menu__foot-notes ul {
  list-style: none;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.05;
  color: var(--paper);
}
.menu__foot-notes li::before {
  content: "—";
  margin-right: 10px;
  color: var(--brass);
}

.menu__foot-sig {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(236,229,212,.3);
}
.menu__foot-sig-key {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
}
.menu__foot-sig-name {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  color: var(--paper);
}
.menu__foot-sig-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}
.menu__foot-sig-mark {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
}

@media (max-width: 700px) {
  .menu__cover { padding-bottom: 60px; }
  .menu__cover-stamps { flex-direction: column; gap: 4px; }
  .menu__cover-stamp + .menu__cover-stamp { padding-left: 0; }
  .menu__cover-stamp + .menu__cover-stamp::before { display: none; }
  .menu__item--feature { padding: 32px 18px 26px; }
  .menu__item--feature::before { left: 14px; font-size: 9px; }
  .menu__foot { grid-template-columns: 1fr; gap: 40px; padding-top: 50px; }
  .menu__foot-sig { text-align: left; }
}

@media (max-width: 700px) {
  .menu__intro { grid-template-columns: 1fr; }
  .menu__sub { justify-self: start; }
  .menu__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }
  .menu__num { padding-top: 0; }
  .menu__line { grid-template-columns: 1fr auto; gap: 12px; }
  .menu__dots { display: none; }
  .menu__name small { display: block; margin: 4px 0 0; }
  .menu__desc { flex-direction: column; gap: 6px; }
  .menu__item--feature::before { left: 0; }
}

/* ===========================================================
   WORKS
   =========================================================== */
.works {
  padding: 140px 0 120px;
}
.works__head {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
.works__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 110px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -.03em;
}
.works__title em { font-style: italic; color: var(--rust); }
.works__sub {
  font-family: var(--jp);
  font-size: 14px;
  line-height: 2;
  color: var(--ink-3);
  justify-self: end;
  max-width: 30ch;
}

.works__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.works__card {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  filter: saturate(.85) contrast(1.04);
  cursor: none;
}
.works__card--tall { grid-column: span 4; aspect-ratio: 3 / 5; }
.works__card--wide { grid-column: span 8; aspect-ratio: 16 / 10; }

.works__card img {
  width: 100%; height: 100%;
  transition: transform 1.4s var(--ease), filter .8s var(--ease);
}
.works__card:hover img { transform: scale(1.06); }

.works__card figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  display: flex; gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.works__card:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .works__head { grid-template-columns: 1fr; }
  .works__sub { justify-self: start; }
  .works__card { grid-column: span 6; }
  .works__card--tall { grid-column: span 6; }
  .works__card--wide { grid-column: span 12; }
}
@media (max-width: 600px) {
  .works__card, .works__card--tall, .works__card--wide { grid-column: span 12; aspect-ratio: 4 / 5; }
}

/* ===========================================================
   LA CASA — the shop, magazine spread
   real shop photos go in images/shop-*.jpg
   =========================================================== */
.casa {
  padding: 140px 0 120px;
  background: transparent;
  position: relative;
}
.casa::before {
  content: none;
  position: absolute;
  right: var(--gutter);
  top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rust);
  opacity: .55;
}

.casa__head {
  margin: 0 var(--gutter) 56px;
  padding: 40px 44px;
  background: rgba(236, 229, 212, .82);
  border: 1px solid rgba(22,19,16,.18);
  box-shadow:
    0 24px 60px -30px rgba(0,0,0,.35),
    0 6px 18px -8px rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px 50px;
  align-items: end;
}
.casa__title {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 110px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.022em;
}
.casa__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}
.casa__sub {
  font-family: var(--jp);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
  justify-self: end;
  max-width: 30ch;
  font-weight: 500;
}
.casa__sub .reveal-line { display: block; }

/* HERO photo of the building — full-width, dramatic */
.casa__hero {
  position: relative;
  margin: 0 var(--gutter) 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
  filter: saturate(.86) contrast(1.06);
  transition: filter .9s var(--ease), box-shadow .8s var(--ease);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.3);
  cursor: none;
}
.casa__hero:hover {
  filter: saturate(1) contrast(1.02);
  box-shadow: 0 28px 60px -24px rgba(0,0,0,.42);
}
.casa__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 2.5s var(--ease);
}
.casa__hero:hover img { transform: scale(1.04); }
/* hairline frame inside the hero photo, animated on hover */
.casa__hero .casa__edge {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(236,229,212,.42);
  pointer-events: none;
  z-index: 2;
  transition: inset .6s var(--ease), border-color .6s var(--ease);
}
.casa__hero:hover .casa__edge {
  inset: 18px;
  border-color: rgba(236,229,212,.75);
}

.casa__hero figcaption {
  position: absolute;
  left: 26px; bottom: 22px;
  display: flex; flex-direction: column;
  gap: 8px;
  z-index: 3;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0,0,0,.4);
}
.casa__hero-key {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  align-self: flex-start;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.casa__hero-cap {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.005em;
  line-height: 1.2;
}
.casa__hero-cap em { font-style: italic; }

.casa__hero-meta {
  position: absolute;
  right: 22px; bottom: 18px;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(236,229,212,.7);
  text-align: right;
}

/* empty state for hero photo when file missing */
.casa__hero.is-empty {
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 14px, rgba(22,19,16,.05) 14px 15px);
}
.casa__hero.is-empty::after {
  content: "↳ " attr(data-slot) " · " attr(data-hint);
  position: absolute;
  inset: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-3);
  border: 1px dashed var(--line);
  pointer-events: none;
}

.casa__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* image cards — shared editorial treatment */
.casa__big,
.casa__small {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  filter: saturate(.82) contrast(1.06) brightness(.99);
  transition: filter .8s var(--ease);
}

/* empty-slot placeholder — visible only when no image is found */
.casa__big.is-empty,
.casa__small.is-empty {
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 14px, rgba(22,19,16,.05) 14px 15px);
  filter: none;
}
.casa__big.is-empty::after,
.casa__small.is-empty::after {
  content: "↳ " attr(data-slot) " · " attr(data-hint);
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .08em;
  color: var(--ink-3);
  border: 1px dashed var(--line);
  pointer-events: none;
}
.casa__big.is-empty figcaption,
.casa__small.is-empty figcaption {
  color: var(--ink-3);
  text-shadow: none;
}
.casa__big:hover,
.casa__small:hover { filter: saturate(1) contrast(1.02) brightness(1); }

.casa__big img,
.casa__small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.casa__big:hover img,
.casa__small:hover img { transform: scale(1.04); }

/* hairline plate frame inside the photo edge */
.casa__edge {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(236,229,212,.42);
  pointer-events: none;
  z-index: 2;
}

.casa__big {
  grid-column: span 8;
  aspect-ratio: 16 / 11;
}
.casa__small--a { grid-column: span 3; aspect-ratio: 1; }
.casa__small--b { grid-column: span 3; aspect-ratio: 1; }
.casa__small--c { grid-column: span 3; aspect-ratio: 1; }

/* photo treatments — each casa photo gets a unique frame */

/* (a) sign — polaroid: cream border, slight rotation, tape on top */
.casa__small--a {
  background: var(--paper);
  padding: 14px 14px 50px;
  transform: rotate(-1.2deg);
  box-shadow:
    0 14px 40px -16px rgba(0,0,0,.45),
    0 4px 12px -6px rgba(0,0,0,.25);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.casa__small--a:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 20px 50px -16px rgba(0,0,0,.5),
    0 6px 14px -6px rgba(0,0,0,.3);
}
.casa__small--a::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px;
  height: 18px;
  background: rgba(176,138,74,.32);
  border: 1px solid rgba(176,138,74,.18);
  z-index: 4;
}
.casa__small--a img {
  position: relative;
  width: calc(100% - 0px);
  height: calc(100% - 36px);
}
.casa__small--a .casa__edge { display: none; }
.casa__small--a figcaption {
  left: 14px;
  bottom: 14px;
  z-index: 5;
  color: var(--ink);
  text-shadow: none;
}
.casa__small--a figcaption span:first-child { color: var(--rust); }
.casa__small--a figcaption span:last-child { color: var(--ink); }

/* (b) window — film-strip: black border with perforated holes */
.casa__small--b {
  background: #1a1714;
  padding: 22px 8px;
  position: relative;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,.55);
}
.casa__small--b::before,
.casa__small--b::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 22px;
  background-image:
    radial-gradient(circle, var(--paper) 0, var(--paper) 3px, transparent 3.5px);
  background-size: 14px 22px;
  background-repeat: repeat-x;
  background-position: 7px 50%;
  z-index: 3;
}
.casa__small--b::before { top: 0; }
.casa__small--b::after { bottom: 0; }
.casa__small--b img { width: 100%; height: 100%; }
.casa__small--b .casa__edge { display: none; }
.casa__small--b figcaption {
  bottom: 30px;
  z-index: 5;
}

/* (c) yellow door — postcard: stamp + postmark feel */
.casa__small--c {
  background: var(--paper);
  padding: 10px;
  box-shadow:
    0 14px 40px -16px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(22,19,16,.18);
}
.casa__small--c::after {
  /* postage stamp in corner */
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 44px;
  background: var(--rust);
  z-index: 4;
  clip-path: polygon(
    0% 4%, 4% 4%, 4% 0%, 8% 0%, 8% 4%, 12% 4%, 12% 0%, 16% 0%, 16% 4%, 20% 4%, 20% 0%, 24% 0%, 24% 4%, 28% 4%, 28% 0%, 32% 0%, 32% 4%, 36% 4%, 36% 0%, 40% 0%, 40% 4%, 44% 4%, 44% 0%, 48% 0%, 48% 4%, 52% 4%, 52% 0%, 56% 0%, 56% 4%, 60% 4%, 60% 0%, 64% 0%, 64% 4%, 68% 4%, 68% 0%, 72% 0%, 72% 4%, 76% 4%, 76% 0%, 80% 0%, 80% 4%, 84% 4%, 84% 0%, 88% 0%, 88% 4%, 92% 4%, 92% 0%, 96% 0%, 96% 4%, 100% 4%,
    100% 96%, 96% 96%, 96% 100%, 92% 100%, 92% 96%, 88% 96%, 88% 100%, 84% 100%, 84% 96%, 80% 96%, 80% 100%, 76% 100%, 76% 96%, 72% 96%, 72% 100%, 68% 100%, 68% 96%, 64% 96%, 64% 100%, 60% 100%, 60% 96%, 56% 96%, 56% 100%, 52% 100%, 52% 96%, 48% 96%, 48% 100%, 44% 100%, 44% 96%, 40% 96%, 40% 100%, 36% 100%, 36% 96%, 32% 96%, 32% 100%, 28% 100%, 28% 96%, 24% 96%, 24% 100%, 20% 100%, 20% 96%, 16% 96%, 16% 100%, 12% 100%, 12% 96%, 8% 96%, 8% 100%, 4% 100%, 4% 96%, 0% 96%
  );
  pointer-events: none;
}
.casa__small--c .casa__edge {
  inset: 10px;
  border: 1px solid rgba(236,229,212,.6);
}
.casa__small--c img { width: 100%; height: 100%; }

.casa__big figcaption,
.casa__small figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 3;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.casa__big figcaption span:first-child,
.casa__small figcaption span:first-child {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}
.casa__big figcaption span:last-child,
.casa__small figcaption span:last-child {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -.005em;
}
.casa__big figcaption em,
.casa__small figcaption em { font-style: italic; }

/* note / "how to find us" panel */
.casa__note {
  grid-column: span 3;
  aspect-ratio: 1;
  padding: 26px 24px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}
.casa__note::before {
  /* small mint dot — references the actual A-frame sign color */
  content: "";
  position: absolute;
  top: 22px; right: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7ad3c9;
  box-shadow: 0 0 0 4px rgba(122,211,201,.18);
}
.casa__note-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
}
.casa__note-en {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.casa__note-en em { font-style: italic; color: var(--paper); }
.casa__note-en .reveal-line { display: block; }
.casa__note-list {
  border-top: 1px solid rgba(236,229,212,.2);
  padding-top: 16px;
  font-family: var(--jp);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(236,229,212,.78);
}
.casa__note-list span { color: var(--brass); margin-right: 8px; }

@media (max-width: 1000px) {
  .casa__head { grid-template-columns: 1fr; }
  .casa__sub { justify-self: start; }
  .casa__hero { aspect-ratio: 4/3; }
  .casa__small--a,
  .casa__small--b,
  .casa__small--c { grid-column: span 6; aspect-ratio: 1; }
  /* note panel sits next to the 4th photo (shop-facade), same square shape */
  .casa__note {
    grid-column: span 6;
    aspect-ratio: 1;
    padding: 28px 26px;
  }
}
@media (max-width: 600px) {
  .casa__small--a,
  .casa__small--b,
  .casa__small--c { grid-column: span 12; aspect-ratio: 4/3; }
  .casa__note { grid-column: span 12; aspect-ratio: auto; padding: 28px 26px; }
  .casa__hero-meta { display: none; }
}

/* ===========================================================
   HORIZON — fixed beach background interlude
   =========================================================== */
.horizon {
  position: relative;
  min-height: 92vh;
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);

  background-image:
    linear-gradient(180deg, rgba(15,18,22,.32) 0%, rgba(15,18,22,.14) 35%, rgba(15,18,22,.46) 100%),
    url("https://images.unsplash.com/photo-1439405326854-014607f694d7?w=2200&q=85&auto=format&fit=crop");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  background-attachment: fixed, fixed;
}

/* mobile / iOS doesn't honor background-attachment: fixed reliably */
@media (max-width: 900px), (hover: none) {
  .horizon {
    background-attachment: scroll, scroll;
    min-height: 78vh;
  }
}

.horizon__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(22,19,16,.18) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent 0 3px,
      rgba(22,19,16,.04) 3px 4px
    );
  mix-blend-mode: multiply;
}

/* hairline horizon line */
.horizon::after {
  content: "";
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236,229,212,.55) 20%, rgba(236,229,212,.55) 80%, transparent);
  z-index: 1;
  pointer-events: none;
}

.horizon__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.horizon__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,229,212,.78);
  margin-bottom: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(236,229,212,.35);
}

.horizon__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7.4vw, 120px);
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 1px 30px rgba(0,0,0,.18);
}
.horizon__title em {
  font-style: italic;
  color: var(--paper);
  position: relative;
}
.horizon__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: .08em;
  height: 1px;
  background: var(--rust);
  opacity: .85;
}

.horizon__sub {
  margin-top: 28px;
  font-family: var(--jp);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
  color: rgba(236,229,212,.88);
  max-width: 36ch;
  text-shadow: 0 1px 20px rgba(0,0,0,.3);
}
.horizon__sub .reveal-line { display: block; }

.horizon__meta {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(236,229,212,.7);
  padding-top: 18px;
  border-top: 1px solid rgba(236,229,212,.25);
  max-width: 700px;
}

/* override paper bg for reveal-line cover (so it doesn't flash cream over the beach) */
.horizon .reveal-line::after,
.horizon .reveal-word::after {
  background: rgba(22,19,16,.85);
}

/* (marquee removed for clarity) */

/* ===========================================================
   BOOK
   =========================================================== */
.book {
  padding: 140px 0 120px;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.book > .section-head { order: 1; }
.book > .book__grid   { order: 2; margin-bottom: 56px; }
.book > .book__lede   { order: 3; margin-bottom: 0; }
.book__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
/* phone-only: wide horizontal callcard */
.book__grid .callcard {
  width: 100%;
  max-width: 1080px;
  height: auto;
}
@media (max-width: 1000px) {
  .book__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
  }
  .book__grid .calendar,
  .book__grid .ticket { height: auto; }
}

/* lede card — matches calendar's paper-gradient & brass-cornered frame */
.book__lede {
  position: static;
  margin: 0 var(--gutter) 56px;
  padding: 40px 44px;
  background:
    linear-gradient(180deg, rgba(245,239,225,.98) 0%, rgba(237,229,210,.96) 100%);
  border: 1px solid rgba(22,19,16,.18);
  box-shadow:
    0 24px 60px -30px rgba(0,0,0,.35),
    0 6px 18px -8px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}
.book__lede::before,
.book__lede::after {
  content: "";
  position: absolute;
  width: 26px; height: 1px;
  background: var(--brass);
  pointer-events: none;
}
.book__lede::before { top: 16px; left: 16px; }
.book__lede::after  { bottom: 16px; right: 16px; }
.book__title {
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 112px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.018em;
  margin-bottom: 30px;
}
.book__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}
.book__lede p {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
  max-width: 34ch;
  margin-bottom: 32px;
}

.book__direct {
  border-top: 1px solid var(--line);
}
.book__direct li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}
.book__direct-key {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  color: var(--rust);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: none;
}
.book__direct a {
  position: relative;
  display: inline-block;
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: .02em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
/* phone number — upright, heavier, tabular for clarity */
.book__direct li:first-child a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .08em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.book__direct a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--rust);
  transition: right .5s var(--ease);
}
.book__direct a:hover { color: var(--rust); }
.book__direct a:hover::after { right: 0; }

/* ===========================================================
   CALENDAR — minimal, editorial
   =========================================================== */
.calendar {
  margin: 0 var(--gutter) 80px;
  padding: 40px 44px 32px;
  background:
    linear-gradient(180deg, rgba(245,239,225,.98) 0%, rgba(237,229,210,.96) 100%);
  border: 1px solid rgba(22,19,16,.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    0 24px 60px -28px rgba(0,0,0,.22),
    0 6px 16px -8px rgba(0,0,0,.12);
  position: relative;
  isolation: isolate;
}

/* tiny brass accent line top-left + bottom-right (subtle ornamental corners) */
.calendar::before,
.calendar::after {
  content: "";
  position: absolute;
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: .6;
  pointer-events: none;
}
.calendar::before { top: 16px; left: 16px; }
.calendar::after  { bottom: 16px; right: 16px; }

.calendar__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px 24px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22,19,16,.2);
}

.calendar__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calendar__year {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--rust);
}
.calendar__month {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(64px, 8vw, 108px);
  line-height: .88;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 6px 0 4px;
}
.calendar__jp {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-3);
}

.calendar__nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: end;
  padding-bottom: 6px;
}
.calendar__nav button {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.calendar__nav button:hover {
  background: var(--ink);
  color: var(--paper);
}
.calendar__nav button svg { width: 16px; height: 16px; display: block; }
.calendar__today-btn {
  width: auto !important;
  padding: 0 14px;
  border-radius: 999px !important;
  border: 1px solid rgba(22,19,16,.4) !important;
  height: 32px !important;
  font-size: 10px !important;
  letter-spacing: .26em !important;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22,19,16,.12);
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-align: center;
  color: var(--ink-2);
}
.calendar__weekdays .is-weekend { color: var(--rust); }
.calendar__weekdays .is-closed-head {
  color: var(--ink-3);
  position: relative;
}
.calendar__weekdays .is-closed-head::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(22,19,16,.45);
  margin: 4px auto 0;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
  outline: 0;
  padding: 0;
}
.calendar__day:hover {
  background: rgba(22,19,16,.06);
}
.calendar__day-num {
  position: relative;
  z-index: 1;
}
.calendar__day-mark {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--jp);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(22,19,16,.45);
  z-index: 1;
}

.calendar__day.is-empty {
  pointer-events: none;
  background: transparent;
  color: transparent;
}
.calendar__day.is-past {
  color: rgba(22,19,16,.25);
  cursor: not-allowed;
}
.calendar__day.is-past:hover {
  background: transparent;
}
.calendar__day.is-weekend { color: var(--rust); }

/* today — a clean rust ring centered on the number */
.calendar__day.is-today {
  font-weight: 500;
}
.calendar__day.is-today::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* selected — solid filled circle */
.calendar__day.is-selected {
  color: var(--paper);
}
.calendar__day.is-selected::before {
  content: "";
  position: absolute;
  inset: 14%;
  background: var(--ink);
  border-radius: 50%;
  z-index: 0;
}
.calendar__day.is-selected.is-today::after { border-color: var(--brass); }
.calendar__day.is-selected.is-weekend { color: var(--paper); }

/* monday closed days — muted with subtle diagonal slash */
.calendar__day.is-closed {
  color: rgba(22,19,16,.35);
  cursor: not-allowed;
}
.calendar__day.is-closed:hover { background: transparent; }
.calendar__day.is-closed::after {
  content: "";
  position: absolute;
  top: 50%; left: 22%; right: 22%;
  height: 1px;
  background: rgba(22,19,16,.32);
  transform: rotate(-22deg);
  transform-origin: center;
  pointer-events: none;
}

.calendar__foot {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(22,19,16,.12);
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.calendar__legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calendar__legend--right { margin-left: auto; }
.calendar__legend-mark {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.calendar__legend-mark--today { border: 1.5px solid var(--rust); }
.calendar__legend-mark--selected { background: var(--ink); }
.calendar__legend-mark--closed {
  border-radius: 0;
  width: 14px; height: 1px;
  background: rgba(22,19,16,.5);
  transform: rotate(-22deg);
}

@media (max-width: 700px) {
  .calendar {
    margin: 0 var(--gutter) 60px;
    padding: 28px 18px 22px;
  }
  .calendar::before, .calendar::after { width: 18px; }
  .calendar__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calendar__nav { justify-content: flex-start; }
  .calendar__weekdays { font-size: 11px; gap: 2px; }
  .calendar__grid { gap: 2px; }
  .calendar__day { font-size: 22px; }
  .calendar__day-mark { font-size: 10px; }
  .calendar__foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .calendar__legend--right { margin-left: 0; }
}

/* ===========================================================
   TIME SLOTS — booking time picker
   =========================================================== */
.slots {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(22,19,16,.18);
}
.slots[hidden] { display: none; }

.slots__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.slots__head-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slots__key {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
}
.slots__date {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}

.slots__legend {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.slots__legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.slots__legend-mark {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.slots__legend-mark--open     { background: rgba(110,201,144,.65); border: 1px solid #6ec990; }
.slots__legend-mark--booked   { background: rgba(22,19,16,.12);    border: 1px solid rgba(22,19,16,.45); }
.slots__legend-mark--selected { background: var(--ink); }

.slots__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.slot {
  position: relative;
  padding: 14px 0;
  background: transparent;
  border: 1px solid rgba(22,19,16,.22);
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.005em;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.slot__tag {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(22,19,16,.5);
}
.slot--open {
  border-color: rgba(110,201,144,.55);
  background: rgba(110,201,144,.06);
}
.slot--open .slot__tag { color: #4d8e6a; }
.slot--open:hover {
  background: rgba(110,201,144,.16);
  border-color: #6ec990;
  transform: translateY(-2px);
}
.slot--booked {
  cursor: not-allowed;
  color: rgba(22,19,16,.35);
  border-style: dashed;
  text-decoration: line-through;
  text-decoration-color: rgba(22,19,16,.3);
}
.slot--booked .slot__tag { color: rgba(22,19,16,.35); }
.slot--selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.slot--selected .slot__tag { color: var(--brass); }
.slot--past {
  color: rgba(22,19,16,.25);
  border-color: rgba(22,19,16,.12);
  cursor: not-allowed;
}
.slot--past .slot__tag { color: rgba(22,19,16,.25); }

.slots__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed rgba(22,19,16,.22);
}
.slots__note {
  font-family: var(--jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-2);
  flex: 1;
  min-width: 200px;
}
.slots__note em {
  font-family: var(--display);
  font-style: italic;
  color: var(--rust);
  font-size: 1.15em;
  margin: 0 2px;
}
.slots__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--shop);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .35s var(--ease), letter-spacing .4s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.3);
}
.slots__cta[hidden] { display: none !important; }
.slots__cta:hover {
  background: var(--rust);
  border-color: var(--rust);
  letter-spacing: .28em;
  box-shadow: 0 16px 30px -14px rgba(162,59,31,.5);
}

/* form datetime display */
.tfield__datetime {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(22,19,16,.45);
  padding: 4px 0 8px;
}
.tfield__datetime input[type="date"] {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  width: auto;
  flex: 1;
}
.tfield__time-display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--rust);
  letter-spacing: -.005em;
  min-width: 60px;
  text-align: right;
}
.tfield__hint {
  grid-column: 2;
  margin-top: 6px;
  font-family: var(--jp);
  font-size: 12px;
  color: var(--ink-3);
}

@media (max-width: 700px) {
  .slots__grid { grid-template-columns: repeat(3, 1fr); }
  .slot { font-size: 18px; padding: 12px 0; }
}

/* shop hours card under the book lede */
.book__hours {
  margin-top: 36px;
  padding: 18px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 360px;
}
.book__hours-key {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
}
.book__hours-val {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.005em;
  color: var(--ink);
}
.book__hours-note {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-2);
}

/* ===========================================================
   TICKET — vintage appointment slip
   =========================================================== */
.ticket {
  position: relative;
  background:
    /* ruled-paper horizontal lines */
    repeating-linear-gradient(180deg,
      transparent 0 38px,
      rgba(22,19,16,.04) 38px 39px
    ),
    /* subtle warm paper */
    linear-gradient(180deg, #f5efe1 0%, #ede5d2 100%);
  border: 1px solid rgba(22,19,16,.18);
  border-radius: 2px;
  padding: 36px 36px 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    0 30px 60px -30px rgba(0,0,0,.25),
    0 8px 20px -10px rgba(0,0,0,.18);
  transform: rotate(-.4deg);
  transform-origin: top center;
}
.ticket::before {
  /* faint stamp watermark in upper right */
  content: "";
  position: absolute;
  top: 22px; right: 30px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 49%, rgba(162,59,31,.18) 49%, rgba(162,59,31,.18) 50%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.ticket > * { position: relative; z-index: 1; }

/* perforated edges (top/bottom dot-hole pattern) */
.ticket__perforation {
  position: absolute;
  left: 14px; right: 14px;
  height: 12px;
  background-image: radial-gradient(circle, rgba(22,19,16,.4) 1.6px, transparent 1.8px);
  background-size: 16px 12px;
  background-repeat: repeat-x;
  background-position: center;
  pointer-events: none;
}
.ticket__perforation--top    { top: -6px; }
.ticket__perforation--bottom { bottom: -6px; }

.ticket__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 18px;
}
.ticket__head-l { justify-self: start; display: flex; align-items: baseline; gap: 8px; }
.ticket__head-r { justify-self: end;   display: flex; align-items: baseline; gap: 8px; }
.ticket__head-c {
  justify-self: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ticket__head-key {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
}
.ticket__head-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink-2);
}
.ticket__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
}
.ticket__tag {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--rust);
}

.ticket__rule {
  height: 1px;
  background: var(--ink);
  opacity: .85;
}
.ticket__rule--dashed {
  background: none;
  border-top: 1px dashed rgba(22,19,16,.4);
  height: 0;
  margin: 18px 0;
}

.ticket__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0 6px;
}

.tfield {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: baseline;
  position: relative;
}
.tfield__no {
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--rust);
  padding-top: 4px;
}
.tfield__lbl {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.tfield input,
.tfield textarea,
.tfield select {
  grid-column: 2;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -.005em;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22,19,16,.45);
  outline: 0;
  padding: 4px 0 8px;
  width: 100%;
  transition: border-color .3s var(--ease);
}
.tfield input:focus,
.tfield textarea:focus,
.tfield select:focus {
  border-color: var(--rust);
}
.tfield input::placeholder,
.tfield textarea::placeholder {
  font-family: var(--jp);
  font-size: 14px;
  font-style: italic;
  color: rgba(22,19,16,.32);
}

.tfield-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

.tfield__select-wrap {
  grid-column: 2;
  position: relative;
}
.tfield__select-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(162,59,31,.5) 0%,
    rgba(22,19,16,.18) 30%,
    rgba(22,19,16,.18) 70%,
    rgba(162,59,31,.5) 100%);
  pointer-events: none;
  transform: scaleX(.5);
  transition: transform .5s var(--ease);
  transform-origin: center;
}
.tfield__select-wrap:focus-within::after { transform: scaleX(1); }
.tfield__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .005em;
  color: var(--ink);
}
.tfield__select-wrap select option {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  padding: 8px 12px;
}
.tfield__select-wrap select option:first-child {
  font-style: italic;
  font-weight: 600;
  color: rgba(22,19,16,.5);
}
.tfield__caret {
  position: absolute;
  right: 6px; bottom: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--rust);
  pointer-events: none;
  transition: transform .35s var(--ease);
}
.tfield__select-wrap:focus-within .tfield__caret {
  transform: translateY(2px);
}

/* checkbox styled as a vintage stamp box */
.tfield .check,
.ticket .check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--jp);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  margin-top: 4px;
}
.ticket .check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ticket .check__box {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--rust);
  transition: background .2s var(--ease);
}
.ticket .check__box svg {
  width: 12px; height: 12px;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.ticket .check input:checked + .check__box svg {
  opacity: 1; transform: scale(1);
}

/* footer with stamp button + signature line */
.ticket__foot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 4px;
}

.ticket__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px 14px 16px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), background .4s var(--ease), letter-spacing .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.4);
}
.ticket__submit:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(162,59,31,.6);
}
.ticket__submit:hover .ticket__submit-stamp { animation-duration: 4s; }
.ticket__submit:disabled { opacity: .65; pointer-events: none; }

.ticket__submit-stamp {
  width: 36px; height: 36px;
  color: var(--brass);
  flex-shrink: 0;
  animation: stampSpin 16s linear infinite;
}
@keyframes stampSpin { to { transform: rotate(360deg); } }
.ticket__submit-stamp svg { width: 100%; height: 100%; }

.ticket__submit-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ticket__submit-text small {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(236,229,212,.65);
  margin-top: 2px;
}

.ticket__sig {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: end;
}
.ticket__sig-key {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ticket__sig-line {
  width: 100%; height: 40px;
  color: var(--ink);
  opacity: .65;
}
.ticket__sig-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
}
.ticket__sig-name em { font-style: italic; color: var(--rust); }

.ticket__notice {
  margin-top: 16px;
  font-family: var(--jp);
  font-size: 13px;
  color: var(--rust);
  text-align: center;
}

@media (max-width: 700px) {
  .ticket {
    padding: 30px 22px 24px;
    transform: rotate(0);
  }
  .ticket__head { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .ticket__head-l, .ticket__head-r { justify-self: center; }
  .tfield-row { grid-template-columns: 1fr; gap: 18px; }
  .ticket__foot { grid-template-columns: 1fr; gap: 18px; }
}

/* keep legacy book__form rules harmless: we no longer use the old class */
.book__form {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.field {
  border-bottom: 1px solid var(--line);
  padding: 22px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color .3s var(--ease);
}
.field:focus-within { border-color: var(--ink); }
.field--row {
  flex-direction: row;
  gap: 32px;
}
.field--row > div {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 10px;
}
.field label span {
  color: var(--rust);
  min-width: 20px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: -.01em;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  padding: 4px 0;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  font-family: var(--jp);
  font-size: 15px;
  color: var(--ink-3);
  font-style: italic;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 18px, calc(100% - 6px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.field--check { border-bottom: 0; padding-bottom: 0; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--jp);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  display: inline-block;
  width: 16px; height: 16px;
  border: 1px solid var(--ink);
  position: relative;
  transition: background .3s var(--ease);
}
.check__box::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--rust);
  transform: scale(0);
  transition: transform .3s var(--ease);
}
.check input:checked + .check__box::after { transform: scale(1); }

.book__submit {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px 18px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease);
}
.book__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.book__submit:hover { color: var(--paper); }
.book__submit:hover::before { transform: translateY(0); }
.book__submit-arrow {
  font-family: var(--serif);
  font-size: 18px;
  transition: transform .4s var(--ease);
}
.book__submit:hover .book__submit-arrow { transform: translateX(6px); }

.book__notice {
  margin-top: 22px;
  font-family: var(--jp);
  font-size: 13px;
  color: var(--rust);
}

@media (max-width: 1000px) {
  .book__grid { grid-template-columns: 1fr; gap: 60px; }
  .book__lede { position: static; }
  .field--row { flex-direction: column; gap: 20px; }
}

/* ===========================================================
   VISIT / MAP — big map + floating info card + landmark cues
   =========================================================== */
.visit {
  padding: 140px 0 80px;
  background: transparent;
  border-top: 0;
  display: flex;
  flex-direction: column;
}
.visit > .section-head  { order: 1; }
.visit > .map           { order: 2; margin-bottom: 60px; }
.visit > .visit__intro  { order: 3; margin-bottom: 0; }

.visit__intro {
  margin: 0 var(--gutter) 56px;
  padding: 40px 44px;
  background: rgba(236, 229, 212, .82);
  border: 1px solid rgba(22,19,16,.18);
  box-shadow:
    0 24px 60px -30px rgba(0,0,0,.35),
    0 6px 18px -8px rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px 50px;
  align-items: end;
}
.visit__intro .visit__title { margin: 0; }
.visit__sub {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
  justify-self: end;
  max-width: 32ch;
}
.visit__sub .reveal-line { display: block; }

/* big map area — map and info card side by side, no overlay */
.map {
  position: relative;
  padding: 0 var(--gutter);
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(22,19,16,.28);
  box-shadow:
    0 30px 70px -40px rgba(0,0,0,.35),
    0 8px 24px -10px rgba(0,0,0,.15);
}
.map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  /* show map at full clarity now that it's the focus */
  filter: none;
}

/* floating coordinate tag (top right of map) */
.map__coords {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid rgba(22,19,16,.28);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  pointer-events: none;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.18);
}

/* info card now beside the map, not overlapping */
.map__card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(22,19,16,.28);
  padding: 28px 30px 24px;
  box-shadow:
    0 24px 60px -32px rgba(0,0,0,.32),
    0 8px 20px -10px rgba(0,0,0,.18);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.map__card-actions { margin-top: auto; }
.map__card-head {
  border-bottom: 1px solid rgba(22,19,16,.18);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.map__card-key {
  display: block;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.map__card-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -.005em;
  line-height: 1.05;
  color: var(--ink);
}
.map__card-name em {
  font-style: normal;
  color: var(--rust);
  margin: 0 4px;
}

.map__card-dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(22,19,16,.28);
  margin-bottom: 16px;
}
.map__card-dl > div {
  display: contents;
}
.map__card-dl dt {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
  padding-top: 5px;
}
.map__card-dl dd {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 6px;
}
.map__card-dl dd small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-3);
  margin-top: 2px;
}
.map__card-edit {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  background: rgba(162,59,31,.1);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--rust);
  border-radius: 2px;
}

.map__card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--ink);
  border: 1px solid rgba(22,19,16,.28);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s var(--ease), letter-spacing .4s var(--ease);
}
.map__action:hover { letter-spacing: .045em; }
.map__action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.map__action:hover { color: var(--paper); border-color: var(--ink); }
.map__action:hover::before { transform: translateY(0); }
.map__action svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.map__action-arrow {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 14px;
}
.map__action--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.map__action--primary:hover {
  background: var(--rust);
  border-color: var(--rust);
}
.map__action--primary::before { display: none; }

/* phone-number button: clearer digits, slightly heavier, no italic */
.map__action[href^="tel:"] span:not(.map__action-arrow) {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .08em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

/* landmark cues — 3 cards below the map */
.visit__cues {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}
.visit__cue {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 26px 24px;
  background: var(--paper);
  border: 1px solid rgba(22,19,16,.18);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.18);
}
.visit__cue:hover {
  transform: translateY(-6px);
  border-color: var(--rust);
  box-shadow: 0 18px 36px -16px rgba(0,0,0,.32);
}
.visit__cue-icon {
  width: 38px; height: 38px;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color .35s var(--ease), transform .55s var(--ease);
}
.visit__cue:hover .visit__cue-icon {
  color: var(--rust);
  transform: translateY(-1px) rotate(-3deg);
}
.visit__cue-key {
  font-family: var(--shop);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--rust);
}
.visit__cue-en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.1vw, 28px);
  color: var(--ink);
  letter-spacing: -.005em;
}
.visit__cue-jp {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

@media (max-width: 1000px) {
  .visit__intro { grid-template-columns: 1fr; }
  .visit__sub { justify-self: start; }
  .map {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map__frame { aspect-ratio: 16 / 11; min-height: 380px; }
  .visit__cues { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .map__frame { aspect-ratio: 4/3; min-height: 320px; }
  .map__coords { top: 10px; right: 10px; font-size: 10px; padding: 6px 10px; }
  .map__card { padding: 22px 18px; }
  .map__card-dl { grid-template-columns: 60px 1fr; }
}

/* legacy visit__grid kept harmless */
.visit__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.visit__title {
  font-family: var(--display);
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 40px;
}
.visit__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}

.visit__dl {
  border-top: 1px solid var(--line);
}
.visit__dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.visit__dl dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust);
  padding-top: 4px;
}
.visit__dl dd {
  font-family: var(--jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.visit__dl-note {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .05em;
}

.visit__btn {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease);
}
.visit__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.visit__btn:hover { color: var(--paper); }
.visit__btn:hover::before { transform: translateY(0); }

.visit__map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(.5) contrast(1.05);
  transition: filter .6s var(--ease);
}
.visit__map-frame:hover { filter: grayscale(0) contrast(1); }
.visit__map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.visit__map-meta {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 1000px) {
  .visit__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.foot {
  background: transparent;
  color: var(--paper);
  padding: 80px var(--gutter) 30px;
  position: relative;
  overflow: hidden;
}
.foot__big {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .8;
  letter-spacing: -.06em;
  margin-bottom: 60px;
  user-select: none;
}
.foot__big span {
  display: inline-block;
  transition: transform .6s var(--ease), color .4s var(--ease);
  cursor: default;
}
.foot__big span:nth-child(odd) { font-style: italic; color: var(--brass); }
.foot__big span:hover {
  transform: translateY(-12px) rotate(-2deg);
  color: var(--rust);
}

.foot__cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  padding: 32px;
  margin-bottom: 30px;
  background: rgba(22, 19, 16, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(176,138,74,.18);
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--serif), "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1.6;
}
.foot__col--end { text-align: right; }
.foot__key {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--paper);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(236,229,212,.18);
}
.foot__key--accent { color: var(--brass); }
.foot__col:last-child .foot__key { color: #7ad3c9; }
.foot__col a {
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color .3s var(--ease), transform .35s var(--ease);
}
.foot__col--end a, .foot__col--end span { margin-left: auto; }
.foot__col a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
  transition: right .5s var(--ease);
}
.foot__col a:hover { color: var(--brass); transform: translateX(4px); }
.foot__col a:hover::after { right: 0; }

.foot__rule {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(122,211,201,.45) 25%,
    rgba(176,138,74,.45) 50%,
    rgba(162,59,31,.45) 75%,
    transparent 100%);
  margin: 0 0 20px;
}
.foot__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(236,229,212,.55);
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__col--end { text-align: left; }
  .foot__col--end a, .foot__col--end span { margin-left: 0; }
  .foot__base { flex-direction: column; gap: 8px; }
}

/* ===========================================================
   HERO LIVE STATUS — small green-dot pill at the bottom-left
   =========================================================== */
.hero__live {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 8px;
  font-family: "Cormorant Garamond", "Zen Old Mincho", "Yu Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .04em;
  font-variant-numeric: lining-nums tabular-nums;
  text-transform: none;
  color: rgba(236, 229, 212, .97);
  background: rgba(22, 19, 16, .3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 229, 212, .26);
  border-radius: 999px;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.28);
}
.hero__live [data-open-now] {
  font-feature-settings: "lnum" 1, "tnum" 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hero__live-dot {
  width: 5px; height: 5px;
  align-self: center;
}
.hero__live [data-open-now] {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.hero__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6ec990;
  box-shadow: 0 0 0 0 rgba(110, 201, 144, .55);
  animation: pulse 2.4s infinite;
  color: rgba(110, 201, 144, .45);
}
.hero__live.is-closed .hero__live-dot {
  background: var(--rust);
  color: rgba(162, 59, 31, .45);
}
.hero__live.is-closed {
  color: rgba(236, 229, 212, .9);
}

/* ===========================================================
   HERO CURSOR SPOTLIGHT — warm radial gloss that follows mouse
   =========================================================== */
.hero__spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 218, 167, .22),
    rgba(255, 180, 120, .08) 38%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: opacity .8s var(--ease);
}
.hero:hover .hero__spot { opacity: 1; }
@media (hover: none) { .hero__spot { display: none; } }


/* ===========================================================
   STATS — editorial count-up row beneath casa
   =========================================================== */
.stats {
  margin: 80px var(--gutter) 0;
  padding: 44px 36px;
  background: rgba(236, 229, 212, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(22,19,16,.12);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.35);
}
.stats__row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 24px;
}
.stats__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stats__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--rust);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  transition: transform .9s var(--ease);
  display: inline-block;
}
.stats__lbl {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.7;
}
.stats__lbl em {
  font-family: var(--jp);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink);
  text-transform: none;
}
.stats__rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg,
    transparent 0%, rgba(22,19,16,.28) 30%,
    rgba(22,19,16,.28) 70%, transparent 100%);
}
@media (max-width: 760px) {
  .stats__row {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }
  .stats__rule { display: none; }
}


/* ===========================================================
   STORY — owner's journey, magazine pull-out (dark variant)
   =========================================================== */
.story {
  position: relative;
  padding: 140px var(--gutter) 130px;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
}
.story__rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(22,19,16,.5);
  max-width: 1080px;
  margin: 0 auto 56px;
}
.story__rule span:first-child,
.story__rule span:last-child {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,19,16,.28), transparent);
}
.story__rule em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--rust);
  text-transform: none;
  margin-right: 8px;
}
.story__head {
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}
.story__title {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: 1.18;
  letter-spacing: .005em;
  color: var(--ink);
  margin: 0;
}
.story__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
}
.story__title .reveal-line { display: block; }
.story__lede {
  margin-top: 22px;
}
.story__byline {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.story__body {
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  padding: 0 24px;
  position: relative;
}
.story__body::before,
.story__body::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  background: rgba(22,19,16,.28);
  transform: translateX(-50%);
}
.story__body::before { top: -32px; }
.story__body::after  { bottom: -32px; }
.story__para {
  font-family: var(--jp), "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: .04em;
  color: var(--ink);
  margin: 0 0 26px 0;
  text-align: justify;
}
.story__para:last-child { margin-bottom: 0; }
.story__para em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
  font-size: 1.05em;
}
.story__para--lead {
  font-size: 18px;
}
.story__dropcap {
  float: left;
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 84px;
  line-height: 0.82;
  color: var(--rust);
  padding: 8px 16px 0 0;
  margin-top: 4px;
}

/* Timeline — vertical rail with dots */
.story__timeline {
  list-style: none;
  max-width: 640px;
  margin: 88px auto 0;
  padding: 0 24px;
  position: relative;
}
.story__timeline::before {
  content: "";
  position: absolute;
  left: calc(24px + 96px);
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent, rgba(22,19,16,.32) 8%, rgba(22,19,16,.32) 92%, transparent);
}
.story__moment {
  display: grid;
  grid-template-columns: 96px 28px 1fr;
  align-items: center;
  gap: 0;
  padding: 22px 0;
  position: relative;
}
.story__moment + .story__moment {
  border-top: 1px dashed rgba(22,19,16,.18);
}
.story__moment-year {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .01em;
  color: var(--ink-2);
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
  padding-right: 8px;
}
.story__moment-year em {
  font-style: italic;
  font-weight: 700;
  color: var(--rust);
  font-size: 1.15em;
}
.story__moment-rule {
  position: relative;
  height: 100%;
  width: 28px;
}
.story__moment-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(176,138,74,.18);
}
.story__moment--accent .story__moment-rule::after {
  background: var(--rust);
  width: 13px;
  height: 13px;
  box-shadow:
    0 0 0 6px rgba(162,59,31,.18),
    0 0 0 0 var(--rust);
  animation: pulse 2.6s infinite;
}
.story__moment-text {
  font-family: var(--jp), serif;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  text-align: left;
  letter-spacing: .02em;
  padding-left: 14px;
}
.story__moment-text em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
}
.story__moment--accent .story__moment-text {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}

.story__foot {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 0 24px;
  text-align: center;
}
.story__closing {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: .03em;
  margin: 0 0 32px 0;
}
.story__closing em { font-style: italic; }
.story__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .03em;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), letter-spacing .4s var(--ease), transform .3s var(--ease);
}
.story__cta:hover {
  background: var(--rust);
  border-color: var(--rust);
  letter-spacing: .06em;
  transform: translateY(-2px);
}
.story__cta-arrow {
  font-style: normal;
  transition: transform .35s var(--ease);
}
.story__cta:hover .story__cta-arrow { transform: translateX(4px); }

@media (max-width: 780px) {
  .story { padding: 90px 0 80px; }
  .story__body { padding: 0 22px; }
  .story__dropcap { font-size: 64px; padding: 6px 12px 0 0; }
  .story__timeline { padding: 0 22px; }
  .story__timeline::before { left: calc(22px + 64px); }
  .story__moment {
    grid-template-columns: 64px 28px 1fr;
  }
  .story__moment-year { font-size: 20px; }
  .story__moment-text { font-size: 14.5px; padding-left: 10px; }
}


/* ===========================================================
   LIGHTBOX — click casa photos to expand
   =========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(11, 9, 7, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 120px -40px rgba(0,0,0,.7);
  transform: scale(.98);
  transition: transform .45s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(236,229,212,.4);
  background: rgba(0,0,0,.2);
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lightbox__close:hover {
  background: var(--rust);
  border-color: var(--rust);
}
.lightbox__cap {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  color: rgba(236,229,212,.78);
}
[data-lightbox] {
  cursor: zoom-in;
}

/* skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--shop);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* form thank-you panel */
.ticket.is-sent > :not(.ticket__thanks):not(.ticket__perforation) { display: none; }
.ticket__thanks {
  display: none;
  padding: 56px 40px;
  text-align: center;
}
.ticket.is-sent .ticket__thanks { display: block; }
.ticket__thanks-mark {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,201,144,.16);
  border: 1px solid #6ec990;
  color: #6ec990;
}
.ticket__thanks-mark svg { width: 28px; height: 28px; }
.ticket__thanks-title {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  margin: 0 0 14px 0;
}
.ticket__thanks-body {
  font-family: var(--jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 auto 28px;
}
.ticket__thanks-reset {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.ticket__thanks-reset:hover { color: var(--ink); }


/* ===========================================================
   WORDS — owner pull-quote, editorial chapter
   =========================================================== */
.words {
  position: relative;
  padding: 140px var(--gutter) 120px;
  text-align: center;
  overflow: hidden;
}
.words__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(180px, 28vw, 380px);
  line-height: 1;
  color: rgba(22,19,16,.04);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -.02em;
}
.words__rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(22,19,16,.42);
  position: relative;
  z-index: 1;
}
.words__rule span:first-child,
.words__rule span:last-child {
  height: 1px;
  background: rgba(22,19,16,.22);
}
.words__eyebrow {
  position: relative;
  z-index: 1;
  margin: 40px auto 14px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink-2);
  letter-spacing: .01em;
}
.words__quote {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 28px auto 0;
  padding: 0 24px;
}
.words__mark {
  width: 56px;
  height: auto;
  color: var(--rust);
  margin-bottom: 24px;
}
.words__quote blockquote {
  margin: 0;
}
.words__line {
  font-family: var(--jp);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: .04em;
  margin: 0;
}
.words__line em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
  font-size: 1.08em;
  letter-spacing: .005em;
}
.words__line--accent {
  margin-top: 18px;
  font-size: clamp(17px, 2.1vw, 22px);
  color: var(--ink-2);
}
.words__sig {
  margin-top: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.words__sig-svg {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  color: var(--ink);
  opacity: .85;
}
.words__sig-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-top: 4px;
}
.words__sig-role {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}
.words__rule--bot {
  margin-top: 80px;
}
.words__cta-wrap {
  display: flex;
  justify-content: center;
  margin: 36px 0 36px;
  position: relative;
  z-index: 1;
}
.words__rule--bot span:nth-child(2) {
  font-size: 14px;
  color: rgba(22,19,16,.32);
}


/* ===========================================================
   FAQ — accordion, vintage form-card feel
   =========================================================== */
.faq {
  position: relative;
  padding: 100px var(--gutter) 80px;
}
.faq__head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(236,229,212,.7);
  margin-bottom: 20px;
}
.faq__pill em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
}
.faq__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.faq__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
}
.faq__list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(236, 229, 212, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(22,19,16,.16);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.35);
}
.faq__item {
  border-bottom: 1px solid rgba(22,19,16,.12);
}
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .35s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: rgba(162,59,31,.04); }
.faq__no {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rust);
}
.faq__q {
  font-family: var(--jp);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1.5;
}
.faq__caret {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--rust);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.faq__item[open] .faq__caret {
  transform: rotate(45deg);
  background: var(--rust);
  color: var(--paper);
}
.faq__a {
  padding: 0 32px 28px 32px;
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 24px;
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
  letter-spacing: .015em;
  animation: faqIn .5s var(--ease);
}
.faq__a p {
  grid-column: 2;
  margin: 0;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .faq__item summary { grid-template-columns: 1fr auto; padding: 22px 20px; gap: 12px; }
  .faq__no { grid-column: 1; grid-row: 1; }
  .faq__q  { grid-column: 1; grid-row: 2; }
  .faq__caret { grid-column: 2; grid-row: 1 / 3; }
  .faq__a { padding: 0 20px 24px; grid-template-columns: 1fr; }
  .faq__a p { grid-column: 1; }
}


/* ===========================================================
   FOCUS-VISIBLE — keyboard navigation polish (a11y)
   =========================================================== */
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}
.faq__item summary:focus-visible {
  outline-offset: -2px;
}

/* respect users who prefer no animation — minor performance win */
@media (prefers-reduced-data: reduce) {
  .hero__particle { display: none; }
}

/* ===========================================================
   CALLCARD — phone-first contact card (replaces booking form)
   =========================================================== */
.callcard {
  position: relative;
  padding: 56px 64px 48px;
  background:
    linear-gradient(180deg, rgba(245,239,225,.98) 0%, rgba(237,229,210,.96) 100%);
  border: 1px solid rgba(22,19,16,.18);
  box-shadow:
    0 24px 60px -30px rgba(0,0,0,.35),
    0 6px 18px -8px rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 1.05fr 1px 1fr;
  gap: 0 56px;
  align-items: start;
  height: auto;
  overflow: hidden;
}
.callcard::after {
  /* vertical center divider */
  content: "";
  grid-column: 2;
  align-self: stretch;
  background: linear-gradient(180deg,
    transparent 0%, rgba(22,19,16,.18) 10%, rgba(22,19,16,.18) 90%, transparent 100%);
}
.callcard__col-l { grid-column: 1; }
.callcard__col-r { grid-column: 3; display: flex; flex-direction: column; gap: 22px; }

@media (max-width: 900px) {
  .callcard {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px 32px;
  }
  .callcard::after { display: none; }
  .callcard__col-l, .callcard__col-r { grid-column: 1; }
}
.callcard__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--brass);
  pointer-events: none;
}
.callcard__corner--tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.callcard__corner--tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }
.callcard__corner--bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; }
.callcard__corner--br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; }

.callcard__eyebrow {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  align-self: flex-start;
}
.callcard__eyebrow em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: none;
  margin-right: 6px;
}

.callcard__title {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.callcard__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  color: var(--rust);
}

.callcard__lede {
  font-family: var(--jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 28px 0;
  letter-spacing: .02em;
}

.callcard__phone {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 6px;
  margin-bottom: 26px;
  transition: background .35s var(--ease), transform .35s var(--ease), letter-spacing .4s var(--ease);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,.4);
}
.callcard__phone:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-2px);
}
.callcard__phone-icon {
  width: 24px; height: 24px;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.callcard__phone:hover .callcard__phone-icon { color: var(--paper); }
.callcard__phone-icon svg { width: 100%; height: 100%; }
.callcard__phone-num {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: .06em;
  font-variant-numeric: lining-nums tabular-nums;
}
.callcard__phone-hint {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(236,229,212,.65);
  white-space: nowrap;
}

.callcard__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 16px 20px;
  background: rgba(22,19,16,.04);
  border: 1px dashed rgba(22,19,16,.22);
  margin-bottom: 22px;
}
.callcard__hours-key {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rust);
  align-self: center;
  grid-row: 1;
}
.callcard__hours-val {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .02em;
  font-variant-numeric: lining-nums tabular-nums;
  grid-row: 1;
}
.callcard__hours-note {
  grid-column: 1 / -1;
  font-family: var(--jp);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: .04em;
  border-top: 1px solid rgba(22,19,16,.12);
  padding-top: 6px;
  margin-top: 4px;
}

.callcard__note {
  font-family: var(--jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-3);
  letter-spacing: .02em;
  margin: 0 0 26px 0;
}

.callcard__alt {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(22,19,16,.16);
}
.callcard__alt-key {
  display: block;
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.callcard__alt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.callcard__alt-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
}
.callcard__alt-list li > span {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
  font-size: 14px;
  letter-spacing: .02em;
}
.callcard__alt-list a {
  font-family: var(--display), "Zen Old Mincho", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: .02em;
  transition: color .25s var(--ease);
}
.callcard__alt-list a:hover { color: var(--rust); }

@media (max-width: 1000px) {
  .callcard { padding: 32px 26px 28px; }
  .callcard__phone { padding: 18px 20px; gap: 10px; }
  .callcard__phone-hint { display: none; }
}

/* ===========================================================
   INTERLUDE — chapter break ornament between sections
   =========================================================== */
.interlude {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 50px var(--gutter) 30px;
  color: var(--ink-2);
}
.interlude__rule {
  width: clamp(120px, 30vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,138,74,.55), transparent);
}
.interlude__ornament {
  color: var(--rust);
  opacity: .8;
}
.interlude__ornament svg {
  width: 60px;
  height: 24px;
}
.interlude__label {
  font-family: var(--shop);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(22,19,16,.55);
}
.interlude__label em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--rust);
  text-transform: none;
  margin-right: 6px;
}

/* ===========================================================
   ANALOG CLOCK — vintage hands in hero deck
   =========================================================== */
.hero__analog {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--paper);
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.45));
}
.hero__analog svg {
  width: 100%;
  height: 100%;
}
.hero__analog-hour,
.hero__analog-minute,
.hero__analog-second {
  transform-origin: 30px 30px;
  transition: transform .35s var(--ease);
}
.hero__analog-second {
  transition: none;
}

/* ===========================================================
   SOUND TOGGLE — tiny iconic switch in nav
   =========================================================== */
.sound-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(236,229,212,.35);
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.nav.is-solid .sound-toggle { border-color: rgba(22,19,16,.35); }
.sound-toggle:hover {
  background: rgba(255,255,255,.06);
  transform: scale(1.05);
}
.sound-toggle svg {
  width: 16px;
  height: 16px;
}
.sound-toggle__on { display: none; }
.sound-toggle__off { display: inline-block; opacity: .65; }
.sound-toggle[aria-pressed="true"] .sound-toggle__on { display: inline-block; opacity: 1; color: var(--rust); }
.sound-toggle[aria-pressed="true"] .sound-toggle__off { display: none; }
.sound-toggle[aria-pressed="true"] {
  border-color: var(--rust);
  background: rgba(162, 59, 31, .12);
}
@media (max-width: 900px) {
  .sound-toggle { display: none; }
}

/* ===========================================================
   TIME-OF-DAY TINT — body gradient breath
   =========================================================== */
body[data-tod="dawn"]  .ocean-bg::after { background: linear-gradient(180deg, rgba(255, 180, 130, .12), rgba(255, 200, 140, .04) 60%, transparent); }
body[data-tod="day"]   .ocean-bg::after { background: linear-gradient(180deg, rgba(255, 245, 200, .04), transparent 60%); }
body[data-tod="dusk"]  .ocean-bg::after { background: linear-gradient(180deg, rgba(255, 130, 80, .12), rgba(180, 80, 60, .06) 60%, transparent); }
body[data-tod="night"] .ocean-bg::after { background: linear-gradient(180deg, rgba(20, 40, 70, .26), rgba(15, 30, 50, .12) 60%, transparent); }
.ocean-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 8s linear;
}

/* ===========================================================
   MOBILE POLISH — sweep across the small breakpoints
   =========================================================== */
@media (max-width: 720px) {
  .hero__live {
    bottom: 18px;
    left: 16px;
    padding: 5px 11px;
    font-size: 11px;
  }
  .stats { margin: 56px 16px 0; padding: 28px 18px; }
  .stats__num { font-size: 44px; }
  .words { padding: 90px 0 80px; }
  .words__line { font-size: clamp(20px, 5.8vw, 28px); }
  .faq__head { margin-bottom: 36px; }
  .faq__title { font-size: clamp(28px, 7vw, 40px); }
  .map__action { font-size: 14px; padding: 12px 16px; }
  .map__action[href^="tel:"] span:not(.map__action-arrow) { font-size: 15px; }
  .feature { padding: 32px 22px 28px; margin: 0 16px 24px; }
  .stats__cell { gap: 6px; }
}
@media (max-width: 480px) {
  .nav__cta { padding: 9px 14px; font-size: 11px; }
  .hero__title { font-size: clamp(72px, 22vw, 120px); }
  .casa__title, .menu__cover-title, .visit__title, .book__title {
    font-size: clamp(34px, 8.5vw, 52px) !important;
  }
}

/* ===========================================================
   reduced motion
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-line::after, .reveal-word::after { display: none; }
}
