:root {
  --bg: #fffaf5;
  --paper: #ffffff;
  --paper-soft: #fff4eb;
  --ink: #161616;
  --muted: #655a53;
  --line: rgba(22, 22, 22, 0.1);
  --coral: #ff695f;
  --orange: #ff8a2b;
  --sand: #c7ad82;
  --teal: #4cc0b3;
  --yellow: #ffd55b;
  --mint: #dff6ef;
  --shadow: 0 24px 70px rgba(63, 37, 26, 0.1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header: 84px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 198, 177, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 216, 91, 0.2), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

body.nav-open { overflow-y: auto; }

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

code {
  padding: .15em .4em;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  font-size: .92em;
}

::selection {
  background: rgba(255, 213, 91, .8);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.topbar {
  background: linear-gradient(90deg, rgba(255, 213, 91, .92), rgba(255, 157, 122, .92));
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
}

.topbar p,
.topbar a {
  margin: 0;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: var(--header);
  border-bottom: 1px solid rgba(22, 22, 22, .08);
  background: rgba(255, 250, 245, .78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 148px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.lang-switcher {
  position: relative;
}

.lang-toggle,
.icon-button,
.nav-toggle {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(22, 22, 22, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.lang-toggle:hover,
.icon-button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 22, 22, .18);
  box-shadow: 0 10px 24px rgba(30, 18, 9, .08);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 170px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 40px rgba(45, 29, 19, .14);
}

.lang-menu button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: left;
  font-weight: 700;
}

.lang-menu button:hover,
.lang-menu button:focus-visible {
  background: rgba(255, 138, 43, .08);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  padding: 0;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  padding: 0;
  font-size: 21px;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-label,
.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section h2,
.hero h1,
.shop-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.section h2 em {
  font-style: normal;
  color: var(--orange);
}

.section-head p,
.hero-lead,
.intro-copy > p,
.access-copy > p,
.shop-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.hero {
  padding: 58px 0 36px;
}

.hero-layout,
.shop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.hero-copy,
.shop-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.shop-copy h1 {
  max-width: 10ch;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 28, 16, .12);
}

.button.primary {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, .75);
  border-color: rgba(22, 22, 22, .12);
}

.button.ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(22, 22, 22, .1);
}

.button.small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li,
.status-card,
.meta-card,
.faq-card,
.product-card,
.teaser-cards article,
.bullet-cards article {
  border: 1px solid rgba(22, 22, 22, .08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.hero-points li {
  padding: 18px;
}

.hero-points strong {
  display: block;
  font-size: 14px;
}

.hero-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.collage-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #fff;
}

.collage-item.large {
  grid-row: 1 / span 2;
}

.collage-item img,
.feature-card img,
.gallery-item img,
.product-card img,
.intro-photos img,
.map-photo img,
.shop-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-item.large img {
  aspect-ratio: 0.88;
}

.collage-item.small img {
  aspect-ratio: 1.16;
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, 65%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(31, 19, 12, .16);
}

.floating-card span {
  display: block;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.intro-strip {
  padding-top: 48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.intro-copy h2 {
  max-width: 9ch;
}

.bullet-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.bullet-cards article {
  padding: 18px 20px;
}

.bullet-cards strong {
  display: block;
  font-size: 1rem;
}

.bullet-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.intro-photos {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.intro-photos figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.intro-photos figure:first-child img {
  aspect-ratio: 1.08;
}

.intro-photos figure:last-child {
  margin-top: 48px;
}

.intro-photos figure:last-child img {
  aspect-ratio: .76;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.feature-card.wide {
  grid-row: span 2;
}

.feature-card.wide img {
  aspect-ratio: 1.08;
}

.feature-card.tall img {
  aspect-ratio: .82;
}

.feature-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.85));
  backdrop-filter: blur(10px);
}

.feature-caption span {
  display: block;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-caption h3 {
  margin: 6px 0 0;
  font-size: 1rem;
  line-height: 1.4;
}

.menu-section {
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.95));
}

.section-sidecopy {
  display: grid;
  gap: 16px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.menu-category {
  padding: 22px;
  border: 1px solid rgba(22, 22, 22, .08);
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.menu-category-title {
  margin: 0;
  font-size: 1.35rem;
}

.menu-category-time {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 138, 43, .12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.menu-category-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .96rem;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  padding: 14px 0 0;
  border-top: 1px dashed rgba(22, 22, 22, .16);
}

.menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.menu-name {
  font-weight: 800;
  line-height: 1.45;
}

.menu-price {
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--coral);
  white-space: nowrap;
}

.menu-desc,
.menu-notes,
.product-body p,
.info-list dd,
.info-list small,
.footer-bottom,
.site-footer p,
.status-card p {
  color: var(--muted);
}

.menu-desc {
  margin: 6px 0 0;
  font-size: .93rem;
  line-height: 1.6;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.menu-tag,
.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(76, 192, 179, .12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.menu-notes {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 22, 22, .08);
  font-size: .92rem;
}

.menu-notes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.menu-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.meta-card {
  padding: 22px;
}

.meta-card h3,
.faq-card h3,
.product-card h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
}

.meta-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.meta-list.large li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .65);
}

.sheet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sheet-links a,
.text-link {
  color: var(--coral);
  font-weight: 800;
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 16px;
}

.gallery-item {
  width: 100%;
  display: inline-block;
  margin: 0 0 16px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  text-align: left;
}

.gallery-item img {
  aspect-ratio: attr(width) / attr(height);
}

.gallery-item span {
  display: block;
  padding: 12px 16px 16px;
  font-size: .94rem;
  font-weight: 700;
}

.shop-teaser {
  padding-top: 50px;
}

.teaser-layout,
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.teaser-copy,
.shop-band {
  position: relative;
}

.teaser-cards {
  display: grid;
  gap: 16px;
}

.teaser-cards article {
  padding: 20px;
}

.teaser-cards span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 213, 91, .5);
  font-weight: 900;
}

.teaser-cards strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
}

.teaser-cards p,
.faq-card p,
.product-body p {
  margin: 8px 0 0;
  font-size: .95rem;
}

.access-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 28px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.info-list div {
  padding: 16px 18px;
  border: 1px solid rgba(22,22,22,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
}

.info-list dt {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
}

.access-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-photo,
.access-visual iframe {
  overflow: hidden;
  margin: 0;
  min-height: 250px;
  border: 1px solid rgba(22,22,22,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.map-photo.main {
  grid-column: span 2;
}

.map-photo.main img {
  aspect-ratio: 1.68;
}

.map-photo.sub img {
  aspect-ratio: 1.2;
}

.access-visual iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.site-footer {
  margin-top: 80px;
  padding: 40px 0 90px;
  border-top: 1px solid rgba(22,22,22,.08);
  background: rgba(255,255,255,.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  width: 132px;
}

.site-footer nav,
.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer nav a,
.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(22,22,22,.08);
  font-size: 14px;
}

.mobile-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 110;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(22,22,22,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(35, 22, 13, .14);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255, 138, 43, .08);
  font-size: 13px;
  font-weight: 800;
}

.lightbox {
  width: min(960px, calc(100vw - 24px));
  padding: 24px;
  border: 0;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.lightbox::backdrop {
  background: rgba(11,11,11,.72);
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  font-size: 26px;
}

#lightbox-caption {
  margin: 14px 0 0;
  color: var(--muted);
}

.shop-hero {
  padding: 60px 0 30px;
}

.shop-visual {
  position: relative;
  min-height: 620px;
}

.shop-visual .main-visual {
  width: min(100%, 84%);
  height: 100%;
  min-height: 620px;
  margin-left: auto;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.shop-visual .sub-visual {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 28px;
  border: 8px solid rgba(255,255,255,.92);
  box-shadow: 0 24px 55px rgba(31, 18, 12, .16);
}

.status-card {
  margin-top: 24px;
  padding: 20px;
}

.status-card span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: .12em;
}

.status-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.status-card p {
  margin: 8px 0 0;
  font-size: .95rem;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 1.06;
}

.product-body {
  padding: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
}

.shop-band {
  background: linear-gradient(135deg, rgba(255, 138, 43, .12), rgba(76, 192, 179, .12));
  border-top: 1px solid rgba(22,22,22,.06);
  border-bottom: 1px solid rgba(22,22,22,.06);
}

.faq-card {
  padding: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1100px) {
  .header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero-layout,
  .intro-grid,
  .access-grid,
  .shop-hero-grid,
  .teaser-layout,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .menu-grid,
  .product-grid,
  .faq-grid,
  .menu-meta-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1,
  .shop-copy h1 {
    max-width: none;
  }

  .shop-visual {
    min-height: 0;
  }

  .shop-visual .main-visual {
    width: 100%;
    min-height: 440px;
  }

  .shop-visual .sub-visual {
    width: 32%;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 76px;
  }

  .topbar-inner {
    display: grid;
    justify-items: start;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 12px) 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(22, 22, 22, .08);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 26px 50px rgba(22, 12, 8, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .24s ease;
  }

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

  .site-nav a {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(22,22,22,.06);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .icon-button {
    display: none;
  }

  .hero-points,
  .feature-grid,
  .menu-grid,
  .menu-meta-grid,
  .product-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage,
  .intro-photos,
  .access-visual {
    grid-template-columns: 1fr;
  }

  .collage-item.large {
    grid-row: auto;
  }

  .collage-item.large img,
  .collage-item.small img,
  .feature-card.wide img,
  .feature-card.tall img,
  .map-photo.main img,
  .map-photo.sub img {
    aspect-ratio: 1.05;
  }

  .intro-photos figure:last-child {
    margin-top: 0;
  }

  .floating-card {
    position: static;
    width: 100%;
  }

  .gallery-grid {
    columns: 2 160px;
  }

  .access-visual iframe {
    min-height: 280px;
  }

  .mobile-bar {
    display: grid;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 122px;
  }

  .lang-toggle {
    min-width: 44px;
    padding: 0 10px;
  }

  .lang-toggle #current-language {
    display: none;
  }

  .section,
  .hero,
  .shop-hero {
    padding: 70px 0 24px;
  }

  .hero h1,
  .shop-hero h1,
  .section h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .menu-category,
  .meta-card,
  .faq-card,
  .product-body,
  .status-card,
  .teaser-cards article {
    padding: 18px;
  }

  .hero-points li {
    padding: 15px;
  }

  .gallery-grid {
    columns: 1 100%;
  }

  .inline-actions,
  .hero-actions,
  .footer-bottom {
    gap: 10px;
  }

  .shop-visual .main-visual {
    min-height: 360px;
  }

  .shop-visual .sub-visual {
    width: 42%;
    bottom: 16px;
  }
}

/* =========================================================
   2026-08 responsive header, generated hero and dual commerce
   ========================================================= */
:root {
  --header: 64px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
.container,
.header-inner,
.site-nav,
.header-actions,
.hero-route-grid,
.commerce-card-grid,
.commerce-card,
.commerce-card-body {
  min-width: 0;
}

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

.site-header,
.header-inner {
  min-height: var(--header);
  height: var(--header);
}

.header-inner {
  padding-block: 0;
  gap: 16px;
}

.brand {
  display: flex;
  width: auto;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand img {
  width: auto;
  height: 50px;
  max-width: 116px;
  object-fit: contain;
}

.site-nav {
  gap: clamp(10px, 1.45vw, 21px);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav a {
  padding-block: 4px;
}

.header-actions {
  gap: 7px;
}

.lang-toggle,
.icon-button,
.nav-toggle {
  min-height: 40px;
}

.hero-top {
  padding: 0 0 54px;
  overflow: clip;
  background: #fbf4eb;
}

.hero-top-frame {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f8efe5;
}
.hero-localized-copy{position:absolute;inset:0 auto 0 7%;width:min(40%,620px);display:flex;flex-direction:column;justify-content:center;z-index:2;color:#29221f;text-shadow:0 1px 12px rgba(255,255,255,.7)}
.hero-localized-copy span{font-size:clamp(1rem,1.4vw,1.4rem);letter-spacing:.16em;font-weight:700}
.hero-localized-copy h2{font-size:clamp(2rem,4vw,4.7rem);line-height:1.08;margin:.2em 0;font-weight:800}
.hero-localized-copy p{max-width:36em;line-height:1.8;font-weight:600}
.hero-route-grid{grid-template-columns:minmax(0,1fr)!important;max-width:920px}
.commerce-card-grid{grid-template-columns:minmax(0,760px)!important;justify-content:center}
@media(max-width:700px){.hero-localized-copy{left:5%;top:4%;bottom:auto;width:62%;padding:.75rem;background:rgba(255,250,244,.78);border-radius:14px;backdrop-filter:blur(5px)}.hero-localized-copy h2{font-size:clamp(1.35rem,7vw,2.2rem)}.hero-localized-copy p{display:none}.hero-localized-copy span{font-size:.72rem}.hero-top-image{min-height:420px;object-fit:cover;object-position:57% center}}

.hero-top-image {
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0 auto;
  object-fit: contain;
}

.hero-route-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -42px;
}

.hero-route {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid rgba(22, 22, 22, .08);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(57, 35, 23, .14);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero-route:hover,
.hero-route:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(57, 35, 23, .18);
}

.takeout-route {
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,236,225,.96));
}

.online-route {
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(224,247,241,.96));
}

.hero-route-kicker {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero-route strong {
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.35;
}

.hero-route small {
  min-width: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-route b {
  margin-top: 4px;
  font-size: .9rem;
}

.commerce-section {
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,244,235,.72));
}

.commerce-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.commerce-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, .08);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.commerce-card figure {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.commerce-card figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.commerce-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.commerce-card-body > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.commerce-card-body h3 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.commerce-card-body p {
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: .95rem;
}

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

.mobile-bar a {
  min-width: 0;
  padding-inline: 5px;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 10px) 16px auto 16px;
    z-index: 150;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header) - 28px);
    padding: 12px 16px;
    overflow-y: auto;
    border: 1px solid rgba(22, 22, 22, .09);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 60px rgba(35, 21, 13, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
  }

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

  .site-nav a {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(22,22,22,.07);
    white-space: normal;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 58px;
  }

  .topbar {
    font-size: 11px;
  }

  .topbar-inner {
    min-height: 0;
    gap: 2px;
    padding-block: 7px;
  }

  .topbar-inner p,
  .topbar-inner a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .brand,
  .brand img {
    height: 42px;
  }

  .brand img {
    max-width: 96px;
  }

  .lang-toggle,
  .nav-toggle {
    min-height: 38px;
    height: 38px;
  }

  .hero-top {
    padding-bottom: 36px;
  }

  .hero-top-frame {
    width: 100%;
  }

  .hero-top-image {
    width: 100%;
    height: auto;
  }

  .hero-route-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .hero-route {
    padding: 18px;
    border-radius: 20px;
  }

  .commerce-card-grid,
  .commerce-card {
    grid-template-columns: 1fr;
  }

  .commerce-card figure img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 5px;
  }

  .hero-top-frame {
    background: #fff8f0;
  }

  .hero-top-image {
    object-fit: contain;
  }

  .hero-route strong {
    font-size: 1.05rem;
  }

  .hero-route small {
    font-size: .84rem;
  }

  .mobile-bar {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    gap: 4px;
    padding: 7px;
  }

  .mobile-bar a {
    min-height: 40px;
    font-size: 10px;
    line-height: 1.25;
  }
}

/* 2026-09 mobile navigation and hero placement correction */
.hero-localized-copy {
  inset: 7% auto auto 7%;
  width: min(35%, 560px);
  justify-content: flex-start;
}

@media (max-width: 1080px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: auto;
    z-index: 1003;
    width: auto;
    max-height: calc(100dvh - 78px);
    margin: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

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

@media (max-width: 700px) {
  .hero-top-frame {
    aspect-ratio: 1672 / 941;
  }

  .hero-top-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .hero-localized-copy {
    inset: 6% auto auto 5%;
    width: 39%;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    text-shadow: 0 1px 8px rgba(255,255,255,.9);
  }

  .hero-localized-copy span {
    font-size: clamp(.55rem, 2.3vw, .78rem);
    letter-spacing: .08em;
  }

  .hero-localized-copy h2 {
    margin-top: .25rem;
    font-size: clamp(.9rem, 4.7vw, 1.45rem);
    line-height: 1.12;
  }

  .hero-localized-copy p { display: none; }
}

@media (max-width: 480px) {
  .site-header,
  .header-inner { height: 56px; min-height: 56px; }
  .header-inner { width: calc(100% - 20px); }
  .lang-toggle { padding-inline: 9px; font-size: 11px; }
  .lang-icon, .lang-chevron { display: none; }
  .nav-toggle { flex: 0 0 38px; }
  .mobile-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Definitive smartphone layout */
@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    color: #29221f;
    background: #fff;
    border: 1px solid rgba(22,22,22,.14);
    font-size: 23px;
    line-height: 1;
  }
}

@media (max-width: 700px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { min-width: 0; }
  *, *::before, *::after { box-sizing: border-box; }
  img, picture, video, iframe, svg { max-width: 100%; }
  .container { width: calc(100% - 24px); max-width: none; }
  .topbar-inner { display: block; padding: 7px 0; }
  .topbar-inner p { display: none; }
  .topbar-inner a { display: block; width: 100%; text-align: center; font-size: 10px; }
  .site-header { width: 100%; }
  .header-inner { width: calc(100% - 20px); max-width: none; gap: 6px; }
  .brand { min-width: 0; max-width: 92px; }
  .brand img { width: 90px; max-width: 90px; height: auto; }
  .header-actions { min-width: 0; margin-left: auto; gap: 5px; }
  .lang-toggle { min-width: 40px; max-width: 76px; padding: 0 8px; font-size: 10px; }
  .lang-toggle #current-language { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .icon-button { display: none !important; }
  .site-nav { right: 10px !important; left: 10px !important; width: auto !important; max-width: calc(100vw - 20px) !important; }
  .site-nav a { max-width: 100%; overflow-wrap: anywhere; }
  main, section, .section-head, .intro-grid, .feature-grid, .menu-grid, .gallery-grid, .commerce-card-grid, .access-grid, .footer-grid { width: 100%; max-width: 100%; }
  .section-head, .intro-grid, .feature-grid, .menu-grid, .commerce-card-grid, .access-grid, .footer-grid { grid-template-columns: minmax(0,1fr); }
  .section { padding: 54px 0; }
  .section h2 { max-width: 100%; overflow-wrap: anywhere; }
  .commerce-card { grid-template-columns: minmax(0,1fr); width: 100%; }
  .commerce-card-body { min-width: 0; }
  .info-list div { grid-template-columns: minmax(72px,.32fr) minmax(0,1fr); }
  .access-visual iframe { width: 100%; }
  .mobile-bar { width: auto; max-width: calc(100vw - 16px); }
}

/* Keep the complete mobile header visible at every scroll position */
@media (max-width: 1080px) {
  body.page-home,
  body.page-ec {
    padding-top: 58px;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
  }

  .site-header .header-inner {
    height: 58px;
    min-height: 58px;
  }

  .header-actions .lang-switcher,
  .header-actions .lang-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .lang-toggle #current-language {
    display: inline-block !important;
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lang-menu {
    z-index: 5100;
  }
}

@media (max-width: 480px) {
  .lang-toggle {
    width: auto;
    max-width: 86px;
    min-width: 56px;
    padding-inline: 8px;
  }

  .lang-toggle #current-language {
    max-width: 66px;
    font-size: 10px;
  }
}
