:root {
  --c-primary: #9B7B6D;
  --c-accent: #E8C9B5;
  --c-gold: #C9A961;
  --c-bg: #FAF6F2;
  --c-bg-dark: #1F1410;
  --c-text: #3D2E26;
  --c-text-light: #F5EDE5;
  --c-muted: #847468;
  --c-line: #06C755;
  --font-en-serif-display: 'Cormorant Garamond', serif;
  --font-en-sans: 'Montserrat', sans-serif;
  --font-jp-serif: 'Noto Serif JP', serif;
  --font-jp-sans: system-ui, 'Hiragino Sans', sans-serif;
  --header-height: 82px;
  --header-height-condensed: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--c-text);
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 201, 181, 0.26), transparent 28rem),
    radial-gradient(circle at 92% 28%, rgba(201, 169, 97, 0.14), transparent 24rem),
    linear-gradient(120deg, #fffaf6, var(--c-bg), #f6ece5);
  background-size: 140% 140%;
  font-family: var(--font-jp-sans);
  letter-spacing: 0;
  animation: belle-gradient 8s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(155, 123, 109, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.45;
}

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

@keyframes belle-gradient {
  from { background-position: 0% 30%; }
  to { background-position: 100% 72%; }
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dt,
dd,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 42px;
  color: var(--c-text-light);
  background: rgba(31, 20, 16, 0.38);
  border-bottom: 1px solid rgba(245, 237, 229, 0.16);
  backdrop-filter: blur(16px);
  transition: height 0.32s ease, background 0.32s ease, padding 0.32s ease;
}

.site-header.is-condensed {
  height: var(--header-height-condensed);
  background: rgba(31, 20, 16, 0.9);
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  gap: 2px;
  line-height: 1;
}

.site-logo__main {
  font-family: var(--font-en-serif-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.site-logo__sub {
  color: var(--c-accent);
  font-family: var(--font-jp-serif);
  font-size: 0.78rem;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--font-en-sans);
  font-size: 0.82rem;
  font-weight: 600;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(245, 237, 229, 0.82);
  transition: color 0.25s ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: #fff;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en-sans);
}

.header-tel {
  color: rgba(245, 237, 229, 0.88);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.header-tel:hover {
  color: var(--c-accent);
}

.reserve-button,
.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  color: var(--c-text);
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  font-family: var(--font-en-sans);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.reserve-button:hover,
.line-button:hover {
  color: var(--c-text-light);
  background: var(--c-bg-dark);
  box-shadow: 0 0 30px rgba(232, 201, 181, 0.46);
  transform: translateY(-2px);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--c-text-light);
  background: var(--c-bg-dark);
}

.hero-home {
  min-height: 100svh;
}

.hero-image,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-home .hero-image {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(31, 20, 16, 0.76), rgba(155, 123, 109, 0.25), rgba(31, 20, 16, 0.64)),
    linear-gradient(180deg, rgba(232, 201, 181, 0.2), rgba(31, 20, 16, 0.82));
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-copy,
.page-hero__copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100svh;
  padding: var(--header-height) 24px 70px;
  text-align: center;
}

.hero-kicker,
.page-hero__copy p,
.section-label {
  margin: 0 0 16px;
  color: var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy h1 {
  width: min(980px, 100%);
  margin: 0;
  color: #fff8f1;
  font-family: var(--font-en-serif-display);
  font-size: 6rem;
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 20px 60px rgba(31, 20, 16, 0.58);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-lead {
  margin: 30px 0 0;
  font-family: var(--font-jp-serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.hero-note {
  margin: 12px 0 0;
  color: rgba(245, 237, 229, 0.82);
  font-family: var(--font-jp-serif);
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(245, 237, 229, 0.56);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--c-accent);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scroll-cue 1.4s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 22px); opacity: 0; }
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-inner-wide {
  width: min(1280px, calc(100% - 48px));
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

h2 {
  margin: 0 0 24px;
  font-family: var(--font-jp-serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.22;
}

h3 {
  margin: 0;
  font-family: var(--font-jp-serif);
  font-size: 1.55rem;
  line-height: 1.28;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.section-copy p,
.line-copy p,
.route-card p,
.flow-grid p,
.reserve-lead,
.instagram-note {
  color: var(--c-muted);
  line-height: 2;
}

.lead-text {
  color: var(--c-text);
  font-family: var(--font-jp-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.82;
}

.image-panel {
  position: relative;
  margin: 0;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(201, 169, 97, 0.72);
}

.image-panel::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(232, 201, 181, 0.44), transparent 68%);
  pointer-events: none;
}

.image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(61, 46, 38, 0.18);
}

.service-section,
.flow-section,
.route-section {
  background: rgba(255, 250, 246, 0.66);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--c-text-light);
  background: var(--c-bg-dark);
  border: 1px solid rgba(201, 169, 97, 0.38);
  box-shadow: 0 18px 46px rgba(61, 46, 38, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.38s ease, opacity 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.06), rgba(31, 20, 16, 0.84));
}

.service-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.service-card__mark {
  margin-bottom: 10px;
  color: var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card p {
  margin: 14px 0 0;
  color: rgba(245, 237, 229, 0.86);
  line-height: 1.82;
}

.service-card:hover {
  border-color: var(--c-gold);
  box-shadow: 0 28px 70px rgba(232, 201, 181, 0.6);
  transform: translateY(-6px);
}

.service-card:hover img {
  opacity: 0.84;
  transform: scale(1.05);
}

.section-action {
  margin-top: 38px;
  text-align: center;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px 5px;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.text-button:hover {
  color: var(--c-bg-dark);
  text-shadow: 0 0 18px rgba(201, 169, 97, 0.48);
}

.gallery-section {
  overflow: hidden;
  color: var(--c-text-light);
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 201, 181, 0.16), transparent 24rem),
    var(--c-bg-dark);
}

.gallery-shell {
  position: relative;
  padding-bottom: 34px;
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  width: min(420px, 78vw);
}

.gallery-swiper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.gallery-notice {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  color: rgba(201, 169, 97, 0.86);
  font-size: 0.78rem;
  line-height: 1.7;
}

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

.instagram-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.18);
  box-shadow: 0 16px 40px rgba(61, 46, 38, 0.08);
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.instagram-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 20, 16, 0.22));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-tile:hover {
  box-shadow: 0 26px 60px rgba(201, 169, 97, 0.3);
}

.instagram-tile:hover img {
  filter: saturate(1.06);
  transform: scale(1.05);
}

.instagram-tile:hover::after {
  opacity: 1;
}

.instagram-note {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
}

.line-section {
  color: var(--c-text-light);
  background:
    radial-gradient(circle at 72% 50%, rgba(6, 199, 85, 0.16), transparent 20rem),
    linear-gradient(135deg, #2a1a15, var(--c-bg-dark));
}

.line-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  align-items: center;
}

.line-copy .lead-text,
.line-copy h2 {
  color: var(--c-text-light);
}

.mini-hours {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.mini-hours div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  color: rgba(245, 237, 229, 0.82);
}

.mini-hours dt {
  color: var(--c-gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-hours dd {
  margin: 0;
}

.line-button {
  color: #fff;
  background: var(--c-line);
  border-color: var(--c-line);
  font-family: var(--font-jp-sans);
  font-size: 0.95rem;
}

.line-qr {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
  padding: 30px;
  color: rgba(245, 237, 229, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(232, 201, 181, 0.26);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.line-qr::before {
  content: "";
  position: absolute;
  inset: -34px;
  background: radial-gradient(circle, rgba(232, 201, 181, 0.3), transparent 60%);
  pointer-events: none;
  animation: qr-pulse 2.8s ease-in-out infinite;
}

@keyframes qr-pulse {
  0%, 100% { opacity: 0.36; transform: scale(0.96); }
  50% { opacity: 0.78; transform: scale(1.02); }
}

.line-qr img,
.line-qr figcaption {
  position: relative;
  z-index: 1;
}

.line-qr img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.line-qr figcaption {
  font-size: 0.82rem;
}

.page-hero {
  height: 520px;
  min-height: 420px;
}

.page-hero-compact {
  height: 470px;
}

.page-hero__copy {
  position: absolute;
  inset: 0;
  min-height: auto;
  padding: var(--header-height) 24px 0;
}

.page-hero__copy h1 {
  margin: 0;
  font-family: var(--font-jp-serif);
  font-size: 3rem;
  font-weight: 600;
}

.menu-categories {
  display: grid;
  gap: 26px;
}

.menu-category,
.route-card,
.flow-grid li,
.phone-panel,
.line-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(201, 169, 97, 0.24);
  box-shadow: 0 16px 42px rgba(61, 46, 38, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.menu-category {
  padding: 42px;
}

.menu-category:hover,
.route-card:hover,
.flow-grid li:hover,
.phone-panel:hover,
.line-panel:hover {
  border-color: var(--c-gold);
  box-shadow: 0 26px 56px rgba(232, 201, 181, 0.42);
  transform: translateY(-6px);
}

.menu-category__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.menu-category__head span,
.flow-grid span {
  color: var(--c-gold);
  font-family: var(--font-en-serif-display);
  font-size: 3rem;
  line-height: 1;
}

.price-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(155, 123, 109, 0.16);
}

.price-list strong {
  color: var(--c-primary);
  font-family: var(--font-en-serif-display);
  font-size: 1.45rem;
}

.price-note {
  color: var(--c-muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-grid li {
  min-height: 240px;
  padding: 28px;
}

.flow-grid strong {
  display: block;
  margin-top: 26px;
  font-family: var(--font-jp-serif);
  font-size: 1.22rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 24px;
  color: var(--c-text-light);
  background: var(--c-primary);
  font-family: var(--font-en-sans);
  font-weight: 700;
}

.cta-band p {
  margin: 0;
}

.cta-band a {
  color: var(--c-bg-dark);
  background: var(--c-accent);
  border-radius: 999px;
  padding: 13px 20px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cta-band a:hover {
  color: var(--c-text-light);
  background: var(--c-bg-dark);
  box-shadow: 0 0 24px rgba(232, 201, 181, 0.5);
}

.access-detail__grid,
.route-grid,
.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 68px;
  align-items: start;
}

.info-list dl {
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(155, 123, 109, 0.18);
}

.info-list dt {
  color: var(--c-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  line-height: 1.75;
}

.info-list a {
  color: var(--c-primary);
  transition: color 0.25s ease;
}

.info-list a:hover {
  color: var(--c-gold);
}

.map-frame {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(201, 169, 97, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 169, 97, 0.12) 1px, transparent 1px),
    #fffaf6;
  background-size: 42px 42px;
  border: 1px solid rgba(201, 169, 97, 0.36);
  box-shadow: 0 18px 54px rgba(61, 46, 38, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--c-text);
  background: var(--c-accent);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.map-link:hover {
  color: var(--c-text-light);
  background: var(--c-bg-dark);
  box-shadow: 0 0 24px rgba(232, 201, 181, 0.5);
}

.route-cards {
  display: grid;
  gap: 18px;
}

.route-card {
  padding: 32px;
}

.reserve-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.phone-panel,
.line-panel {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 26px;
}

.phone-panel span,
.line-panel span {
  color: var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-panel strong,
.line-panel strong {
  font-family: var(--font-en-serif-display);
  font-size: 1.65rem;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 54px 24px;
  color: var(--c-text-light);
  background: var(--c-bg-dark);
  text-align: center;
}

.site-footer .brand {
  font-family: var(--font-en-serif-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--c-gold);
  font-family: var(--font-en-sans);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-footer a {
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #fff;
}

.sample-notice {
  color: rgba(245, 237, 229, 0.78);
  font-size: 0.82rem;
  line-height: 1.8;
}

.sample-notice strong {
  color: #fff;
}

.fadein-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.js .fadein-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .fadein-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
    --header-height-condensed: 62px;
  }

  .site-header {
    grid-template-columns: minmax(170px, 1fr) auto;
    gap: 12px;
    height: auto;
    min-height: var(--header-height);
    padding: 10px 20px 8px;
  }

  .site-header.is-condensed {
    min-height: var(--header-height-condensed);
  }

  .global-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 24px;
    width: 100%;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-tel {
    display: none;
  }

  .reserve-button {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero-copy h1 {
    font-size: 4.6rem;
  }

  .two-column,
  .line-grid,
  .access-detail__grid,
  .route-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
  }

  .line-grid {
    justify-items: stretch;
  }

  .line-qr {
    justify-self: center;
    width: min(100%, 360px);
  }
}

@media (max-width: 620px) {
  body {
    background-size: 180% 180%;
  }

  .section {
    padding: 76px 0;
  }

  .section-inner,
  .section-inner-wide {
    width: min(100% - 32px, 1120px);
  }

  .site-logo__main {
    font-size: 1.12rem;
  }

  .site-logo__sub {
    font-size: 0.72rem;
  }

  .global-nav {
    justify-content: space-between;
    gap: 10px;
  }

  .hero-copy {
    padding-top: 120px;
  }

  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  h2,
  .page-hero__copy h1 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .lead-text {
    font-size: 1.08rem;
  }

  .image-panel::before {
    inset: 14px -10px -14px 14px;
  }

  .instagram-grid {
    gap: 8px;
  }

  .gallery-notice {
    right: 0;
    left: 0;
    text-align: right;
  }

  .page-hero,
  .page-hero-compact {
    height: 390px;
    min-height: 360px;
  }

  .menu-category,
  .route-card,
  .flow-grid li {
    padding: 26px;
  }

  .price-list li,
  .info-list div,
  .mini-hours div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .menu-category__head span,
  .flow-grid span {
    font-size: 2.35rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}
