:root {
  --ink: #1b1d1c;
  --muted: #5c605d;
  --paper: #f3f3ef;
  --surface: #ffffff;
  --accent: #e64a19;
  --accent-dark: #b9300b;
  --line: #c9cbc6;
  --header-height: 72px;
  --shell: min(100% - 32px, 1240px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-underline-offset: 0.2em; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffb39a;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 132px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: max(16px, calc((100vw - 1240px) / 2));
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header.is-solid {
  background: rgb(243 243 239 / 0.96);
  color: var(--ink);
  border-color: rgb(27 29 28 / 0.15);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgb(27 29 28 / 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand span { font-size: 1.35rem; }

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.social-link,
.footer-facebook,
.mobile-facebook {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: inherit;
  text-decoration: none;
}

.social-link svg,
.footer-facebook svg,
.mobile-facebook svg {
  width: 17px;
  height: 24px;
  fill: currentColor;
}

.header-book,
.menu-toggle,
.mobile-menu-close,
.dialog-close,
.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
}

.header-book {
  min-height: 44px;
  padding: 0 17px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 2px;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease;
}

.header-book:active, .button:active { transform: scale(0.97); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgb(15 16 15 / 0.38);
}

.mobile-menu.is-open { display: block; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
  transform-origin: right center;
  animation: menu-in 360ms var(--ease) both;
}

.mobile-menu-close {
  align-self: flex-end;
  min-height: 44px;
  padding: 0 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  margin-block: 48px auto;
}

.mobile-menu nav a {
  padding-block: 8px;
  font-size: clamp(2rem, 12vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-decoration: none;
}

.mobile-facebook { margin-top: 12px; color: var(--accent); }

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.52) 0%, rgb(0 0 0 / 0.26) 52%, rgb(0 0 0 / 0.14) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -28%;
  pointer-events: none;
  background: radial-gradient(circle at 72% 34%, rgb(255 166 77 / 0.3), transparent 21%);
  opacity: 0.74;
  animation: hero-light-drift 11s var(--ease-in-out) infinite alternate;
}

.hero-image {
  will-change: transform;
  animation: hero-camera 20s var(--ease-in-out) infinite alternate;
}

.hero-motion {
  position: absolute;
  z-index: 1;
  top: 11%;
  right: 3%;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-left-color: rgb(255 128 54 / 0.95);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgb(255 129 50 / 0.05), 0 0 26px rgb(255 142 66 / 0.08);
}

.hero-orbit-one { width: 100%; height: 100%; animation: orbit-one 16s linear infinite; }
.hero-orbit-two { width: 72%; height: 72%; border-top-color: rgb(255 255 255 / 0.78); animation: orbit-two 12s linear infinite reverse; }
.hero-orbit-three { width: 43%; height: 43%; border-right-color: rgb(255 149 76 / 0.95); animation: orbit-one 8s linear infinite; }

.hero-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px;
  border-radius: 50%;
  background: #ff8a46;
  box-shadow: 0 0 0 8px rgb(255 138 70 / 0.17), 0 0 34px #ff8a46;
  animation: orbit-dot 9s var(--ease-in-out) infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: var(--header-height);
  padding-bottom: clamp(38px, 7svh, 78px);
}

.hero-content > * { opacity: 0; animation: hero-copy-in 760ms var(--ease-out) forwards; }
.hero-content > :nth-child(1) { animation-delay: 80ms; }
.hero-content > :nth-child(2) { animation-delay: 150ms; }
.hero-content > :nth-child(3) { animation-delay: 230ms; }
.hero-content > :nth-child(4) { animation-delay: 310ms; }

.hero-location,
.section-kicker,
.dialog-kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-content h1 span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.33em;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 500px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.45;
  text-shadow: 0 1px 12px rgb(0 0 0 / 0.35);
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-light { background: #f8f8f5; color: var(--ink); }
.button-light:hover { background: #fff; }
.button-outline-light { border-color: rgb(255 255 255 / 0.85); background: rgb(20 20 20 / 0.18); color: #fff; backdrop-filter: blur(6px); }
.button-outline-light:hover { background: rgb(255 255 255 / 0.14); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }

.proof-strip { position: relative; overflow: hidden; background: var(--accent); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid p { min-height: 122px; display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 24px; border-right: 1px solid rgb(255 255 255 / 0.28); }
.proof-grid p:last-child { border-right: 0; }
.proof-grid strong { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1; letter-spacing: -0.04em; }
.proof-grid span { margin-top: 8px; font-size: 0.86rem; font-weight: 800; }
.proof-grid strong { animation: proof-breathe 5.4s var(--ease-in-out) infinite; }
.proof-grid p:nth-child(2) strong { animation-delay: -1.8s; }
.proof-grid p:nth-child(3) strong { animation-delay: -3.6s; }

.flavour-marquee { overflow: hidden; border-top: 1px solid rgb(255 255 255 / 0.28); border-bottom: 1px solid rgb(255 255 255 / 0.2); }
.flavour-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: 14px;
  font-size: clamp(0.9rem, 1.7vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;
  animation: marquee-flow 24s linear infinite;
}
.flavour-marquee-group { display: flex; align-items: center; gap: 22px; padding-right: 22px; }
.flavour-marquee-track i { color: #ffd1bf; font-size: 0.55em; font-style: normal; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-copy { padding-left: clamp(0px, 5vw, 64px); }
.section-kicker { color: var(--accent); }

h2 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-copy > p:not(.section-kicker) { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 1.04rem; }
.about-facts { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; font-size: 0.85rem; font-weight: 900; }
.about-facts span { padding-bottom: 5px; border-bottom: 2px solid var(--accent); }

.ratio-portrait,
.menu-card > figure,
.gallery-card {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-portrait img,
.menu-card > figure img,
.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-image { position: relative; margin: 0; background: #ddd; box-shadow: 24px 28px 0 rgb(230 74 25 / 0.13); }
.about-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.52);
  pointer-events: none;
  animation: frame-glow 5s var(--ease-in-out) infinite alternate;
}
.about-image img { object-position: 53% 50%; animation: image-breathe 11s var(--ease-in-out) infinite alternate; }

.menu-section { background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: clamp(42px, 6vw, 76px); }
.section-heading p, .gallery-heading p { max-width: 600px; margin: 20px 0 0; color: var(--muted); font-size: 1.02rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
}

.menu-card { min-width: 0; }
.menu-card figure { position: relative; margin: 0; background: #ddd; }
.menu-card figure::after {
  content: "";
  position: absolute;
  inset: -45%;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgb(255 255 255 / 0.3) 48%, transparent 58%);
  transform: translate3d(-35%, 0, 0) rotate(4deg);
  animation: menu-sheen 8s var(--ease-in-out) infinite;
}
.menu-card:nth-child(2) figure::after { animation-delay: -2.7s; }
.menu-card:nth-child(3) figure::after { animation-delay: -5.4s; }
.menu-card img { animation: menu-image-drift 10s var(--ease-in-out) infinite alternate; }
.menu-card:nth-child(2) img { animation-delay: -3.3s; }
.menu-card:nth-child(3) img { animation-delay: -6.6s; }
.menu-card:nth-child(1) img { object-position: 50% 48%; }
.menu-card:nth-child(2) img { object-position: 50% 46%; }
.menu-card:nth-child(3) img { object-position: 50% 50%; }
.menu-card:nth-child(4) img { object-position: 50% 50%; }
.menu-card:nth-child(5) img { object-position: 50% 50%; }
.menu-card:nth-child(6) img { object-position: 50% 50%; }
.menu-card-copy { padding: 22px 2px 0; }
.menu-card h3 { margin: 0; font-size: 1.55rem; letter-spacing: -0.04em; }
.menu-card p { min-height: 54px; margin: 8px 0 20px; color: var(--muted); }
.menu-card ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.menu-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.service-section { position: relative; isolation: isolate; overflow: hidden; background: var(--accent); color: #fff; }
.service-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgb(255 255 255 / 0.15) 0 2px, transparent 3px) 0 0 / 36px 36px,
    linear-gradient(125deg, transparent 40%, rgb(255 255 255 / 0.08), transparent 62%);
  animation: service-flow 18s linear infinite;
}
.service-section::after {
  content: "いただきます";
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.16em;
  color: rgb(255 255 255 / 0.085);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  animation: service-word 10s var(--ease-in-out) infinite alternate;
}
.service-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(48px, 9vw, 140px); align-items: start; }
.service-heading { position: sticky; top: calc(var(--header-height) + 40px); }
.service-heading .section-kicker { color: #fff; opacity: 0.82; }
.service-heading h2 { max-width: 560px; }
.service-heading > p:last-child { max-width: 480px; margin: 24px 0 0; color: rgb(255 255 255 / 0.86); }
.service-list { border-top: 1px solid rgb(255 255 255 / 0.42); }
.service-list article { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgb(255 255 255 / 0.42); }
.service-list article > span { padding-top: 4px; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em; }
.service-list h3 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -0.045em; }
.service-list p { max-width: 580px; margin: 12px 0 0; color: rgb(255 255 255 / 0.86); }
.service-list article > span { transition: transform 200ms var(--ease-out), color 180ms ease; }
.service-actions { grid-column: 2; display: flex; align-items: center; gap: 26px; }
.service-actions .button-primary { background: var(--ink); }
.service-actions .button-primary:hover { background: #050605; }
.text-link { font-weight: 900; }

.atmosphere-section { position: relative; min-height: min(76svh, 820px); display: grid; align-items: end; overflow: hidden; background: #111; color: #fff; }
.atmosphere-section > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: atmosphere-pan 18s var(--ease-in-out) infinite alternate; }
.atmosphere-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgb(0 0 0 / 0.68), rgb(0 0 0 / 0.06) 70%); }
.atmosphere-shade::after { content: ""; position: absolute; inset: -35%; background: radial-gradient(circle at 50% 50%, rgb(255 139 63 / 0.28), transparent 20%); animation: atmosphere-light 12s var(--ease-in-out) infinite alternate; }
.atmosphere-content { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 120px); }
.atmosphere-content p { margin: 0 0 16px; font-size: 0.82rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.atmosphere-content h2 { max-width: 820px; }
.atmosphere-content .button { margin-top: 32px; }

.gallery-section { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #f8f8f5; }
.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
  pointer-events: none;
}
.gallery-section::before { top: 2%; left: -20%; background: var(--accent); animation: gallery-glow-a 13s var(--ease-in-out) infinite alternate; }
.gallery-section::after { right: -18%; bottom: 0; background: #ffb067; animation: gallery-glow-b 15s var(--ease-in-out) infinite alternate; }
.gallery-heading { max-width: 820px; margin-bottom: clamp(42px, 7vw, 82px); }
.gallery-heading p { color: #cfd2cd; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.gallery-card {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #333;
  cursor: zoom-in;
}

.gallery-card { transition: transform 220ms var(--ease-out), box-shadow 220ms ease; }
.gallery-card:active { transform: scale(0.985); }
.gallery-card img { animation: gallery-image-drift 12s var(--ease-in-out) infinite alternate; transition: transform 500ms var(--ease-out), filter 300ms ease; }
.gallery-card:nth-child(2n) img { animation-delay: -5s; }
.gallery-card:nth-child(3n) img { animation-delay: -8s; }
.gallery-card:nth-child(2), .gallery-card:nth-child(5) { margin-top: 56px; }
.gallery-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgb(0 0 0 / 0.72), transparent); pointer-events: none; }
.gallery-card > span { position: absolute; z-index: 1; inset: auto 18px 16px; color: #fff; font-size: 0.9rem; font-weight: 900; text-align: left; }
.gallery-card:nth-child(1) img { object-position: 50% 44%; }
.gallery-card:nth-child(2) img { object-position: 50% 50%; }
.gallery-card:nth-child(3) img { object-position: 50% 48%; }
.gallery-card:nth-child(4) img { object-position: 50% 50%; }
.gallery-card:nth-child(5) img { object-position: 52% 50%; }
.gallery-card:nth-child(6) img { object-position: 50% 50%; }

.reviews-section { background: var(--paper); }
.reviews-layout { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr); gap: clamp(50px, 10vw, 150px); }
.reviews-intro { position: sticky; top: calc(var(--header-height) + 36px); align-self: start; }
.rating-lockup { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 16px; margin-top: 28px; }
.rating-lockup strong { grid-row: 1 / 3; font-size: 4.7rem; line-height: 1; letter-spacing: -0.04em; }
.rating-lockup span:last-child { color: var(--muted); font-size: 0.88rem; }
.stars, .review-meta span { color: var(--accent); letter-spacing: 0.08em; }

.reviews-list { border-top: 1px solid var(--line); }
.review { padding-block: 32px; border-bottom: 1px solid var(--line); }
.review-meta { display: flex; align-items: center; gap: 14px; }
.review-meta img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; }
.review-meta h3 { margin: 0; font-size: 1rem; }
.review-meta span { display: block; margin-top: 2px; font-size: 0.72rem; }
.review blockquote { max-width: 760px; margin: 20px 0 16px; font-size: clamp(1.18rem, 2.5vw, 1.65rem); line-height: 1.45; letter-spacing: -0.025em; }
.review a { color: var(--accent-dark); font-weight: 900; }
.review-meta img { box-shadow: 0 0 0 0 rgb(230 74 25 / 0.25); animation: avatar-pulse 4.8s var(--ease-in-out) infinite; }
.review:nth-child(2) .review-meta img { animation-delay: -1.6s; }
.review:nth-child(3) .review-meta img { animation-delay: -3.2s; }
.stars { display: inline-block; animation: stars-glow 3.8s var(--ease-in-out) infinite alternate; }

.visit-section { padding-bottom: 0; background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); gap: clamp(38px, 7vw, 100px); align-items: stretch; }
.visit-details { padding-bottom: clamp(72px, 9vw, 132px); }
.visit-block { margin-top: 38px; }
.visit-block h3 { margin: 0 0 8px; font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; }
.visit-block p, .visit-block address { margin: 0 0 10px; color: var(--muted); font-style: normal; }
.visit-block a { color: var(--accent-dark); font-weight: 900; }
.phone-link { font-size: 1.8rem; letter-spacing: -0.04em; }
.hours dl { margin: 0; }
.hours dl div { display: grid; grid-template-columns: minmax(135px, 1fr) minmax(130px, auto); gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; text-align: right; font-weight: 800; }
.visit-details > .button { margin-top: 36px; }
.map-wrap { position: relative; align-self: start; height: 760px; min-height: 0; overflow: hidden; background: #ddd; }
.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  background: linear-gradient(115deg, transparent 25%, rgb(230 74 25 / 0.74), transparent 66%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: map-trace 7s var(--ease-in-out) infinite alternate;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 0; display: block; border: 0; }
.map-wrap iframe.is-prewarming {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 0;
  width: min(720px, 100vw);
  height: min(690px, 100vh);
  opacity: 0.001;
  pointer-events: none;
}

.site-footer { padding-block: 58px; background: var(--ink); color: #f8f8f5; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.4fr) 1fr 0.7fr auto; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 72px; height: 72px; object-fit: cover; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 1.55rem; letter-spacing: -0.04em; }
.footer-brand span { color: #cfd2cd; font-size: 0.8rem; }
.site-footer h2 { margin-bottom: 12px; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; }
.site-footer p { margin: 0 0 8px; color: #cfd2cd; }
.site-footer > .footer-grid > div:nth-child(3) { display: grid; align-content: start; gap: 7px; }
.footer-facebook { color: #fff; border: 1px solid #70736f; }

.mobile-action-bar { display: none; }

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop { background: rgb(13 14 13 / 0.72); backdrop-filter: blur(5px); }

.booking-dialog { width: min(94vw, 760px); max-height: 92svh; background: var(--paper); }
.dialog-shell { position: relative; padding: clamp(26px, 6vw, 58px); }
.dialog-close, .lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 56px;
  min-height: 42px;
  background: transparent;
  color: inherit;
  font-weight: 900;
}
.dialog-kicker { color: var(--accent); }
.dialog-shell h2 { padding-right: 64px; }
.dialog-intro { max-width: 520px; color: var(--muted); }
.booking-dialog form { margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.booking-dialog label { display: grid; gap: 7px; font-size: 0.86rem; font-weight: 900; }
.booking-dialog input, .booking-dialog select, .booking-dialog textarea {
  width: 100%;
  border: 1px solid #888d89;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}
.booking-dialog textarea { resize: vertical; }
.booking-dialog form > label { margin-top: 18px; }
.field-error { min-height: 1.2em; color: #9f2408; font-size: 0.75rem; font-weight: 800; }
.form-submit { margin-top: 24px; }
.form-status { margin-top: 20px; padding: 16px; border: 1px solid var(--accent); background: #fff; }
.form-status p { margin: 6px 0 0; }
.form-status a { color: var(--accent-dark); font-weight: 900; }

.lightbox { width: 100vw; max-width: none; height: 100svh; max-height: none; background: transparent; color: #fff; }
.lightbox-frame { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 64px 80px 52px; }
.lightbox-frame img { max-width: min(86vw, 1500px); max-height: 78svh; display: block; object-fit: contain; }
.lightbox-frame p { align-self: end; margin: 14px 0 0; text-align: center; }
.lightbox-nav { position: absolute; top: 50%; min-height: 48px; padding: 0 14px; transform: translateY(-50%); background: rgb(20 20 20 / 0.68); color: #fff; font-weight: 900; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }

@keyframes menu-in { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hero-camera { from { transform: scale(1.055) translate3d(-0.4%, -0.2%, 0); } to { transform: scale(1.115) translate3d(1.1%, 0.6%, 0); } }
@keyframes hero-light-drift { from { transform: translate3d(-7%, -3%, 0) scale(0.94); opacity: 0.45; } to { transform: translate3d(7%, 4%, 0) scale(1.08); opacity: 0.9; } }
@keyframes orbit-one { from { transform: translate(-50%, -50%) rotate(0deg) rotateX(62deg); } to { transform: translate(-50%, -50%) rotate(360deg) rotateX(62deg); } }
@keyframes orbit-two { from { transform: translate(-50%, -50%) rotate(0deg) rotateY(58deg); } to { transform: translate(-50%, -50%) rotate(360deg) rotateY(58deg); } }
@keyframes orbit-dot { 0%, 100% { transform: rotate(0deg) translateX(clamp(74px, 14vw, 210px)) scale(0.8); } 50% { transform: rotate(180deg) translateX(clamp(74px, 14vw, 210px)) scale(1.25); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translate3d(0, 24px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes proof-breathe { 0%, 100% { transform: translate3d(0, 0, 0); opacity: 1; } 50% { transform: translate3d(0, -3px, 0); opacity: 0.84; } }
@keyframes marquee-flow { to { transform: translate3d(-25%, 0, 0); } }
@keyframes frame-glow { from { opacity: 0.36; transform: scale(0.985); } to { opacity: 0.9; transform: scale(1); } }
@keyframes image-breathe { from { transform: scale(1.015) translate3d(0, 0, 0); } to { transform: scale(1.075) translate3d(-1.2%, -0.8%, 0); } }
@keyframes menu-sheen { 0%, 20% { transform: translate3d(-45%, 0, 0) rotate(4deg); opacity: 0; } 44% { opacity: 0.65; } 70%, 100% { transform: translate3d(45%, 0, 0) rotate(4deg); opacity: 0; } }
@keyframes menu-image-drift { from { transform: scale(1.015) translate3d(0, 0, 0); } to { transform: scale(1.065) translate3d(0, -0.8%, 0); } }
@keyframes service-flow { from { transform: translate3d(-2%, -2%, 0) rotate(0.001deg); } to { transform: translate3d(2%, 2%, 0) rotate(3deg); } }
@keyframes service-word { from { transform: translate3d(2%, 0, 0); } to { transform: translate3d(-4%, -3%, 0); } }
@keyframes atmosphere-pan { from { transform: scale(1.04) translate3d(-1%, 0, 0); } to { transform: scale(1.11) translate3d(1.5%, -0.7%, 0); } }
@keyframes atmosphere-light { from { transform: translate3d(-22%, -8%, 0) scale(0.85); opacity: 0.45; } to { transform: translate3d(24%, 12%, 0) scale(1.18); opacity: 0.9; } }
@keyframes gallery-glow-a { from { transform: translate3d(-10%, 0, 0) scale(0.85); } to { transform: translate3d(35%, 22%, 0) scale(1.2); } }
@keyframes gallery-glow-b { from { transform: translate3d(15%, 5%, 0) scale(1); } to { transform: translate3d(-28%, -18%, 0) scale(1.25); } }
@keyframes gallery-image-drift { from { transform: scale(1.01) translate3d(0, 0, 0); } to { transform: scale(1.065) translate3d(-0.8%, -0.6%, 0); } }
@keyframes avatar-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgb(230 74 25 / 0.18); } 50% { box-shadow: 0 0 0 9px rgb(230 74 25 / 0); } }
@keyframes stars-glow { from { filter: drop-shadow(0 0 0 rgb(230 74 25 / 0)); opacity: 0.82; } to { filter: drop-shadow(0 0 7px rgb(230 74 25 / 0.46)); opacity: 1; } }
@keyframes map-trace { from { transform: translate3d(-12%, 0, 0); opacity: 0.25; } to { transform: translate3d(12%, 0, 0); opacity: 0.82; } }

dialog[open] .dialog-shell,
dialog[open] .lightbox-frame { animation: dialog-in 280ms var(--ease-out) both; }
@keyframes dialog-in { from { opacity: 0; transform: translate3d(0, 16px, 0) scale(0.97); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }

body.motion-paused .hero-image,
body.motion-paused .hero::after,
body.motion-paused .hero-motion *,
body.motion-paused .flavour-marquee-track,
body.motion-paused .about-image *,
body.motion-paused .menu-card *,
body.motion-paused .service-section::before,
body.motion-paused .service-section::after,
body.motion-paused .atmosphere-section *,
body.motion-paused .gallery-section::before,
body.motion-paused .gallery-section::after,
body.motion-paused .gallery-card img,
body.motion-paused .review-meta img,
body.motion-paused .stars,
body.motion-paused .map-wrap::after { animation-play-state: paused !important; }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .header-book:hover { transform: translate3d(0, -2px, 0); box-shadow: 0 10px 24px rgb(185 48 11 / 0.28); }
  .button:hover { transform: translate3d(0, -2px, 0); box-shadow: 0 12px 26px rgb(27 29 28 / 0.16); }
  .service-list article:hover > span { transform: translate3d(8px, 0, 0); color: #ffe2d6; }
  .gallery-card:hover { transform: translate3d(0, -8px, 0); box-shadow: 0 24px 44px rgb(0 0 0 / 0.32); }
  .gallery-card:hover img { animation: none; transform: scale(1.085); filter: saturate(1.08) contrast(1.03); }
  .header-book:hover:active,
  .button:hover:active { transform: scale(0.97); box-shadow: none; }
  .gallery-card:hover:active { transform: scale(0.985); box-shadow: 0 12px 24px rgb(0 0 0 / 0.24); }
}

@media (max-width: 920px) {
  .desktop-nav, .header-book { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .about-grid, .reviews-layout, .visit-grid { grid-template-columns: 1fr; }
  .about-copy { padding-left: 0; }
  .about-image { width: min(100%, 620px); }
  .reviews-intro { position: static; }
  .service-layout { grid-template-columns: 1fr; }
  .service-heading { position: static; }
  .service-actions { grid-column: 1; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-wrap, .map-wrap iframe { min-height: 560px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 0.7fr auto; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; --shell: min(100% - 28px, 680px); }
  .site-header { padding-inline: 14px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 1.18rem; }
  .social-link { display: none; }
  .hero { min-height: 100svh; height: 100svh; }
  .hero-image { object-position: 54% 50%; }
  .hero-motion { top: 14%; right: -30%; width: 78vw; opacity: 0.78; }
  .hero-content { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .hero-content h1 { font-size: clamp(3.25rem, 17vw, 5.2rem); }
  .hero-content h1 span { margin-top: 10px; font-size: 0.31em; }
  .hero-copy { max-width: 355px; margin-top: 18px; font-size: 1rem; }
  .hero-buttons { width: 100%; margin-top: 22px; }
  .hero-buttons .button { flex: 1; padding-inline: 14px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid p { min-height: 86px; padding: 18px 8px; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 0.28); }
  .proof-grid p:last-child { border-bottom: 0; }
  .proof-grid strong { font-size: 1.8rem; }
  .flavour-marquee-group { gap: 16px; padding-right: 16px; }
  .flavour-marquee-track { padding-block: 12px; font-size: 0.86rem; }
  .section { padding-block: 78px; }
  h2 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .about-grid { gap: 42px; }
  .about-image { box-shadow: 12px 14px 0 rgb(230 74 25 / 0.13); }
  .about-copy > p:not(.section-kicker) { margin-top: 24px; }
  .about-facts { gap: 10px 18px; }
  .menu-grid, .gallery-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-card:last-child { grid-column: auto; width: auto; }
  .menu-card p { min-height: 0; }
  .menu-note { margin-top: 48px; }
  .service-layout { gap: 44px; }
  .service-list article { grid-template-columns: 42px 1fr; gap: 12px; padding-block: 24px; }
  .service-actions { flex-direction: column; align-items: flex-start; }
  .atmosphere-section { min-height: 68svh; }
  .atmosphere-content { padding-bottom: 70px; }
  .gallery-grid { gap: 14px; }
  .gallery-card:nth-child(2), .gallery-card:nth-child(5) { margin-top: 0; }
  .reviews-layout { gap: 42px; }
  .rating-lockup strong { font-size: 4rem; }
  .review blockquote { font-size: 1.2rem; }
  .visit-grid { width: 100%; gap: 0; }
  .visit-details { width: var(--shell); margin-inline: auto; }
  .hours dl div { grid-template-columns: 1fr; gap: 2px; }
  .hours dd { text-align: left; }
  .map-wrap, .map-wrap iframe { min-height: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-facebook { justify-self: start; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: 70px; }
  .mobile-action-bar {
    position: fixed;
    z-index: 35;
    inset: auto 0 0;
    height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgb(255 255 255 / 0.22);
  }
  .mobile-action-bar a,
  .mobile-action-bar button {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 0 8px;
    border: 0;
    border-right: 1px solid rgb(255 255 255 / 0.18);
    background: transparent;
    color: inherit;
    font-weight: 900;
    text-decoration: none;
  }
  .mobile-action-bar button { background: var(--accent); }
  .mobile-action-bar > :last-child { border-right: 0; }
  .mobile-action-bar a:active,
  .mobile-action-bar button:active { transform: scale(0.97); }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .lightbox-frame { padding: 60px 12px 72px; }
  .lightbox-frame img { max-width: 100%; max-height: 72svh; }
  .lightbox-nav { top: auto; bottom: 14px; transform: none; }
}

@media (max-width: 390px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; flex: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; }
  .hero-motion { display: none; }
  .flavour-marquee-track { width: 100%; justify-content: center; transform: none; }
  .flavour-marquee-group:not(:first-child) { display: none; }
  .flavour-marquee-group:first-child > :nth-child(n + 6) { display: none; }
}
