:root {
  --gold: #917E70;
  --gold-dark: #685A50;
  --gold-light: #BFB4AC;
  --beige: #DCC9AE;
  --beige-light: #F0E6D6;
  --stone: #F4EEE3;
  --text: #3a332c;
  --text-soft: #7a6f60;
  --white: #ffffff;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --script: "Tangerine", cursive;
}

.brand-font {
  font-family: var(--script) !important;
  font-weight: 700;
  font-size: 2em !important;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
  vertical-align: -0.12em;
}

.brand-mark {
  height: 0.9em;
  width: auto;
  display: inline-block;
  vertical-align: -0.18em;
}
.marquee-track .brand-mark { height: 1.3rem; vertical-align: -0.3rem; }
.footer-copy .brand-mark { height: 0.85em; vertical-align: -0.15em; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
}

#top-notice {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 6px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(80,60,30,0.08); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 0.4s ease;
}
.site-header.is-scrolled .header-inner { padding: 8px 24px; }

.logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 24px rgba(80,60,30,0.18); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-reserve {
  background: var(--gold);
  color: var(--white);
}
.btn-reserve:hover { background: var(--gold-dark); }

.btn-primary {
  background: var(--beige);
  color: var(--text);
}
.btn-primary:hover { background: var(--beige-light); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
}

.hero-slider { position: absolute; inset: -40px; will-change: transform; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease;
  animation: kenburns 9s ease-in-out infinite alternate;
}
.hero-slide.is-active { opacity: 1; }

@keyframes kenburns {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.16); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,28,16,0.45) 0%, rgba(38,28,16,0.22) 45%, rgba(38,28,16,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.hero-eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-content h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-actions.center { justify-content: center; }

.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.9s cubic-bezier(.16,.84,.44,1) forwards;
  animation-delay: calc(var(--d) * 0.14s + 0.2s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.85;
}
.hero-scroll span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* Brand statement */
.brand-statement {
  background: var(--stone);
  padding: 90px 24px;
  text-align: center;
}
.brand-statement-inner {
  max-width: 520px;
  margin: 0 auto;
}
.brand-statement-inner img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(80,60,30,0.2);
}

/* Marquee */
.marquee {
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.menu-grid .reveal:nth-child(1) { transition-delay: 0s; }
.menu-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.menu-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.menu-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.menu-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.menu-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-anim, .marquee-track, .reveal, .btn { animation: none !important; transition: none !important; }
  .hero-anim, .reveal { opacity: 1; transform: none; }
}

/* Section generic */
section { padding: 100px 24px; }

.section-eyebrow {
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 50px;
}
.center { text-align: center; }

/* Concept */
.concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concept-image img,
.concept-image video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(80,60,30,0.14);
}
.concept-heading {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.concept-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0;
}
.concept-heading-sub {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  padding-bottom: 0.3em;
}
.concept-text p { color: var(--text-soft); margin: 0 0 18px; }

/* Company */
.company-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.company-photo img {
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(80,60,30,0.14);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.company-text .section-title { margin-bottom: 32px; }
.company-table { margin: 0; }
.company-table > div {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(80,60,30,0.15);
}
.company-table dt {
  flex: 0 0 110px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 500;
}
.company-table dd { margin: 0; font-size: 0.92rem; }
.company-table dd.tbd { color: var(--text-soft); font-style: italic; opacity: 0.7; }

/* Gallery */
.gallery {
  overflow: hidden;
  padding: 110px 24px 150px;
  background: var(--white);
}
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
}
.gallery-col-shift { margin-top: 90px; }
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(80,60,30,0.14);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 700px) {
  .gallery-col-shift { margin-top: 40px; }
  .gallery-item img { aspect-ratio: 1/1; }
}

/* Product */
.product { background: var(--stone); }
.product-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-media-main img,
.product-media-sub video {
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(80,60,30,0.16);
  width: 100%;
  display: block;
  object-fit: cover;
}
.product-media-sub video { aspect-ratio: 16/9; }
.product-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 8px 0 22px;
}
.product-lead { font-weight: 500; margin: 0 0 18px; }
.product-text p { color: var(--text-soft); margin: 0 0 18px; }
.product-note {
  font-size: 0.82rem;
  padding: 14px 18px;
  background: rgba(176,138,78,0.1);
  border-left: 2px solid var(--gold);
  color: var(--text);
}

/* Menu grid */
.menu-section { background: var(--stone); }
.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.menu-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(80,60,30,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(80,60,30,0.16);
}
.menu-card-image { aspect-ratio: 4/3; overflow: hidden; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-image img { transform: scale(1.06); }
.menu-card h3 { font-size: 1.05rem; margin: 20px 20px 8px; }
.menu-card p { font-size: 0.85rem; color: var(--text-soft); margin: 0 20px 20px; }

.menu-card-price {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.menu-card-price-inner { padding: 40px 24px; }
.menu-card-price h3 { margin: 0 0 10px; }
.menu-card-price p { color: var(--text); opacity: 0.85; font-size: 0.85rem; margin: 0 0 16px; }
.link-arrow { font-size: 0.85rem; font-weight: 500; color: var(--gold-dark); }

/* Features */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card { text-align: center; }
.feature-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(80,60,30,0.12);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.88rem; color: var(--text-soft); }

/* Shops */
.shops { background: var(--stone); }
.shop-block {
  max-width: 1200px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.shop-block:last-child { margin-bottom: 0; }
.shop-block.reverse { direction: rtl; }
.shop-block.reverse > * { direction: ltr; }
.shop-block.single { max-width: 1000px; }

.shop-info h3 { font-size: 1.4rem; margin-bottom: 24px; }
.shop-info dl { margin: 0 0 28px; }
.shop-info dl > div { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px dashed rgba(80,60,30,0.15); }
.shop-info dt { flex: 0 0 70px; color: var(--gold-dark); font-size: 0.85rem; font-weight: 500; }
.shop-info dd { margin: 0; font-size: 0.9rem; }
.shop-info a[href^="tel:"] { text-decoration: underline; }

.shop-media { display: flex; flex-direction: column; gap: 16px; }

.photo-stack { display: flex; flex-direction: column; }
.photo-stack-item {
  position: sticky;
  top: 96px;
  height: 58vh;
  min-height: 300px;
  max-height: 440px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(80,60,30,0.2);
}
.photo-stack-item:not(:last-child) { margin-bottom: 26vh; }
.photo-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-map {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 6px;
}

.shop-announce {
  max-width: 1000px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.shop-announce-photo { overflow: hidden; }
.shop-announce-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-announce-panel {
  background: var(--gold-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.shop-announce-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 14px;
}
.shop-announce-panel h3 { font-size: 1.6rem; line-height: 1.5; margin-bottom: 16px; }
.shop-announce-date { font-size: 1.2rem; letter-spacing: 0.06em; margin-bottom: 28px; opacity: 0.92; }
.shop-announce-btn { border-color: rgba(255,255,255,0.6); color: var(--white); }
.shop-announce-btn:hover { background: var(--white); color: var(--gold-dark); }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }
.cta p { opacity: 0.92; margin-bottom: 32px; }
.cta .btn-outline { border-color: var(--white); color: var(--white); }
.cta .btn-outline:hover { background: var(--white); color: var(--gold-dark); }

/* Footer */
.site-footer {
  background: #2a2016;
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
  text-align: center;
}
.footer-logo { height: 40px; width: auto; margin: 0 auto 12px; }
.footer-desc { font-size: 0.85rem; margin-bottom: 28px; }
.footer-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.75rem; opacity: 0.6; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; background: var(--white); transform: translateX(100%); transition: transform 0.3s ease; padding: 32px 24px; overflow-y: auto; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .menu-toggle { display: flex; }
  .btn-reserve { display: none; }
  .concept-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-inner { grid-template-columns: 1fr; gap: 32px; }
  .company-inner { grid-template-columns: 1fr; gap: 32px; }
  .company-photo img { aspect-ratio: 3/4; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .shop-block, .shop-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .shop-announce { grid-template-columns: 1fr; }
  .shop-announce-photo { min-height: 280px; }
  section { padding: 70px 20px; }
}

@media (max-width: 520px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero { height: 86vh; min-height: 560px; }
  .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #d8c9ae;
    animation: kenburnsMobile 9s ease-in-out infinite alternate;
  }
  .hero-overlay { background: linear-gradient(180deg, rgba(38,28,16,0.05) 0%, rgba(38,28,16,0.05) 55%, rgba(38,28,16,0.85) 100%); }
  .hero-content { justify-content: flex-end; padding-bottom: 40px; }
  @keyframes kenburnsMobile {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
  }
}
