:root {
  --bg: #131110;
  --surface: #1c1916;
  --surface-soft: #24201c;
  --text: #f3f4f6;
  --muted: #c7beb1;
  --line: #342c24;
  --accent: #c2a780;
  --accent-strong: #d3b691;
  --logo-bg: #dfdfdf;
  --logo-line: #c9c9c9;
  --max-width: 1100px;
  --section-space: 80px;
  --section-space-sp: 56px;
  --radius: 16px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: radial-gradient(circle at 12% -14%, #2f271f 0%, transparent 42%),
    radial-gradient(circle at 88% 118%, #251e18 0%, transparent 54%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
}

main {
  padding-top: 70px;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
}

.section-lead {
  margin: 12px 0 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

h2 {
  font-size: 28px;
  line-height: 1.4;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

p + p {
  margin-top: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-logo {
  width: clamp(132px, 12vw, 176px);
  height: auto;
  border-radius: 0;
  display: block;
  filter: invert(1) brightness(1.05);
  opacity: 0.95;
}

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

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(194, 167, 128, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .lead {
  margin-top: 16px;
  color: var(--muted);
}

.hero-image-wrap {
  width: min(100%, 520px);
  margin-left: auto;
  border-radius: var(--radius);
  border: none;
  padding: 0;
  background: none;
}

.hero-image-wrap img {
  width: 100%;
  height: clamp(360px, 42vw, 620px);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.menu-page main {
  position: relative;
  overflow-x: clip;
}

.menu-page main > .section {
  position: relative;
  z-index: 1;
}

.menu-page main::before,
.menu-page main::after {
  content: "";
  position: absolute;
  width: clamp(240px, 34vw, 420px);
  height: clamp(240px, 34vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  filter: blur(14px);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

.menu-page main::before {
  top: 120px;
  left: -180px;
  background: radial-gradient(circle, rgba(194, 167, 128, 0.28) 0%, rgba(194, 167, 128, 0) 72%);
}

.menu-page main::after {
  bottom: 120px;
  right: -160px;
  background: radial-gradient(circle, rgba(124, 104, 78, 0.24) 0%, rgba(124, 104, 78, 0) 72%);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

.menu-page .card {
  position: relative;
  overflow: hidden;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease,
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-page .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(148, 162, 135, 0.2) 0%, rgba(148, 162, 135, 0) 46%, rgba(255, 255, 255, 0.06) 100%);
  transition: opacity 380ms ease;
}

.menu-page .card:hover,
.menu-page .card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(148, 162, 135, 0.5);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.menu-page .card:hover::before,
.menu-page .card:focus-within::before {
  opacity: 1;
}

.menu-page .section-title.reveal {
  position: relative;
  display: inline-block;
}

.menu-page .section-title.reveal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 162, 135, 0.95), rgba(148, 162, 135, 0.12));
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 620ms cubic-bezier(0.2, 0.85, 0.2, 1) 120ms;
}

.js .menu-page .section-title.reveal::after {
  transform: scaleX(0);
}

.js .menu-page .section-title.reveal.visible::after {
  transform: scaleX(1);
}

.top-page .hero {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100svh - 92px);
  padding: 0;
  border-radius: 0;
  background: var(--bg);
}

.top-page main > .section:first-child {
  padding: 0;
}

.top-page main > .section:first-child > .container.hero {
  width: 100%;
  max-width: none;
  margin: 0;
}

.top-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      106deg,
      rgba(10, 9, 8, 0.86) 0%,
      rgba(10, 9, 8, 0.64) 33%,
      rgba(10, 9, 8, 0.24) 58%,
      rgba(10, 9, 8, 0.52) 100%
    ),
    radial-gradient(
      circle at 78% 20%,
      rgba(194, 167, 128, 0.26) 0%,
      rgba(194, 167, 128, 0) 44%
    );
  pointer-events: none;
  z-index: 1;
}

.top-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 114%,
      rgba(10, 8, 6, 0.74) 0%,
      rgba(10, 8, 6, 0) 42%
    ),
    radial-gradient(
      circle at 88% 84%,
      rgba(9, 8, 7, 0.56) 0%,
      rgba(9, 8, 7, 0) 36%
    );
  pointer-events: none;
  z-index: 1;
}

.top-page .hero > * {
  position: relative;
  z-index: 2;
}

.top-page .hero-smoke {
  position: absolute;
  inset: -8% -5% -10% -5%;
  display: block;
  pointer-events: none;
  z-index: 2;
  opacity: 0.96;
  mix-blend-mode: screen;
}

.top-page .hero-smoke::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  width: min(44vw, 520px);
  height: min(18vh, 180px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.3) 36%,
    rgba(255, 255, 255, 0) 74%
  );
  filter: blur(10px);
  opacity: 0.74;
  animation: smokeSourcePulse 7.6s ease-in-out infinite;
}

.top-page .hero-smoke::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translateX(-50%);
  width: min(80vw, 980px);
  height: min(55vh, 500px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 46%,
    rgba(255, 255, 255, 0) 74%
  );
  filter: blur(26px);
  opacity: 0.58;
}

.top-page .hero-smoke .smoke {
  --smoke-left: 50%;
  --smoke-scale: 1.14;
  --smoke-drift: 24px;
  --smoke-sway: 16px;
  --smoke-opacity: 0.6;
  --smoke-duration: 10.8s;
  --smoke-delay: 0s;
  position: absolute;
  left: var(--smoke-left);
  bottom: -152px;
  width: clamp(120px, 13vw, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 46% 54% 57% 43% / 42% 48% 52% 58%;
  background:
    radial-gradient(
      circle at 32% 30%,
      rgba(255, 255, 255, 0.54) 0%,
      rgba(255, 255, 255, 0.22) 28%,
      rgba(255, 255, 255, 0.08) 46%,
      rgba(255, 255, 255, 0) 72%
    ),
    radial-gradient(
      circle at 68% 62%,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.1) 34%,
      rgba(255, 255, 255, 0) 68%
    );
  filter: blur(7.2px);
  mix-blend-mode: screen;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  animation: smokeRise var(--smoke-duration) linear infinite;
  animation-delay: var(--smoke-delay);
}

.top-page .hero-smoke .smoke::before,
.top-page .hero-smoke .smoke::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(255, 255, 255, 0) 78%
  );
}

.top-page .hero-smoke .smoke::before {
  inset: 12% 20% 26% 6%;
  transform: rotate(-8deg);
}

.top-page .hero-smoke .smoke::after {
  inset: 34% 8% 12% 30%;
  transform: rotate(9deg);
}

.top-page .hero-smoke .smoke-1 {
  --smoke-left: 6%;
  --smoke-scale: 0.92;
  --smoke-drift: 46px;
  --smoke-sway: 18px;
  --smoke-opacity: 0.52;
  --smoke-duration: 10.1s;
  --smoke-delay: -7.8s;
}

.top-page .hero-smoke .smoke-2 {
  --smoke-left: 16%;
  --smoke-scale: 1;
  --smoke-drift: -30px;
  --smoke-sway: -16px;
  --smoke-opacity: 0.56;
  --smoke-duration: 11.2s;
  --smoke-delay: -1.9s;
}

.top-page .hero-smoke .smoke-3 {
  --smoke-left: 28%;
  --smoke-scale: 1.06;
  --smoke-drift: 44px;
  --smoke-sway: 18px;
  --smoke-opacity: 0.58;
  --smoke-duration: 10.4s;
  --smoke-delay: -5.3s;
}

.top-page .hero-smoke .smoke-4 {
  --smoke-left: 40%;
  --smoke-scale: 1.2;
  --smoke-drift: -36px;
  --smoke-sway: -22px;
  --smoke-opacity: 0.62;
  --smoke-duration: 11.6s;
  --smoke-delay: -0.7s;
}

.top-page .hero-smoke .smoke-5 {
  --smoke-left: 52%;
  --smoke-scale: 1.08;
  --smoke-drift: 36px;
  --smoke-sway: 16px;
  --smoke-opacity: 0.58;
  --smoke-duration: 10.9s;
  --smoke-delay: -8.8s;
}

.top-page .hero-smoke .smoke-6 {
  --smoke-left: 64%;
  --smoke-scale: 1.24;
  --smoke-drift: -50px;
  --smoke-sway: -24px;
  --smoke-opacity: 0.6;
  --smoke-duration: 12.2s;
  --smoke-delay: -3.9s;
}

.top-page .hero-smoke .smoke-7 {
  --smoke-left: 76%;
  --smoke-scale: 1.06;
  --smoke-drift: 30px;
  --smoke-sway: 14px;
  --smoke-opacity: 0.56;
  --smoke-duration: 10.2s;
  --smoke-delay: -6.4s;
}

.top-page .hero-smoke .smoke-8 {
  --smoke-left: 86%;
  --smoke-scale: 0.96;
  --smoke-drift: -22px;
  --smoke-sway: -12px;
  --smoke-opacity: 0.5;
  --smoke-duration: 9.8s;
  --smoke-delay: -2.7s;
}

.top-page .hero-smoke .smoke-9 {
  --smoke-left: 94%;
  --smoke-scale: 0.88;
  --smoke-drift: 18px;
  --smoke-sway: 10px;
  --smoke-opacity: 0.48;
  --smoke-duration: 9.3s;
  --smoke-delay: -5.5s;
}

.top-page .hero-smoke .smoke-10 {
  --smoke-left: 50%;
  --smoke-scale: 1.3;
  --smoke-drift: 0px;
  --smoke-sway: -8px;
  --smoke-opacity: 0.54;
  --smoke-duration: 12.8s;
  --smoke-delay: -1.6s;
}

.top-page .hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(620px, calc(100% - 56px));
  margin: clamp(34px, 5.4vw, 72px);
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.top-page .hero .button-row {
  margin-top: 30px;
}

.top-page .hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
}

.top-page .hero-image-wrap::after {
  content: none;
}

.top-page .hero-image-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  animation: none;
  will-change: auto;
  filter: saturate(0.86) contrast(0.95) brightness(0.74);
  transform: scale(1.03);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.top-page .hero:hover .hero-image-wrap img,
.top-page .hero:focus-within .hero-image-wrap img {
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1) brightness(0.78);
}

.table-wrap {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.015);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  width: 34%;
  color: var(--muted);
  font-weight: 500;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: none;
}

.list-plain {
  list-style: none;
  padding: 0;
}

.list-plain li + li {
  margin-top: 12px;
}

.step-list {
  counter-reset: flow;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.step-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.015);
}

.step-list li::before {
  counter-increment: flow;
  content: "0" counter(flow);
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.access-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: saturate(0.9) brightness(0.92);
}

.cta-panel {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.015);
}

.cta-panel .contact-lines {
  margin-top: 14px;
}

.mono-box {
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  white-space: pre-wrap;
  font-size: 14px;
  color: #d3d8dd;
}

.faq-group {
  margin-top: 24px;
}

.faq-group + .faq-group {
  margin-top: 28px;
}

.faq-list {
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 16px 0;
  font-size: 16px;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 250ms ease;
}

.faq-answer p {
  padding-bottom: 16px;
}

.route-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.route-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.015);
}

.tag-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 14px;
}

.menu-page .tag {
  position: relative;
  overflow: hidden;
  transition: transform 300ms ease, border-color 300ms ease, color 300ms ease;
}

.menu-page .tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(148, 162, 135, 0.26) 50%, transparent 82%);
  transform: translateX(-125%);
  transition: transform 460ms ease;
}

.menu-page .card:hover .tag,
.menu-page .card:focus-within .tag {
  color: #dce3d4;
  border-color: rgba(148, 162, 135, 0.44);
}

.menu-page .card:hover .tag::after,
.menu-page .card:focus-within .tag::after {
  transform: translateX(125%);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 36px 0 110px;
}

.site-footer .brand {
  min-height: 0;
  padding: 0;
}

.site-footer .brand-logo {
  width: min(220px, 48vw);
  opacity: 0.95;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-grid p {
  color: var(--muted);
}

.fixed-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  gap: 10px;
}

.fixed-cta .btn {
  min-width: 180px;
}

.menu-page .fixed-cta .btn-primary {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 1;
  transform: none;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -28px, 0) scale(1.08);
  }
}

@keyframes smokeRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(calc(var(--smoke-scale) * 0.9))
      rotate(-2deg);
  }
  8% {
    opacity: var(--smoke-opacity);
  }
  30% {
    opacity: calc(var(--smoke-opacity) * 0.94);
    transform: translate3d(calc(var(--smoke-sway) * 0.7), -140px, 0)
      scale(calc(var(--smoke-scale) * 1.18)) rotate(3deg);
  }
  62% {
    opacity: calc(var(--smoke-opacity) * 0.84);
    transform: translate3d(calc(var(--smoke-sway) * -0.42), -280px, 0)
      scale(calc(var(--smoke-scale) * 1.58)) rotate(8deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--smoke-drift), -430px, 0)
      scale(calc(var(--smoke-scale) * 1.74)) rotate(14deg);
  }
}

@keyframes smokeSourcePulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(1);
  }
  50% {
    opacity: 0.54;
    transform: scale(1.08);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(148, 162, 135, 0.35);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(148, 162, 135, 0);
  }
}

@keyframes heroFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -12px, 0) scale(1.045);
  }
}

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

  .menu-page main::before,
  .menu-page main::after,
  .menu-page .fixed-cta .btn-primary,
  .top-page .hero-smoke::before,
  .top-page .hero-smoke .smoke,
  .top-page .hero-image-wrap img {
    animation: none;
  }

  .top-page .hero-smoke .smoke {
    opacity: 0.16;
    transform: translate3d(0, -116px, 0) scale(1.12);
  }

  .menu-page .card,
  .menu-page .card::before,
  .menu-page .tag,
  .menu-page .tag::after,
  .reveal {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }

  .hero-image-wrap img {
    height: clamp(330px, 48vw, 520px);
  }

  .top-page .hero {
    min-height: calc(100svh - 92px);
  }

  .top-page .hero-copy {
    max-width: min(560px, calc(100% - 44px));
    margin: clamp(22px, 4vw, 40px);
  }

  .top-page .hero-smoke {
    inset: -8% -8% -10% -8%;
    opacity: 0.88;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-space: var(--section-space-sp);
  }

  .container {
    width: min(var(--max-width), calc(100% - 32px));
  }



  h1 {
    font-size: 28px;
  }

  h2,
  .section-title {
    font-size: 22px;
  }

  .hero,
  .grid-3,
  .grid-4,
  .access-grid,
  .step-list,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .hero-image-wrap img {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .top-page .hero {
    min-height: calc(100svh - 84px);
    border-radius: 0;
  }

  .top-page .hero::before {
    background:
      linear-gradient(
        166deg,
        rgba(11, 10, 9, 0.86) 0%,
        rgba(11, 10, 9, 0.64) 46%,
        rgba(11, 10, 9, 0.3) 100%
      ),
      radial-gradient(
        circle at 70% 16%,
        rgba(194, 167, 128, 0.3) 0%,
        rgba(194, 167, 128, 0) 44%
      );
  }

  .top-page .hero-copy {
    max-width: calc(100% - 36px);
    margin: 18px;
  }

  .top-page .hero-copy .lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .top-page .hero .button-row {
    gap: 10px;
  }

  .top-page .hero-image-wrap {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .top-page .hero-image-wrap img {
    height: 100%;
    aspect-ratio: auto;
    object-position: center 45%;
  }

  .top-page .hero-smoke {
    inset: -8% -14% -10% -14%;
    opacity: 0.78;
  }

  .top-page .hero-smoke::before {
    width: min(72vw, 320px);
    height: min(15vh, 98px);
    opacity: 0.62;
  }

  .top-page .hero-smoke::after {
    width: min(110vw, 520px);
    height: min(42vh, 240px);
    opacity: 0.48;
  }

  .top-page .hero-smoke .smoke {
    width: clamp(84px, 22vw, 138px);
    filter: blur(5.3px);
  }

  .top-page .hero-smoke .smoke-10 {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(18, 16, 14, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 14px 16px 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-logo {
    width: 128px;
  }

  .fixed-cta {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .top-page.hide-fixed-cta .fixed-cta {
    opacity: 0;
    transform: translateY(calc(100% + 16px));
    pointer-events: none;
  }

  .fixed-cta .btn {
    min-width: 0;
    border-radius: 0;
    padding: 14px 10px;
  }

  .fixed-cta .btn-secondary {
    border-left: 1px solid var(--line);
  }

  body {
    padding-bottom: 54px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  th,
  td {
    padding: 14px;
  }

  th {
    width: 42%;
  }
}
