/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  background: #1a1a18;
  color: #fff;
  overflow-x: hidden;
}

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

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  width: 100vw;
  height: calc(100vh - 48px);
  overflow: hidden;
}

/* ============================
   Slideshow
   ============================ */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide--active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================
   Overlay
   ============================ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(30, 30, 25, 0.55) 0%,
    rgba(30, 30, 25, 0.15) 45%,
    rgba(30, 30, 25, 0.08) 70%,
    rgba(30, 30, 25, 0.30) 100%
  );
  animation: hero-fade 2.4s ease 0.2s both;
}

/* ============================
   Logo
   ============================ */
.hero__logo {
  position: absolute;
  top: 48px;
  left: 52px;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.logo__main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo__sub {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo__jp {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  writing-mode: horizontal-tb;
  line-height: 1.7;
}

.logo__en {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ============================
   Navigation
   ============================ */
.hero__nav {
  position: absolute;
  bottom: 60px;
  left: 52px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.nav__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-bottom: 8px;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 0;
  padding-right: 8px;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav__list li a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
  display: block;
}

.nav__list li a:hover {
  color: #fff;
  letter-spacing: 0.3em;
}

/* ============================
   Catchcopy (vertical Japanese text)
   ============================ */
.hero__catch {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 10;
}

.hero__catch p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

/* ============================
   Online Shop Button
   ============================ */
.hero__shop-btn {
  position: absolute;
  bottom: 60px;
  right: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 20px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero__shop-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.9);
}

/* ============================
   Social
   ============================ */
.hero__social {
  position: absolute;
  bottom: 66px;
  right: 56px;
  z-index: 10;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.hero__social:hover {
  opacity: 1;
}

/* ============================
   Slide Indicators
   ============================ */
.hero__indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}

.indicator--active {
  background: #fff;
  width: 48px;
}

/* ============================
   Hero Entrance Animations
   ============================ */

@keyframes hero-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ken-burns {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}

/* easing shared */
:root {
  --ease-out-quart: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slideshow image: Ken Burns */
.slide--active img {
  animation: ken-burns 10s var(--ease-out-quart) both;
}

/* Logo: line-by-line fade */
.logo__line {
  display: block;
}
.logo__line:nth-child(1) { animation: hero-fade 1.8s ease 0.5s  both; }
.logo__line:nth-child(2) { animation: hero-fade 1.8s ease 0.75s both; }
.logo__line:nth-child(3) { animation: hero-fade 1.8s ease 1.0s  both; }
.logo__line:nth-child(4) { animation: hero-fade 1.8s ease 1.25s both; }

.logo__sub {
  animation: hero-fade 1.8s ease 1.7s both;
}

/* Catchcopy: line-by-line fade */
.catch__line {
  display: block;
}
.catch__line:nth-child(1) { animation: hero-fade 1.8s ease 0.8s  both; }
.catch__line:nth-child(2) { animation: hero-fade 1.8s ease 1.1s both; }

/* Nav label */
.nav__label {
  animation: hero-fade 1.4s ease 1.1s both;
}

/* Nav items: stagger */
.nav__list li:nth-child(1) { animation: hero-up 1.0s var(--ease-out-quart) 0.9s  both; }
.nav__list li:nth-child(2) { animation: hero-up 1.0s var(--ease-out-quart) 1.05s both; }
.nav__list li:nth-child(3) { animation: hero-up 1.0s var(--ease-out-quart) 1.2s  both; }
.nav__list li:nth-child(4) { animation: hero-up 1.0s var(--ease-out-quart) 1.35s both; }
.nav__list li:nth-child(5) { animation: hero-up 1.0s var(--ease-out-quart) 1.5s  both; }

/* Shop button */
.hero__shop-btn {
  animation: hero-fade 1.8s ease 1.4s both;
}

/* Social icon */
.hero__social {
  animation: hero-fade 1.8s ease 1.6s both;
}

/* Slide indicators */
.hero__indicators {
  animation: hero-fade 1.4s ease 1.8s both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo__main, .logo__jp, .logo__en,
  .hero__catch p, .nav__label,
  .nav__list li, .hero__shop-btn,
  .hero__social, .hero__indicators,
  .slide--active img {
    animation: hero-fade 0.6s ease both;
  }
}

/* ============================
   SHOP Section
   ============================ */
.shop {
  background: #f2ede5;
  color: #2a2620;
  padding-bottom: 0;
}

.shop__header {
  text-align: center;
  padding: 100px 40px 72px;
}

.shop__label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: #9a8c7e;
  margin-bottom: 18px;
}

.shop__divider {
  width: 32px;
  height: 1px;
  background: #c8b89a;
  margin: 0 auto 36px;
}

.shop__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #1e1c18;
  margin-bottom: 14px;
}

.shop__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #9a8c7e;
}

/* Grid */
.shop__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  grid-template-rows: 46vw 30vw;
  gap: 3px;
}

.shop__cell {
  position: relative;
  overflow: hidden;
  background: #e0d8cc;
}

.shop__cell--tall {
  grid-row: 1 / 3;
}

.shop__cell--wide {
  grid-column: 2 / 4;
}

.shop__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop__cell:hover img {
  transform: scale(1.04);
}

.shop__cell-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  pointer-events: none;
}

.shop__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 40%);
  pointer-events: none;
}

/* Info bar */
.shop__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 60px 5vw 72px;
  background: #f2ede5;
}

.shop__info-block {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.shop__info-block dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #9a8c7e;
  margin-bottom: 14px;
}

.shop__info-block dd {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #2a2620;
}

.shop__info-block small {
  font-size: 12px;
  color: #9a8c7e;
}

.shop__info-sep {
  width: 1px;
  height: 60px;
  background: #c8b89a;
  flex-shrink: 0;
}

/* ============================
   TOPICS Section
   ============================ */
.topics {
  background: #1e1c18;
  color: #f0ebe3;
  padding: 100px 0 96px;
}

.topics__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.topics__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.topics__header-left {
  display: flex;
  flex-direction: column;
}

.topics__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: #7a6e60;
  margin-bottom: 16px;
}

.topics__divider {
  width: 32px;
  height: 1px;
  background: #4a4438;
  margin-bottom: 28px;
}

.topics__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.1em;
  color: #f0ebe3;
  margin-bottom: 8px;
}

.topics__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #5a4e42;
}

.topics__all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.38em;
  color: #7a6e60;
  padding-bottom: 4px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.topics__all:hover {
  color: #c8b89a;
  gap: 18px;
}

/* List */
.topics__list {
  list-style: none;
  border-top: 1px solid #2e2c27;
}

.topics__item {
  border-bottom: 1px solid #2e2c27;
}

.topics__item a {
  display: grid;
  grid-template-columns: 200px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.topics__item a:hover {
  padding-left: 16px;
  padding-right: 0;
  margin-left: -16px;
}

.topics__item a:hover .topics__title {
  color: #f0ebe3;
}

.topics__item a:hover .topics__arrow {
  color: #c8b89a;
  transform: translateX(4px);
}

.topics__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topics__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #6a5e50;
  white-space: nowrap;
}

.topics__cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.topics__cat--new {
  background: #c8b89a;
  color: #1e1c18;
}

.topics__cat--info {
  border: 1px solid #4a4438;
  color: #7a6e60;
}

.topics__cat--event {
  border: 1px solid #5a6a4a;
  color: #8a9a7a;
}

.topics__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #a09080;
  transition: color 0.25s ease;
}

.topics__arrow {
  color: #4a4438;
  display: flex;
  align-items: center;
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

/* ============================
   Footer
   ============================ */
.footer {
  background: #111009;
  color: #f0ebe3;
  padding-bottom: 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding: 80px 7vw 64px;
  border-bottom: 1px solid #252320;
}

/* Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #f0ebe3;
  margin-bottom: 4px;
}

.footer__tagline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #6a5e50;
}

.footer__copy-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #4a4038;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer__socials a {
  color: #5a5048;
  transition: color 0.25s ease;
}

.footer__socials a:hover {
  color: #c8b89a;
}

/* Nav */
.footer__nav {
  display: flex;
  gap: 48px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  color: #5a5048;
  margin-bottom: 6px;
}

.footer__nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #8a7e70;
  transition: color 0.2s ease;
}

.footer__nav-col a:hover {
  color: #f0ebe3;
}

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #7a6e60;
}

/* Bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 0;
}

.footer__copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #3a3530;
}

.footer__legal {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #3a3530;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #7a6e60;
}

/* ============================
   Bottom Bar
   ============================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: rgba(40, 44, 36, 0.97);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 24px;
}

.bottom-bar__news {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  overflow: hidden;
}

.bottom-bar__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.bottom-bar__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-bar__info {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.bottom-bar__info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}

.bottom-bar__info svg {
  opacity: 0.7;
  flex-shrink: 0;
}


/* ============================
   MENU Section v2 (carousel)
   ============================ */
.menu2 {
  background: #1a1916;
  color: #f0ebe3;
  padding: 72px 0 88px;
  overflow: hidden;
}

.menu2__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 7vw 44px;
}

.menu2__heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: #f0ebe3;
}

.menu2__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #5a5048;
}

.menu2__current {
  color: #f0ebe3;
}

.menu2__line {
  display: block;
  width: 28px;
  height: 1px;
  background: #4a4438;
}

/* Track */
.menu2__track {
  display: flex;
  gap: 20px;
  padding: 0 7vw 0 clamp(48px, 10vw, 140px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.menu2__track.is-dragging {
  cursor: grabbing;
}

.menu2__track::-webkit-scrollbar {
  display: none;
}

/* Card */
.menu2__card {
  flex: 0 0 clamp(260px, 27vw, 380px);
  display: flex;
  flex-direction: column;
}

.menu2__card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #7a6e60;
  margin-bottom: 14px;
}

.menu2__card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #2a2820;
}

.menu2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.menu2__card:hover .menu2__card-img img {
  transform: scale(1.05);
}

.menu2__card-desc {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #6a5e50;
  margin-bottom: 20px;
  flex: 1;
}

.menu2__card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #c8b89a;
  margin-top: auto;
}

.menu2__bottom {
  text-align: center;
  padding-top: 60px;
}

.menu2__view-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #6a5e50;
  transition: color 0.3s ease, gap 0.3s ease;
}

.menu2__view-more:hover {
  color: #f0ebe3;
  gap: 26px;
}

/* ============================
   MENU Section
   ============================ */
.menu {
  background: #1e1c18;
  color: #f0ebe3;
  padding: 100px 0 80px;
}

.menu__header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 72px;
}

.menu__label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: #7a6e60;
  margin-bottom: 18px;
}

.menu__divider {
  width: 32px;
  height: 1px;
  background: #4a4438;
  margin: 0 auto 36px;
}

.menu__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #f0ebe3;
  margin-bottom: 14px;
}

.menu__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #6a5e50;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.menu__item {
  position: relative;
  background: #171512;
}

.menu__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.menu__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu__item:hover .menu__photo img {
  transform: scale(1.06);
}

.menu__num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

.menu__text {
  padding: 28px 32px 36px;
  border-top: 1px solid #2a2720;
}

.menu__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.menu__name-jp {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #f0ebe3;
}

.menu__name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #6a5e50;
}

.menu__desc {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: #8a7e70;
  margin-bottom: 20px;
}

.menu__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #c8b89a;
}

.menu__footer {
  text-align: center;
  padding-top: 72px;
}

.menu__more {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #6a5e50;
  transition: color 0.3s ease, gap 0.3s ease;
}

.menu__more:hover {
  color: #c8b89a;
  gap: 28px;
}

/* ============================
   About Intro Section
   ============================ */
.about-intro {
  background: #f7f3ed;
  text-align: center;
  padding: 96px 40px 112px;
  position: relative;
  overflow: hidden;
}

.about-intro__bg {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 14vw, 180px);
  letter-spacing: 0.18em;
  color: rgba(180, 165, 145, 0.22);
  line-height: 1;
  margin-bottom: 52px;
  user-select: none;
}

.about-intro__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: 0.32em;
  color: #2a2620;
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-intro__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #a09080;
}

/* ============================
   OUR STORY Section
   ============================ */
.story {
  background: #f7f3ed;
  color: #2a2620;
  padding-bottom: 80px;
}

.story__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 80vh;
}

.story__image {
  position: relative;
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.story__image:hover img {
  transform: scale(1.03);
}

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.story__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #9a8c7e;
  display: block;
  margin-bottom: 20px;
}

.story__divider {
  width: 32px;
  height: 1px;
  background: #c8b89a;
  margin-bottom: 36px;
}

.story__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #1e1c18;
  margin-bottom: 14px;
}

.story__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #9a8c7e;
  margin-bottom: 40px;
}

.story__body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #4a4540;
  margin-bottom: 52px;
}

.story__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #6b5e50;
  transition: color 0.25s ease, gap 0.25s ease;
}

.story__link:hover {
  color: #2a2620;
  gap: 20px;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
  html, body {
    overflow: auto;
  }

  .hero {
    height: 100svh;
    height: 100vh;
  }

  .hero__logo {
    top: 28px;
    left: 24px;
    gap: 14px;
  }

  .logo__main {
    font-size: 44px;
  }

  .logo__jp {
    display: block;
  }

  .hero__nav {
    bottom: calc(48px + 24px);
    left: 24px;
  }

  .hero__catch {
    right: 20px;
  }

  .hero__catch p {
    font-size: clamp(28px, 7vw, 36px);
  }

  .hero__shop-btn {
    bottom: calc(48px + 24px);
    right: 20px;
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero__social {
    display: none;
  }

  .bottom-bar {
    padding: 0 20px;
    gap: 12px;
  }

  .bottom-bar__info {
    display: none;
  }

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

  .shop__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 56vw 56vw 56vw;
  }

  .shop__cell--tall {
    grid-row: auto;
    grid-column: 1 / 3;
  }

  .shop__cell--wide {
    grid-column: 1 / 3;
  }

  .shop__info {
    flex-direction: column;
    gap: 36px;
    padding: 52px 32px;
  }

  .shop__info-sep {
    width: 60px;
    height: 1px;
  }

  .shop__info-block {
    padding: 0;
  }

  .topics {
    padding: 72px 0 64px;
  }

  .topics__inner {
    padding: 0 24px;
  }

  .topics__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
  }

  .topics__item a {
    grid-template-columns: 1fr 24px;
    gap: 16px;
  }

  .topics__meta {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .topics__title {
    grid-column: 1 / 2;
    grid-row: 2;
    font-size: 13px;
  }

  .topics__arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 28px 48px;
  }

  .footer__nav {
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 28px 28px 0;
  }

  .menu {
    padding: 72px 0 60px;
  }

  .menu__text {
    padding: 22px 24px 28px;
  }

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

  .story__image {
    height: 60vw;
    min-height: 260px;
  }

  .story__content {
    padding: 52px 28px;
  }
}
