@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #87CEEB;
  --color-primary-light: #B5E2F5;
  --color-primary-dark: #4A90B8;
  --color-white: #FFFFFF;
  --color-bg: #FAFCFE;
  --color-bg-warm: #FFF9F5;
  --color-bg-blue: #F0F7FB;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #E0E8ED;
  --color-accent-pink: #FFB5B5;
  --color-accent-green: #A8D5A2;
  --color-accent-cream: #FFF5E6;
  --color-footer-bg: #2C3E50;
  --color-footer-text: #FFFFFF;
  --color-footer-muted: #94A3B8;
  --color-cta: #4A90B8;
  --color-cta-hover: #3A7CA5;
  --color-cta-text: #FFFFFF;
  --font-heading: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-brand: 'Cormorant Garamond', 'Georgia', serif;
  --line-height-heading: 1.4;
  --line-height-body: 1.8;
  --letter-spacing-heading: 0.02em;
  --letter-spacing-body: 0.04em;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: 1.5rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
}
address { font-style: normal; }

/* ===== Container ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 1px 0 var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.header__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--color-primary-light);
}
.header__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.header__logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-main {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
.header__logo-sub {
  font-family: var(--font-brand);
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.header__nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color 0.3s;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary-dark);
  transition: width 0.3s;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-primary-dark);
}
.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}
.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: var(--space-lg);
}
.header__cart svg { width: 22px; height: 22px; }
.header__cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--color-accent-pink);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: var(--space-md);
}
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-xl) var(--container-padding);
  flex-direction: column;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
}
.mobile-nav__link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.mobile-nav__link.active {
  color: var(--color-primary-dark);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  margin-top: 72px;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}
.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--container-padding);
}
.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: var(--space-lg);
}
.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__brand {
  font-family: var(--font-brand);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__brand-sub {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero__divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: var(--space-xl) 0;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.btn-hero {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.btn-hero:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--color-cta);
  color: var(--color-cta-text);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: transparent;
  color: var(--color-cta);
  padding: 0.875rem 2rem;
  border: 2px solid var(--color-cta);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: var(--color-cta);
  color: var(--color-white);
}
.btn-primary--full {
  display: block;
  width: 100%;
}

/* ===== Section ===== */
.section {
  padding: var(--space-4xl) 0;
}
.section--blue { background: var(--color-bg-blue); }
.section--warm { background: var(--color-bg-warm); }
.section--gradient { background: linear-gradient(135deg, var(--color-bg-blue), var(--color-primary-light)); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  text-align: center;
}
.section__title-en {
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
  text-align: center;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: var(--space-md);
  text-align: center;
}
.section__link {
  text-align: center;
  margin-top: var(--space-xl);
}
.section__link a {
  color: var(--color-primary-dark);
  font-weight: 500;
  transition: opacity 0.3s;
}
.section__link a:hover {
  opacity: 0.7;
}

/* ===== Page Header ===== */
.page-header {
  margin-top: 72px;
  padding: var(--space-3xl) 0;
  background: var(--color-bg-blue);
  text-align: center;
}
.page-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.page-header__title-en {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  font-weight: 400;
}
.page-header__subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* ===== Cards ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__image-wrapper {
  overflow: hidden;
}
.card__image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card__image-wrapper img {
  transform: scale(1.05);
}
.card__body {
  padding: var(--space-lg);
}
.card__body i,
.card__body svg {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}
.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--line-height-body);
}
.card__price {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: var(--space-xl);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Menu Highlight (TOP) ===== */
.menu-highlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.menu-highlight__grid .card__body {
  text-align: center;
}

/* ===== EC Promo (TOP) ===== */
.ec-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.ec-promo__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.ec-promo__content .section__title {
  text-align: left;
}
.ec-promo__text-body {
  font-size: 1rem;
  color: var(--color-text-light);
}
.ec-promo__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ec-promo__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== Instagram (TOP) ===== */
/* ===== Video ===== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ===== News ===== */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}
.news-item:first-child {
  padding-top: 0;
}
.news-item__date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  min-width: 100px;
}
.news-item__title {
  font-size: 1rem;
  font-weight: 600;
}
.news-item__body {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  line-height: 1.6;
}

/* ===== CMS Menu Cards ===== */
.menu-cms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.menu-cms-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-cms-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-cms-card__image {
  overflow: hidden;
}
.menu-cms-card__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-cms-card:hover .menu-cms-card__image img {
  transform: scale(1.05);
}
.menu-cms-card__body {
  padding: var(--space-lg);
}
.menu-cms-card__name {
  font-size: 1.1rem;
  font-weight: 700;
}
.menu-cms-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-top: var(--space-xs);
}
.menu-cms-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
  line-height: 1.6;
}

/* ===== Instagram ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.instagram-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.instagram-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
}
.instagram-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.instagram-grid__item:hover img {
  transform: scale(1.05);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: var(--radius-full, 50px);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
}
.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer__logo-text {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.footer__logo-sub {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  color: var(--color-footer-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer__address {
  font-size: 0.875rem;
  color: var(--color-footer-muted);
  line-height: 1.8;
}
.footer__address a {
  color: var(--color-footer-muted);
  transition: color 0.3s;
}
.footer__address a:hover {
  color: var(--color-footer-text);
}
.footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__nav-list a {
  font-size: 0.875rem;
  color: var(--color-footer-muted);
  transition: color 0.3s;
}
.footer__nav-list a:hover {
  color: var(--color-footer-text);
}
.footer__hours {
  font-size: 0.875rem;
  color: var(--color-footer-muted);
  line-height: 2;
}
.footer__social-links {
  display: flex;
  gap: var(--space-md);
}
.footer__social-links a {
  color: var(--color-footer-muted);
  transition: color 0.3s;
}
.footer__social-links a:hover {
  color: var(--color-footer-text);
}
.footer__social-links svg {
  width: 22px; height: 22px;
}
.footer__copy {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-footer-muted);
}

/* ===== Menu Page ===== */
.menu-section {
  padding: var(--space-3xl) 0;
}
.menu-section:nth-child(even) {
  background: var(--color-bg-blue);
}
.menu-section__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.menu-section__title {
  font-size: 1.75rem;
  font-weight: 700;
}
.menu-section__title-en {
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--color-text-muted);
}
.menu-section__time {
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}
.menu-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.menu-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.menu-section__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.menu-section__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.price-table td:last-child {
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: right;
}
.menu-note {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Flavor Grid */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.flavor-card {
  text-align: center;
}
.flavor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  transition: transform 0.3s;
}
.flavor-card:hover img {
  transform: scale(1.05);
}
.flavor-card__name {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ===== Shop Page ===== */
.shop-filters {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  justify-content: center;
}
.shop-filter {
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
  cursor: pointer;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.shop-filter.active,
.shop-filter:hover {
  background: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__image-wrapper {
  overflow: hidden;
}
.product-card__image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card__image-wrapper img {
  transform: scale(1.05);
}
.product-card__body {
  padding: var(--space-lg);
}
.product-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.product-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}
.product-card__btn {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-cta);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: var(--font-body);
  text-align: center;
}
.product-card__btn:hover {
  background: var(--color-cta-hover);
}

/* Shipping Info */
.shipping-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.shipping-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.shipping-info__item svg {
  width: 40px; height: 40px;
  color: var(--color-primary-dark);
}
.shipping-info__text {
  font-size: 1rem;
  font-weight: 600;
}

/* Order Steps */
.order-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
.order-step__number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-cta);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.order-step__text {
  font-size: 0.875rem;
  font-weight: 500;
}
.order-steps__arrow {
  color: var(--color-text-muted);
}
.order-steps__arrow svg {
  width: 20px; height: 20px;
}

/* Notes */
.notes-list {
  max-width: var(--container-narrow);
  margin: var(--space-xl) auto 0;
}
.notes-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}
.notes-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ===== Access Page ===== */
.shop-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.shop-info__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.shop-info__name {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 600;
}
.shop-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  font-size: 0.9375rem;
}
.shop-info__item svg {
  color: var(--color-primary-dark);
  flex-shrink: 0;
  width: 20px; height: 20px;
}
.shop-info__note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.hours-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:first-child {
  font-weight: 500;
  width: 80px;
}
.hours-table .closed td {
  color: var(--color-accent-pink);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== About Page ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.story__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.story__content .section__title {
  text-align: left;
}
.story__content p {
  color: var(--color-text-light);
  line-height: 2;
}
.story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Kodawari Detail */
.kodawari-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}
.kodawari-detail:last-child {
  margin-bottom: 0;
}
.kodawari-detail.reverse {
  direction: rtl;
}
.kodawari-detail.reverse > * {
  direction: ltr;
}
.kodawari-detail__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.kodawari-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.kodawari-detail__content p {
  color: var(--color-text-light);
  line-height: 1.8;
}
.kodawari-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kodawari-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Staff */
.staff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.staff__image {
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.staff__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.staff__message {
  font-size: 1rem;
  color: var(--color-text-light);
  text-align: center;
}

/* Kitchen Car */
.kitchen-car {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.kitchen-car__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kitchen-car__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.kitchen-car__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.kitchen-car__content .section__title {
  text-align: left;
}
.kitchen-car__content p {
  color: var(--color-text-light);
}

/* ===== Contact Page ===== */
.contact-section {
  padding: var(--space-4xl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.form-group .required {
  color: var(--color-accent-pink);
  font-size: 0.75rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-dark);
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}
.form-success {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-blue);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-primary-dark);
  font-weight: 500;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.contact-card {
  padding: var(--space-xl);
  background: var(--color-bg-blue);
  border-radius: var(--radius-lg);
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.contact-card__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}
.contact-card__item:last-child {
  margin-bottom: 0;
}
.contact-card__item svg {
  color: var(--color-primary-dark);
  flex-shrink: 0;
  width: 20px; height: 20px;
}

/* ===== Cart Page ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.cart-table td {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.cart-item__image {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item__name { font-weight: 600; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.cart-qty__btn {
  width: 32px; height: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
}
.cart-qty__btn:hover { background: var(--color-bg-blue); }
.cart-qty__value { width: 32px; text-align: center; font-weight: 600; }
.cart-remove {
  background: none; border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.3s;
}
.cart-remove:hover { color: var(--color-accent-pink); }

/* Cart Summary */
.cart-summary {
  max-width: 400px;
  margin-left: auto;
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-blue);
  border-radius: var(--radius-lg);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
}
.cart-summary__row--total {
  border-top: 2px solid var(--color-border);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  font-size: 1.25rem;
  font-weight: 700;
}
.cart-summary .btn-primary {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
}

/* Cart Empty */
.cart-empty {
  text-align: center;
  padding: var(--space-4xl) 0;
  color: var(--color-text-muted);
}
.cart-empty svg {
  width: 48px; height: 48px;
  margin-bottom: var(--space-lg);
}
.cart-empty__text {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

/* ===== Order Success ===== */
.order-success {
  text-align: center;
  padding: var(--space-4xl) 0;
  margin-top: 72px;
}
.order-success__icon svg {
  width: 64px; height: 64px;
  color: var(--color-accent-green);
  margin-bottom: var(--space-xl);
}
.order-success__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.order-success__text,
.order-success__delivery {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.order-success__id {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--color-bg-blue);
  border-radius: var(--radius-md);
  display: inline-block;
}
.order-success .btn-primary {
  margin-top: var(--space-xl);
}

/* ===== Fade Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .grid--4,
  .menu-highlight__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .shipping-info { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 767px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__logo-mark { width: 38px; height: 38px; }
  .header__logo-main { font-size: 1.1rem; }
  .header__logo-sub { font-size: 0.5625rem; }

  .hero { height: 85vh; min-height: 500px; }
  .hero__logo { width: 80px; height: 80px; }
  .hero__brand { font-size: 1.8rem; }
  .hero__brand-sub { font-size: 0.8rem; }
  .hero__title { font-size: 1.35rem; }
  .hero__subtitle { font-size: 0.85rem; }

  .section { padding: var(--space-3xl) 0; }
  .section__title { font-size: 1.5rem; }

  .page-header { padding: var(--space-2xl) 0; }
  .page-header__title { font-size: 1.75rem; }

  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

  .menu-highlight__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  .ec-promo {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .ec-promo__image { order: -1; }

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

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-xl); }

  .menu-section__content { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }

  .shop-info { grid-template-columns: 1fr; }
  .shipping-info { grid-template-columns: 1fr; }

  .story { grid-template-columns: 1fr; }
  .story__image { order: -1; }

  .kodawari-detail { grid-template-columns: 1fr; }
  .kodawari-detail.reverse { direction: ltr; }
  .kodawari-detail__image { order: -1; }

  .kitchen-car { grid-template-columns: 1fr; }
  .kitchen-car__image { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }

  .order-steps { flex-direction: column; }
  .order-steps__arrow svg { transform: rotate(90deg); }

  .cart-table thead { display: none; }
  .cart-table tr {
    display: flex; flex-wrap: wrap;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
  }
  .cart-table td { border: none; padding: var(--space-sm); }
}
