/* ============================================================
   DEWOR — Hawaiian BBQ Kitchen Car
   Design Tokens (案A 王道トロピカル)
   ============================================================ */

:root {
  /* Color tokens */
  --color-main: #2BA88C;
  --color-main-deep: #1F8770;
  --color-accent-yellow: #F5C84B;
  --color-accent-yellow-deep: #E0B238;
  --color-accent-red: #ED5145;
  --color-accent-red-deep: #D43E33;
  --color-bg-base: #FFFCF6;
  --color-bg-sub: #E8F5EE;
  --color-bg-cream: #FAF3E3;
  --color-text-primary: #1A3D34;
  --color-text-secondary: #6B8278;
  --color-border: #CFE4DA;
  --color-white: #FFFFFF;

  /* Type tokens */
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-en-display: "Pacifico", "Caveat", cursive;
  --font-en-body: "Inter", "Poppins", sans-serif;

  /* Spacing tokens */
  --space-section-pc: 140px;
  --space-section-sp: 80px;
  --space-inner: 24px;
  --space-content-max: 1280px;

  /* Radius tokens */
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Shadow tokens (soft only) */
  --shadow-sm: 0 4px 14px rgba(26, 61, 52, 0.06);
  --shadow-md: 0 18px 40px rgba(26, 61, 52, 0.10);
  --shadow-lg: 0 30px 70px rgba(26, 61, 52, 0.14);

  /* Type scale (PC defaults) */
  --text-h1: 80px;
  --text-h2: 56px;
  --text-h3: 32px;
  --text-body: 16px;
  --text-caption: 13px;
  --leading-body: 1.7;
  --leading-heading: 1.2;
  --tracking: 0.02em;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  background: var(--color-bg-base);
  color: var(--color-text-primary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--space-content-max);
  margin-inline: auto;
  padding-inline: 32px;
}
.section { padding-block: var(--space-section-pc); position: relative; }
.section--tight { padding-block: 100px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en-display);
  font-size: 28px;
  color: var(--color-main);
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-2deg);
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--color-main);
  border-radius: 2px;
  transform: rotate(2deg);
}
.h1 {
  font-size: var(--text-h1);
  line-height: var(--leading-heading);
  font-weight: 800;
  letter-spacing: var(--tracking);
}
.h2 {
  font-size: var(--text-h2);
  line-height: var(--leading-heading);
  font-weight: 800;
  letter-spacing: var(--tracking);
}
.h3 {
  font-size: var(--text-h3);
  line-height: 1.3;
  font-weight: 700;
}
.lead {
  font-size: 18px;
  line-height: var(--leading-body);
  color: var(--color-text-secondary);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-accent-yellow);
  color: var(--color-text-primary);
  box-shadow: 0 12px 28px rgba(245, 200, 75, 0.45);
}
.btn--primary:hover {
  background: var(--color-accent-yellow-deep);
  box-shadow: 0 18px 36px rgba(245, 200, 75, 0.55);
}
.btn--secondary {
  background: var(--color-main);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(43, 168, 140, 0.30);
}
.btn--secondary:hover { background: var(--color-main-deep); }
.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  padding: 14px 24px;
}
.btn--ghost:hover { color: var(--color-main); }
.btn .arrow {
  width: 20px; height: 20px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand__mark img { display: block; }
.footer__brand .brand__mark {
  width: 64px; height: 64px;
  background: var(--color-bg-base);
  border-radius: 16px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.brand__name {
  font-family: var(--font-en-display);
  font-size: 30px;
  color: var(--color-text-primary);
  line-height: 1;
}
.brand__tag {
  display: block;
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  position: relative;
  padding: 8px 2px;
  transition: color .2s ease;
}
.nav__item a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--color-accent-yellow);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__item a:hover { color: var(--color-main); }
.nav__item a:hover::after { width: 100%; }
.nav__item--num {
  font-family: var(--font-en-body);
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  margin-right: 6px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-sub) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__copy { position: relative; }
.hero__title {
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.1;
  font-weight: 800;
  margin-top: 24px;
  letter-spacing: 0;
}
.hero__title .accent-yellow { color: var(--color-accent-yellow-deep); }
.hero__title .accent-red { color: var(--color-accent-red); }
.hero__title .accent-main { color: var(--color-main); }
.hero__title .stroke {
  position: relative;
  display: inline-block;
}
.hero__title .stroke::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  bottom: 8%;
  height: 14px;
  background: var(--color-accent-yellow);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
  opacity: 0.85;
}
.hero__sub {
  margin-top: 32px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text-secondary);
}
.hero__cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en-body);
  font-size: 13px;
  color: var(--color-text-secondary);
}
.hero__meta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent-red);
  box-shadow: 0 0 0 4px rgba(237, 81, 69, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(237, 81, 69, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(237, 81, 69, 0.05); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
}
.hero__plate {
  position: absolute;
  inset: 6% 0 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #F8DDB2, #B5713A 55%, #5A3217 100%);
  box-shadow: var(--shadow-lg), inset 0 -30px 80px rgba(0,0,0,.25);
  overflow: hidden;
}
.hero__plate::after {
  /* striped placeholder pattern + monospace caption */
  content: "PRODUCT  SHOT  /  炭火焼き 牛ハラミ串";
  position: absolute;
  inset: 16%;
  display: grid; place-items: center;
  text-align: center;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,252,246,0.85);
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,252,246,.08) 0,
      rgba(255,252,246,.08) 8px,
      rgba(0,0,0,.05) 8px,
      rgba(0,0,0,.05) 16px);
}
.hero__sticker {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--color-accent-red);
  color: var(--color-white);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-en-display);
  font-size: 22px;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
  top: -10px; right: 8%;
  z-index: 3;
  animation: wobble 5s ease-in-out infinite;
}
.hero__sticker small {
  font-family: var(--font-jp);
  font-size: 10px;
  letter-spacing: 0.2em;
  display: block;
  margin-top: 4px;
  font-weight: 700;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-6px); }
}
.hero__chip {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  z-index: 4;
}
.hero__chip .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  display: grid; place-items: center;
  color: var(--color-main);
}
.hero__chip--1 { top: 22%; left: -3%; animation: floaty 6s ease-in-out infinite; }
.hero__chip--2 { bottom: 20%; right: -2%; animation: floaty 7s ease-in-out infinite reverse; }
.hero__chip--3 { bottom: 6%; left: 18%; animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero leaves */
.leaf {
  position: absolute;
  pointer-events: none;
  opacity: var(--leaf-opacity, 0.75);
  transition: transform .8s ease;
}
.hero .leaf--1 { top: 8%; left: -3%; width: 280px; transform: rotate(-20deg); }
.hero .leaf--2 { top: 0; right: -6%; width: 320px; transform: rotate(30deg); }
.hero .leaf--3 { bottom: -4%; left: 30%; width: 200px; transform: rotate(60deg); opacity: 0.5; }
.hero .leaf--4 { top: 40%; right: 38%; width: 90px; opacity: 0.4; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-en-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-text-secondary);
  z-index: 3;
}
.hero__scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-text-secondary), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-en-display);
  font-size: 32px;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: var(--color-bg-base);
  position: relative;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-size: 22px 22px;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(43,168,140,.18) 0 1px,
      transparent 1px 22px),
    linear-gradient(135deg, var(--color-bg-sub), var(--color-bg-cream));
  display: grid; place-items: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.16em;
  text-align: center;
  padding: 16px;
}
.about__photo--main {
  inset: 0 12% 12% 0;
}
.about__photo--sub {
  width: 52%;
  aspect-ratio: 1/1;
  bottom: 0; right: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(245,200,75,.25) 0 1px,
      transparent 1px 22px),
    linear-gradient(135deg, #FFF1D1, #FFE6A8);
}
.about__badge {
  position: absolute;
  top: 8%; left: -6%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
  color: var(--color-text-primary);
  font-family: var(--font-en-display);
  display: grid; place-items: center;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(352deg); } }

.about__copy {}
.about__title { margin-top: 18px; }
.about__lead { margin-top: 28px; }
.about__features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature {
  background: var(--color-bg-sub);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.feature__num {
  font-family: var(--font-en-display);
  font-size: 30px;
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.feature__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   Menu
   ============================================================ */
.menu {
  background: var(--color-bg-sub);
  position: relative;
  overflow: hidden;
}
.menu__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.menu__head .h2 { margin-top: 16px; max-width: 12ch; }
.menu__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.menu__filter {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-secondary);
  transition: background-color .25s ease, color .25s ease;
}
.menu__filter.is-active {
  background: var(--color-text-primary);
  color: var(--color-bg-base);
}
.menu__filter:hover:not(.is-active) {
  color: var(--color-text-primary);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-menu {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.card-menu:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-menu__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.card-menu__img-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(26,61,52,0.55);
}
.card-menu[data-flavor="bbq"] .card-menu__img-inner {
  background:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,.10) 0 1px,
      transparent 1px 16px),
    linear-gradient(135deg, #C0541F, #5C2A0E);
  color: rgba(255,252,246,0.85);
}
.card-menu[data-flavor="veggie"] .card-menu__img-inner {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.18) 0 1px,
      transparent 1px 16px),
    linear-gradient(135deg, #4FAF7A, #1F7A48);
  color: rgba(255,255,255,0.9);
}
.card-menu[data-flavor="drink"] .card-menu__img-inner {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.18) 0 1px,
      transparent 1px 16px),
    linear-gradient(135deg, #F5C84B, #D4892A);
  color: rgba(26,61,52,0.85);
}
.card-menu[data-flavor="set"] .card-menu__img-inner {
  background:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,.10) 0 1px,
      transparent 1px 16px),
    linear-gradient(135deg, #ED5145, #8E1F18);
  color: rgba(255,252,246,0.9);
}
.card-menu__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-bg-base);
  color: var(--color-text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.card-menu__hot {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--color-accent-red);
  color: var(--color-white);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.card-menu__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.card-menu__sub {
  font-family: var(--font-en-body);
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.card-menu__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}
.card-menu__price {
  font-family: var(--font-en-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text-primary);
}
.card-menu__price small {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-left: 4px;
  font-weight: 500;
}
.card-menu__add {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  display: grid; place-items: center;
  transition: transform .2s ease, background-color .2s ease;
}
.card-menu__add:hover {
  background: var(--color-accent-yellow);
  color: var(--color-text-primary);
  transform: rotate(90deg);
}

/* ============================================================
   Schedule
   ============================================================ */
.schedule { background: var(--color-bg-base); }
.schedule__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 60px;
  flex-wrap: wrap;
}
.schedule__head .h2 { max-width: 16ch; margin-top: 16px; }
.schedule__legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--color-text-secondary);
}
.schedule__legend .lg {
  display: inline-flex; align-items: center; gap: 8px;
}
.schedule__legend .sw {
  width: 12px; height: 12px; border-radius: 4px;
}
.cal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.cal__main {}
.cal__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.cal__title {
  font-family: var(--font-en-display);
  font-size: 36px;
  color: var(--color-text-primary);
  line-height: 1;
}
.cal__title small {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-left: 12px;
  letter-spacing: 0.08em;
}
.cal__nav { display: flex; gap: 8px; }
.cal__nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  color: var(--color-text-primary);
  display: grid; place-items: center;
  transition: background-color .2s ease;
}
.cal__nav button:hover { background: var(--color-main); color: var(--color-white); }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__dow {
  text-align: center;
  font-family: var(--font-en-body);
  font-size: 11px;
  color: var(--color-text-secondary);
  padding: 10px 0;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.cal__cell {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 8px 10px;
  font-family: var(--font-en-body);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  background: transparent;
  color: var(--color-text-primary);
  transition: background-color .2s ease, color .2s ease;
  cursor: pointer;
}
.cal__cell.is-empty { cursor: default; color: transparent; }
.cal__cell:hover:not(.is-empty) { background: var(--color-bg-sub); }
.cal__cell.is-event { background: var(--color-bg-sub); }
.cal__cell.is-event::before {
  content: ""; position: absolute;
  left: 8px; bottom: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-main);
}
.cal__cell.is-event[data-type="festival"]::before { background: var(--color-accent-red); }
.cal__cell.is-event[data-type="catering"]::before { background: var(--color-accent-yellow); }
.cal__cell.is-today {
  background: var(--color-text-primary);
  color: var(--color-bg-base);
}
.cal__cell.is-today.is-event::before { background: var(--color-accent-yellow); }
.cal__cell.is-selected {
  background: var(--color-main);
  color: var(--color-white);
}
.cal__cell.is-selected.is-event::before { background: var(--color-accent-yellow); }

.cal__side {
  background: var(--color-bg-base);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
  border: 1px solid var(--color-border);
}
.cal__side h4 {
  font-family: var(--font-en-display);
  font-size: 28px;
  margin-bottom: 6px;
  line-height: 1;
}
.cal__side .when {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 22px;
}
.cal__event {
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--color-white);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.cal__event .typ {
  font-size: 11px;
  font-family: var(--font-en-body);
  letter-spacing: 0.12em;
  font-weight: 700;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.cal__event .typ.t-event { background: var(--color-bg-sub); color: var(--color-main); }
.cal__event .typ.t-festival { background: rgba(237, 81, 69, 0.12); color: var(--color-accent-red); }
.cal__event .typ.t-catering { background: rgba(245, 200, 75, 0.20); color: var(--color-accent-yellow-deep); }
.cal__event .name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.cal__event .meta {
  font-size: 12px;
  color: var(--color-text-secondary);
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cal__empty {
  padding: 32px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-secondary);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--color-border);
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  position: relative;
  overflow: hidden;
}
.contact .eyebrow {
  color: var(--color-accent-yellow);
}
.contact .eyebrow::before { background: var(--color-accent-yellow); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__title { color: var(--color-bg-base); margin-top: 18px; }
.contact__lead {
  color: rgba(255,252,246,0.7);
  margin-top: 28px;
  max-width: 44ch;
}
.contact__channels {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.06);
  border: 1px solid rgba(255, 252, 246, 0.10);
  transition: background-color .25s ease, transform .25s ease;
}
.channel:hover { background: rgba(255, 252, 246, 0.10); transform: translateY(-2px); }
.channel .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-main);
  display: grid; place-items: center;
  color: var(--color-white);
}
.channel .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,252,246,0.6);
  font-family: var(--font-en-body);
}
.channel .val {
  font-weight: 700;
  font-size: 15px;
}
.form {
  background: var(--color-bg-base);
  color: var(--color-text-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
}
.field label .req {
  font-size: 9px;
  background: var(--color-accent-red);
  color: var(--color-white);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0;
}
.field input, .field textarea, .field select {
  font-family: var(--font-jp);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-sub);
  border: 2px solid transparent;
  color: var(--color-text-primary);
  transition: border-color .2s ease, background-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--color-main);
  background: var(--color-white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.form__chip {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-sub);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-secondary);
  border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.form__chip.is-active {
  background: var(--color-main);
  color: var(--color-white);
}
.form__submit {
  margin-top: 8px;
  align-self: flex-start;
}
.form__success {
  background: var(--color-bg-sub);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.form__success .h3 { color: var(--color-main); margin-bottom: 8px; }
.form__success p { color: var(--color-text-secondary); font-size: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,252,246,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand .brand__name { color: var(--color-bg-base); }
.footer__brand p {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,252,246,0.6);
  line-height: 1.8;
  max-width: 28ch;
}
.footer h5 {
  font-family: var(--font-en-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,252,246,0.5);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer li a { font-size: 14px; transition: color .2s ease; }
.footer li a:hover { color: var(--color-accent-yellow); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,252,246,0.10);
  font-size: 12px;
  color: rgba(255,252,246,0.5);
  font-family: var(--font-en-body);
}
.footer__sns { display: flex; gap: 10px; }
.footer__sns a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,252,246,0.06);
  display: grid; place-items: center;
  transition: background-color .2s ease;
}
.footer__sns a:hover { background: var(--color-main); }
.footer__leaf-bg {
  position: absolute;
  right: -60px; top: -40px;
  width: 320px;
  opacity: 0.05;
  pointer-events: none;
}

/* ============================================================
   Decorative leaves system
   ============================================================ */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: var(--leaf-opacity, 0.6);
}
.menu .leaf-deco--1 { top: 60px; right: -40px; width: 280px; transform: rotate(40deg); opacity: calc(var(--leaf-opacity, 0.6) * 0.7); }
.menu .leaf-deco--2 { bottom: 80px; left: -60px; width: 240px; transform: rotate(-30deg); opacity: calc(var(--leaf-opacity, 0.6) * 0.5); }
.about .leaf-deco--1 { top: 80px; right: 5%; width: 180px; transform: rotate(25deg); opacity: calc(var(--leaf-opacity, 0.6) * 0.5); }
.schedule .leaf-deco--1 { top: 100px; left: -40px; width: 220px; transform: rotate(-20deg); opacity: calc(var(--leaf-opacity, 0.6) * 0.4); }
.contact .leaf-deco--1 { bottom: -40px; right: -40px; width: 320px; transform: rotate(15deg); opacity: 0.08; }
.contact .leaf-deco--2 { top: -40px; left: -40px; width: 220px; transform: rotate(-130deg); opacity: 0.06; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --text-h1: 56px;
    --text-h2: 40px;
    --space-section-pc: 100px;
  }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .cal { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .hero .leaf--3, .hero .leaf--4 { display: none; }
}

@media (max-width: 720px) {
  :root {
    --text-h1: 40px;
    --text-h2: 32px;
    --text-h3: 24px;
    --space-section-pc: var(--space-section-sp);
  }
  .container { padding-inline: 20px; }
  .nav__list { display: none; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
  .hero__title { font-size: 40px; }
  .hero__sub { font-size: 15px; }
  .hero__cta { gap: 16px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .marquee__track { font-size: 22px; gap: 36px; }
  .menu__head { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu__filters { overflow-x: auto; flex-wrap: nowrap; padding: 4px; }
  .menu__filter { padding: 10px 16px; font-size: 12px; white-space: nowrap; }
  .schedule__head { flex-direction: column; align-items: flex-start; }
  .cal { padding: 20px; }
  .cal__title { font-size: 28px; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .about__features { grid-template-columns: 1fr; }
  .hero__sticker { width: 110px; height: 110px; font-size: 18px; }
  .hero__chip--1 { left: 4%; }
  .hero__chip--2 { right: 4%; }
}

/* ============================================================
   Hero (full-bleed slideshow variant)
   ============================================================ */
.hero--full {
  min-height: 100vh;
  padding: 0;
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover, cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 7s ease-out;
}
.hero__bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__bg-label {
  position: absolute;
  bottom: 32px;
  right: 40px;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255,252,246,0.55);
  z-index: 2;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero--full .leaf {
  z-index: 2;
  opacity: 0.10;
}
.hero--full .leaf--1 { top: -2%; left: -4%; width: 360px; transform: rotate(-20deg); }
.hero--full .leaf--2 { bottom: -10%; right: -4%; width: 420px; transform: rotate(35deg); }
.hero__inner--full {
  grid-template-columns: 1fr;
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero__copy--centered {
  max-width: 880px;
}
.eyebrow--light { color: var(--color-accent-yellow); }
.eyebrow--light::before { background: var(--color-accent-yellow); }
.hero__title--light { color: var(--color-bg-base); }
.hero__title--light .stroke::after { background: var(--color-accent-yellow); opacity: 1; }
.hero__sub--light { color: rgba(255,252,246,0.85); }
.hero__meta--light { color: rgba(255,252,246,0.75); }
.hero__meta--light .dot { box-shadow: 0 0 0 4px rgba(237, 81, 69, 0.30); }
.hero__scroll--light { color: rgba(255,252,246,0.7); }
.hero__scroll--light .line { background: linear-gradient(to bottom, rgba(255,252,246,0.7), transparent); }

.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero__dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,252,246,0.30);
  transition: background-color .3s ease, width .3s ease;
}
.hero__dot.is-active {
  background: var(--color-accent-yellow);
  width: 44px;
}

@media (max-width: 720px) {
  .hero--full { min-height: 90vh; }
  .hero__bg-label { right: 16px; bottom: 16px; font-size: 9px; }
  .hero__inner--full { padding-top: 110px; padding-bottom: 90px; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal--delay-4 { transition-delay: .32s; }

/* ============================================================
   Page-hero (subpages)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-sub) 100%);
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  gap: 16px;
  max-width: 880px;
}
.page-hero__num {
  font-family: var(--font-en-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-text-secondary);
  font-weight: 700;
}
.page-hero__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.15;
  margin: 8px 0 0;
}
.page-hero__sub {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.9;
  max-width: 56ch;
  margin-top: 16px;
}
.page-hero .leaf--1 { top: 5%; right: -6%; width: 280px; transform: rotate(40deg); opacity: var(--leaf-opacity, 0.7); }
.page-hero .leaf--2 { bottom: -8%; left: -5%; width: 220px; transform: rotate(-30deg); opacity: calc(var(--leaf-opacity, 0.7) * 0.6); }

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  font-family: var(--font-en-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color .2s ease;
}
.breadcrumbs a:hover { color: var(--color-main); }
.breadcrumbs span:last-child { color: var(--color-text-primary); font-weight: 700; }

/* ============================================================
   Nav tiles (homepage)
   ============================================================ */
.nav-tiles { background: var(--color-bg-base); padding-top: 0; }
.nav-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nav-tile {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 32px 28px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--color-border);
}
.nav-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-main);
}
.nav-tile__num {
  font-family: var(--font-en-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  font-weight: 700;
}
.nav-tile__title {
  font-family: var(--font-en-display);
  font-size: 36px;
  color: var(--color-text-primary);
  line-height: 1;
  margin-top: 6px;
}
.nav-tile__jp {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main);
  margin-top: 6px;
}
.nav-tile__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 28px;
}
.nav-tile__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  display: grid; place-items: center;
  color: var(--color-text-primary);
  align-self: flex-start;
  margin-top: auto;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.nav-tile:hover .nav-tile__arrow {
  background: var(--color-accent-yellow);
  transform: translateX(4px);
}
.nav-tile::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-tile:hover::before { opacity: 1; }

/* Active nav state */
.nav__item.is-current a { color: var(--color-main); }
.nav__item.is-current a::after { width: 100%; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--color-main);
  color: var(--color-bg-base);
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-banner .h2 { color: var(--color-bg-base); font-size: clamp(28px, 4vw, 44px); }
.cta-banner__sub { margin-top: 12px; opacity: 0.85; max-width: 50ch; }
.cta-banner .leaf-deco--1 { right: -40px; bottom: -40px; width: 280px; transform: rotate(20deg); opacity: 0.10; }

@media (max-width: 1024px) {
  .nav-tiles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-tiles__grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 130px; padding-bottom: 60px; }
  .cta-banner { padding: 60px 0; text-align: center; }
  .cta-banner__inner { justify-content: center; }
}


/* ============================================================
   Homepage section previews
   ============================================================ */
.section--tight { padding-top: 110px; padding-bottom: 110px; }

.preview { position: relative; }
.preview--menu { background: var(--color-bg-sub); }
.preview--schedule { background: var(--color-bg-base); }
.preview--contact { background: var(--color-bg-sub); }

.preview__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.preview__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.preview__copy { display: flex; flex-direction: column; align-items: flex-start; }
.preview__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.preview__head > div { max-width: 56ch; }

.preview__menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* schedule preview list */
.preview__schedule-list {
  display: flex; flex-direction: column;
  gap: 14px;
}
.sched-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sched-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.sched-row__date {
  display: flex; flex-direction: column;
  align-items: center;
  padding-right: 24px;
  border-right: 1px dashed var(--color-border);
}
.sched-row__d {
  font-family: var(--font-en-body);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text-primary);
}
.sched-row__m {
  font-family: var(--font-en-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  margin-top: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.sched-row__dow {
  font-family: var(--font-en-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--color-main);
  margin-top: 2px;
  font-weight: 700;
}
.sched-row__body { display: flex; flex-direction: column; gap: 8px; }
.sched-row__typ {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 800;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  font-family: var(--font-en-body);
  text-transform: uppercase;
}
.sched-row__typ.t-event { background: var(--color-bg-sub); color: var(--color-main); }
.sched-row__typ.t-festival { background: rgba(237,81,69,.12); color: var(--color-accent-red); }
.sched-row__typ.t-catering { background: rgba(245,200,75,.20); color: var(--color-accent-yellow-deep, #B8870E); }
.sched-row__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.sched-row__meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--color-text-secondary);
}
.sched-row__meta span {
  display: inline-flex; align-items: center; gap: 6px;
}
.sched-row__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  color: var(--color-text-primary);
  display: grid; place-items: center;
  justify-self: end;
  transition: background-color .2s ease, color .2s ease;
}
.sched-row:hover .sched-row__arrow {
  background: var(--color-accent-yellow);
}

/* contact preview channels (light bg variant) */
.channel--light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

@media (max-width: 1024px) {
  .preview__grid { grid-template-columns: 1fr; gap: 50px; }
  .preview__menu-grid { grid-template-columns: repeat(2, 1fr); }
  .section--tight { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 720px) {
  .preview__menu-grid { grid-template-columns: 1fr; }
  .preview__head { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .sched-row { grid-template-columns: 80px 1fr 36px; gap: 16px; padding: 18px; }
  .sched-row__d { font-size: 30px; }
  .sched-row__date { padding-right: 14px; }
  .sched-row__arrow { width: 32px; height: 32px; }
}


/* ============================================================
   Header Instagram quick-link
   ============================================================ */
.header__ig {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  color: var(--color-text-primary);
  display: grid; place-items: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
  margin-right: 4px;
}
.header__ig:hover {
  background: var(--color-main);
  color: var(--color-bg-base);
  transform: translateY(-2px);
}
.site-header.is-scrolled .header__ig {
  background: var(--color-bg-sub);
}
@media (max-width: 720px) {
  .header__ig { display: none; }
}

/* ============================================================
   Footer Instagram callout (under brand description)
   ============================================================ */
.footer__ig-row {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  background: rgba(255,252,246,0.06);
  border: 1px solid rgba(255,252,246,0.10);
  border-radius: var(--radius-md);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
  color: var(--color-bg-base);
  max-width: 100%;
}
.footer__ig-row:hover {
  background: linear-gradient(135deg, #F5C84B22, #ED514522);
  border-color: var(--color-accent-yellow);
  transform: translateY(-2px);
}
.footer__ig-row__ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ED5145, #F5C84B);
  color: #FFFCF6;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.footer__ig-row__lbl {
  display: block;
  font-family: var(--font-en-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(255,252,246,0.55);
}
.footer__ig-row__handle {
  display: block;
  font-family: var(--font-en-body);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-bg-base);
  margin-top: 2px;
}
.footer__ig-row__arrow {
  width: 18px; height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(255,252,246,0.6);
}
.footer__ig-row:hover .footer__ig-row__arrow { color: var(--color-accent-yellow); }


/* tighten preview→footer transition on homepage */
.preview--contact { padding-bottom: 80px; }
.preview--contact + .footer { padding-top: 56px; }
@media (max-width: 720px) {
  .preview--contact { padding-bottom: 56px; }
  .preview--contact + .footer { padding-top: 40px; }
}


/* ============================================================
   Mobile hamburger + drawer menu
   ============================================================ */
.header__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 30;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg-base);
  z-index: 25;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
  display: none;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu__inner {
  padding: 96px 24px 40px;
  display: flex; flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu__list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  color: var(--color-text-primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.mobile-menu__list li.is-current a { color: var(--color-main); }
.mobile-menu__num {
  font-family: var(--font-en-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  width: 28px;
}
.mobile-menu__lbl { flex: 1; }
.mobile-menu__arrow {
  width: 18px; height: 18px;
  color: var(--color-text-secondary);
  transition: transform .2s ease, color .2s ease;
}
.mobile-menu__list a:hover .mobile-menu__arrow {
  transform: translateX(4px);
  color: var(--color-main);
}
.mobile-menu__cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.mobile-menu__ig {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 14px;
  background: var(--color-bg-sub);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: transform .2s ease, border-color .2s ease;
}
.mobile-menu__ig:hover { transform: translateY(-2px); border-color: var(--color-accent-yellow); }
.mobile-menu__ig-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ED5145, #F5C84B);
  color: #FFFCF6;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mobile-menu__ig-lbl {
  display: block;
  font-family: var(--font-en-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--color-text-secondary);
}
.mobile-menu__ig-handle {
  display: block;
  font-family: var(--font-en-body);
  font-size: 16px;
  font-weight: 800;
  margin-top: 2px;
}
.mobile-menu__ig-arrow {
  width: 18px; height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--color-text-secondary);
}

@media (max-width: 880px) {
  .nav .nav__list,
  .header__cta,
  .header__ig { display: none !important; }
  .nav { gap: 0; }
  .header__burger { display: flex; }
  .mobile-menu { display: block; }
  .site-header.is-menu-open .brand__name { color: var(--color-text-primary); }
}

/* ============================================================
   Comprehensive SP polish
   ============================================================ */
@media (max-width: 720px) {
  /* Header */
  .site-header__inner { padding: 14px 0; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__name { font-size: 24px; }
  .brand__tag { font-size: 10px; letter-spacing: 0.14em; }

  /* Page hero (subpages) */
  .page-hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .page-hero__title { font-size: 36px; line-height: 1.2; }
  .page-hero__sub { font-size: 15px; line-height: 1.8; }
  .page-hero .leaf--1 { width: 180px; right: -20%; }
  .page-hero .leaf--2 { width: 140px; left: -15%; }
  .breadcrumbs { margin-top: 24px; font-size: 11px; }

  /* Section headers */
  .h2 { font-size: 32px !important; line-height: 1.2; }
  .lead { font-size: 15px; line-height: 1.85; }

  /* Preview blocks */
  .section--tight { padding-top: 60px; padding-bottom: 60px; }
  .preview__grid { gap: 36px; }
  .preview__visual { box-shadow: var(--shadow-sm); }
  .preview__head { gap: 20px; margin-bottom: 28px; }

  /* Hero (homepage) */
  .hero__title { font-size: 36px !important; }
  .hero__sub { font-size: 14px; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__meta { font-size: 11px; }
  .hero__dots { bottom: 24px; }
  .hero__dot { width: 22px; }
  .hero__dot.is-active { width: 36px; }

  /* Marquee */
  .marquee { padding: 18px 0; }
  .marquee__track { font-size: 18px; gap: 24px; }
  .marquee .dot { width: 6px; height: 6px; }

  /* About preview */
  .about__photo--main { aspect-ratio: 1/1 !important; font-size: 11px !important; }

  /* Menu cards */
  .card-menu { padding: 16px; }
  .card-menu__img { aspect-ratio: 4/3; }
  .card-menu__title { font-size: 17px; }
  .card-menu__sub { font-size: 11px; }
  .card-menu__price { font-size: 18px; }

  /* Schedule preview rows */
  .sched-row {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .sched-row__d { font-size: 26px; }
  .sched-row__date { padding-right: 12px; }
  .sched-row__name { font-size: 16px; line-height: 1.45; }
  .sched-row__meta { font-size: 11px; gap: 10px; }
  .sched-row__arrow { display: none; }

  /* Schedule full calendar */
  .cal__weekdays > div, .cal__day { font-size: 11px; }
  .cal__day { aspect-ratio: 1; padding: 4px; }
  .cal__day-num { font-size: 13px; }
  .cal__day-tag { font-size: 8px; padding: 1px 4px; }
  .cal__nav { gap: 8px; }
  .cal__nav button { width: 36px; height: 36px; }

  /* Contact channels (preview) */
  .preview__channels { gap: 10px; }
  .channel { padding: 14px 16px; }
  .channel .ic { width: 36px; height: 36px; }
  .channel .lbl { font-size: 9px; }
  .channel .val { font-size: 13px; }

  /* Forms */
  .form { padding: 20px; border-radius: var(--radius-md); }
  .form input, .form textarea, .form select { font-size: 16px; padding: 12px 14px; }
  .form label { font-size: 12px; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer__brand .brand__mark { width: 56px; height: 56px; }
  .footer__ig-row {
    width: 100%;
    padding: 12px 16px 12px 12px;
    gap: 12px;
  }
  .footer__ig-row__ic { width: 36px; height: 36px; }
  .footer__ig-row__handle { font-size: 14px; }

  /* CTA banner */
  .cta-banner { padding: 50px 0; }
  .cta-banner__inner .btn { width: 100%; justify-content: center; }

  /* Buttons in flow */
  .btn { width: auto; }
  .preview__copy .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .brand__name { font-size: 22px; }
  .brand__tag { display: none; }
  .hero__title { font-size: 30px !important; }
  .page-hero__title { font-size: 30px; }
  .h2 { font-size: 26px !important; }
  .mobile-menu__inner { padding: 88px 20px 32px; }
  .mobile-menu__list a { font-size: 19px; padding: 18px 4px; }
}
