/* ================================================
   居酒屋 秋田や - スタイルシート
   Design: Premium Japanese Izakaya
================================================ */

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

:root {
  /* Colors */
  --bg-primary: #1a1a1a;
  --bg-secondary: #222222;
  --bg-card: #2a2828;
  --bg-darker: #141414;
  --accent-gold: #c9a96e;
  --accent-gold-light: #e2c89a;
  --accent-gold-dark: #9e7a48;
  --text-primary: #f0ebe0;
  --text-secondary: #b8b0a0;
  --text-muted: #7a7268;
  --border-color: #3a3530;
  --border-gold: rgba(201, 169, 110, 0.3);

  /* Typography */
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --section-padding: 100px 24px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

/* ------------------------------------------------
   Navigation
------------------------------------------------ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(20, 18, 16, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border-gold);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-jp {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--accent-gold);
  font-weight: 400;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-reserve:hover {
  background: var(--accent-gold) !important;
  color: var(--bg-darker) !important;
}

.nav-reserve::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------------------------
   Hero Section
------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 16, 0.3) 0%,
    rgba(20, 18, 16, 0.2) 40%,
    rgba(20, 18, 16, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFade 1.2s ease-out 0.3s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-tagline-main {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title-sub-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-title-line {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.hero-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--accent-gold);
  letter-spacing: 0.3em;
  font-weight: 500;
}

.pc-only {
  display: block;
}

@media (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-darker);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 235, 224, 0.4);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* Hero Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollFade 1.2s ease-out 1.2s both;
}

@keyframes scrollFade {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
}

/* ------------------------------------------------
   Intro Banner
------------------------------------------------ */
.intro-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 24px;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.intro-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.intro-icon-line {
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 16px;
}

.intro-item p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.intro-divider {
  width: 1px;
  height: 60px;
  background: var(--border-gold);
  flex-shrink: 0;
}

/* ------------------------------------------------
   Section Common
------------------------------------------------ */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 400;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.section-line {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto;
}

/* ------------------------------------------------
   About Section
------------------------------------------------ */
.about {
  background: var(--bg-primary);
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-sub {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  border: 3px solid var(--bg-primary);
}

.about-img-sub img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-sub:hover img {
  transform: scale(1.03);
}

.about-text {
  padding-bottom: 32px;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(20, 18, 16, 0.6) 100%);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--accent-gold-light);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.3) 0%, rgba(20, 18, 16, 0.7) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
}

/* About Section - Women's facility */
.about-facility {
  margin-top: 36px;
  display: flex;
  gap: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 4px;
  align-items: center;
}

.about-facility-img-wrap {
  width: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.about-facility-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-facility:hover .about-facility-img-wrap img {
  transform: scale(1.05);
}

.about-facility-text h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-facility-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ------------------------------------------------
   Drinks Section
------------------------------------------------ */
.drinks {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.drinks-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.drinks-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 24px;
}

.drinks-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.drinks-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.drink-img-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.drink-img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.drink-img-card:hover img {
  transform: scale(1.04);
}

/* ------------------------------------------------
   Menu Section
------------------------------------------------ */
.menu-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.menu-section .section-header {
  padding: 0 24px;
}

.menu-lead {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 0 24px;
}

.menu-insta-notice {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  padding: 0 24px;
}

.insta-underline-link {
  color: var(--accent-gold-light);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.insta-underline-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--transition), background-color var(--transition);
}

.insta-underline-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(226, 200, 154, 0.4);
}

.insta-underline-link:hover::after {
  background-color: var(--text-primary);
  transform: scaleX(1);
}

.menu-scroll-container {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.menu-scroll-container:active {
  cursor: grabbing;
}

.menu-track {
  display: flex;
  gap: 20px;
  padding: 0 48px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.menu-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  background: var(--bg-card);
}

.menu-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.menu-card:hover img {
  transform: scale(1.04);
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  padding: 0 24px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--accent-gold);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.menu-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-darker);
}

.menu-dots {
  display: flex;
  gap: 8px;
}

.menu-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.menu-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* ------------------------------------------------
   Events Section
   ------------------------------------------------ */
.events {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 40px;
}

.event-card {
  background: var(--bg-primary);
  border: none;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 12px 20px;
  background: rgba(20, 18, 16, 0.4);
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.event-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 235, 224, 0.3);
  border: 1px solid var(--bg-darker);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dots .dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.event-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------
   Reservation Section
------------------------------------------------ */
.reserve {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.reserve-lead {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.reserve-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.reserve-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 28px 36px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  transition: all var(--transition);
}

.reserve-card:hover {
  border-color: var(--accent-gold);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.reserve-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.reserve-icon svg {
  width: 100%;
  height: 100%;
}

.reserve-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reserve-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.reserve-value {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ------------------------------------------------
   Access Section
------------------------------------------------ */
.access {
  background: var(--bg-primary);
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-row:first-child {
  border-top: 1px solid var(--border-color);
}

.info-row dt {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.info-row dd {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.info-row dd a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.info-row dd a:hover {
  color: var(--accent-gold);
}

.hours-row {
  display: block;
  font-size: 13px;
}

.hours-time {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-primary);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.access-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
}

.access-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(30%) brightness(0.9);
}

/* ------------------------------------------------
   Footer
------------------------------------------------ */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-gold);
  padding: 60px 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-jp {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 2;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-sep {
  color: var(--border-color);
  font-size: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ------------------------------------------------
   Animations / Reveal
------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------
   Responsive - Tablet (max 900px)
------------------------------------------------ */
@media (max-width: 900px) {
  :root {
    --section-padding: 80px 24px;
  }

  .navbar {
    padding: 18px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(20, 18, 16, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid var(--border-gold);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-img-sub {
    bottom: -24px;
    right: -16px;
  }

  .drinks-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .drinks-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .drinks-images .drink1 {
    order: 2;
  }

  .drinks-images .drink2 {
    order: 1;
  }

  .events-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .events {
    padding: 50px 24px;
  }

  .events .section-header {
    margin-bottom: 32px;
  }

  .event-card {
    padding: 18px;
  }

  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  .access-map iframe {
    height: 320px;
  }

  .menu-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 240px;
  }

  .intro-inner {
    flex-direction: column;
    gap: 32px;
  }

  .intro-divider {
    width: 60px;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }
}

/* ------------------------------------------------
   Responsive - Mobile (max 600px)
------------------------------------------------ */
@media (max-width: 600px) {
  :root {
    --section-padding: 64px 20px;
  }

  .hero-tagline-main {
    font-size: clamp(19px, 5.2vw, 24px);
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-title-sub-wrap {
    margin-bottom: 32px;
  }

  .navbar {
    padding: 16px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about {
    padding: 64px 20px;
  }

  .about-content {
    gap: 60px;
  }

  .about-facility {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-facility-img-wrap {
    width: 100%;
    max-width: 200px;
    margin-bottom: 12px;
  }

  .about-img-main img {
    height: 280px;
  }

  .about-img-sub {
    width: 52%;
    bottom: -20px;
    right: -12px;
  }

  .about-img-sub img {
    height: 130px;
  }

  .events {
    padding: 40px 20px;
  }

  .events .section-header {
    margin-bottom: 24px;
  }

  .events-container {
    gap: 20px;
  }

  .event-card {
    padding: 12px;
  }

  .access {
    padding: 64px 20px;
  }

  .drinks-content {
    padding: 0 20px;
  }

  .menu-card {
    flex: 0 0 calc(85vw);
    min-width: 260px;
  }

  .menu-track {
    padding: 0 20px;
  }

  .menu-card img {
    height: 240px;
  }

  .reserve-card {
    padding: 24px 24px;
    min-width: 100%;
  }

  .reserve-options {
    flex-direction: column;
    align-items: stretch;
  }

  .info-row {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .footer {
    padding: 40px 20px 0;
  }

  .social-links {
    flex-direction: column;
    gap: 8px;
  }
}
