:root {
  --bg: #08090d;
  --bg-soft: #12141b;
  --surface: #151922;
  --text: #f8f3ec;
  --muted: #bcb2a5;
  --accent: #f9b44f;
  --accent-strong: #ef8e37;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --glow: 0 0 18px rgba(249, 180, 79, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 142, 55, 0.14), transparent 38%),
    radial-gradient(circle at 86% 34%, rgba(249, 180, 79, 0.1), transparent 36%),
    var(--bg);
}

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

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

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.store-info-wrap {
  width: min(1400px, 96%);
}

.section-dark {
  background: linear-gradient(180deg, rgba(16, 19, 27, 0.72), rgba(12, 14, 20, 0.95));
}

.section-label {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title,
.hero h1 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.9rem, 5.6vw, 2.9rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 12px 0;
  transition: 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(6, 8, 12, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 0;
}

.nav {
  display: none;
}

.header-call {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  color: #1b1208;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  box-shadow: var(--glow);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-call:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-carousel,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(3, 5, 8, 0.42), rgba(6, 8, 12, 0.92));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #f4cf99;
}

.hero h1 {
  font-size: clamp(2.2rem, 10vw, 4.1rem);
  margin-top: 10px;
}

.hero-copy {
  margin: 0 auto 24px;
  max-width: 600px;
  color: #f0e7dc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: #1b1208;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  box-shadow: var(--glow);
}

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

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 180, 79, 0.76);
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: #dbc39c;
}

.scroll-indicator span::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 8px auto 0;
  background: linear-gradient(var(--accent), transparent);
  animation: down 1.6s ease-in-out infinite;
}

@keyframes down {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

.split-card,
.info-grid {
  display: grid;
  gap: 16px;
}

.split-card img,
.gallery-grid img,
.map-wrap iframe {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.split-card img {
  min-height: 220px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.mama-grid {
  display: grid;
  gap: 16px;
}

.mama-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(249, 180, 79, 0.35);
  object-fit: cover;
}

.mama-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.mama-text p {
  margin: 0;
}

.mama-text p + p {
  margin-top: 16px;
}

.tile {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 180, 79, 0.6);
}

.tile-icon {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.tile h3 {
  margin: 0 0 8px;
}

.gallery-carousel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 240px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
}

.panel h3 {
  margin: 0 0 10px;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
  color: #d7cebf;
}

.panel li + li {
  margin-top: 7px;
}

.info-grid .panel {
  height: 100%;
}

.store-info-layout {
  display: grid;
  gap: 18px;
}

.store-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.line-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.line-label,
.line-value {
  margin: 0;
}

.line-label {
  color: #cfac67;
  font-weight: 700;
}

.line-value {
  color: #efe6d8;
}

.contact-box {
  border: 1px solid rgba(207, 172, 103, 0.5);
  border-radius: 10px;
  padding: 18px 16px;
  background: rgba(5, 6, 10, 0.44);
}

.contact-box h3 {
  margin: 0 0 10px;
}

.panel h4 {
  margin: 0 0 8px;
  color: #e3d6c3;
  font-size: 1rem;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.hours li:last-child {
  border-bottom: 0;
}

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

.panel .tel {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #f5d6aa;
}

.btn-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #090b11;
  padding: 20px 0 96px;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  text-align: center;
}

.footer-brand {
  margin: 0;
  color: #f2e8da;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 55;
  padding: 13px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  color: #1b1208;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  box-shadow: 0 12px 30px rgba(239, 142, 55, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
  }

  .nav a {
    color: #e9ddcd;
    opacity: 0.88;
  }

  .nav a:hover {
    opacity: 1;
    color: #f7cb8b;
  }

  .split-card {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .store-info-layout {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .info-grid .map-wrap {
    grid-column: 1 / -1;
  }

  .mama-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .mama-grid img {
    max-width: 86%;
    margin: 0 auto;
  }

  .footer {
    padding-bottom: 22px;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand {
    font-size: 1.08rem;
    letter-spacing: 0.04em;
  }

  .header-call {
    padding: 9px 11px;
    font-size: 0.73rem;
  }
}
