/* ============================================================
   ほるもん まつ井 | Official Website
   style.css - Shared Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Outfit:wght@300;400;500;600&family=Yuji+Syuku&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --black:       #090909;
  --dark:        #111111;
  --dark-2:      #191919;
  --dark-3:      #222222;
  --dark-4:      #2c2c2c;
  --red:         #b82020;
  --red-bright:  #d42f2f;
  --gold:        #c9a84c;
  --gold-light:  #e2c46e;
  --white:       #f4ede4;
  --white-2:     #ddd5c9;
  --gray:        #777777;
  --gray-light:  #999999;

  --font-serif:  'Yuji Syuku', 'Noto Serif JP', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-en:     'Outfit', sans-serif;

  --nav-h:       68px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.3s;
  --t-slow:      0.65s;
  --radius:      2px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}

.nav.scrolled {
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-jp {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-brand-en {
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links li a {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-2);
  position: relative;
  padding-bottom: 5px;
  transition: color var(--t) var(--ease);
}

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

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
}

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

/* Tel */
.nav-tel {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 18px;
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
}

.nav-tel:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 44px;
  height: 44px;
  gap: 7px;
  z-index: 1100;
  padding: 2px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all var(--t) var(--ease);
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 26px; }

.hamburger.open span:nth-child(1) {
  width: 26px;
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  width: 26px;
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 9, 9, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}

.mobile-menu.active {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  transform: translateY(20px);
  transition: transform var(--t-slow) var(--ease);
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color var(--t) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-menu-links a span.en {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gray);
  text-transform: uppercase;
}

.mobile-menu-sep {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5), transparent);
}

.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-menu-tel {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white-2);
}

.mobile-menu-tel-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-align: center;
}

/* ============================================================
   Hero Section (index.html)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/%E3%82%A4%E3%83%A1%E3%83%BC%E3%82%B8%E2%91%A0.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 10s var(--ease);
  will-change: transform;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-logo {
  width: min(640px, 88vw);
  display: block;
  margin: 0 auto;
}

.hero-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  margin: 28px auto 0;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(244,237,228,0.8);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-top: 20px;
}

.hero-tagline-sub {
  font-family: var(--font-en);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-text {
  font-family: var(--font-en);
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   Shared Section Utilities
   ============================================================ */
.section {
  padding: 110px 48px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 18px;
}

.section-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red-bright);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--white);
}

.section-body {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 2.1;
  max-width: 560px;
}

.gold-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 28px 0;
}

/* ============================================================
   Concept Section (index.html)
   ============================================================ */
.concept {
  background-color: var(--dark);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.concept-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.concept-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--white-2);
  line-height: 1.75;
}

.concept-list li::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
}

.concept-img-wrap {
  position: relative;
}

.concept-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.concept-img-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 110px;
  height: 110px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}

.concept-img-badge-label {
  font-family: var(--font-en);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.concept-img-badge-text {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   Gallery Section (index.html)
   ============================================================ */
.gallery-section {
  background: var(--black);
  padding: 110px 48px;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t) var(--ease);
}

.g-item:hover .g-item-overlay {
  background: rgba(0,0,0,0.2);
}

/* Grid layout */
.g-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 5; }
.g-item:nth-child(3) { grid-column: span 5; }
.g-item:nth-child(4) { grid-column: span 4; }
.g-item:nth-child(5) { grid-column: span 4; }
.g-item:nth-child(6) { grid-column: span 4; }

/* ============================================================
   Info Bar (index.html)
   ============================================================ */
.info-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 64px 48px;
}

.info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.info-bar-item {
  background: var(--dark-2);
  padding: 40px 32px;
  text-align: center;
}

.info-bar-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.info-bar-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-bar-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-bar-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
}

.info-bar-value small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 4px;
}

/* ============================================================
   CTA Section (index.html)
   ============================================================ */
.cta-section {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/%E3%82%A4%E3%83%A1%E3%83%BC%E3%82%B8%E2%91%A1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.cta-content .section-body {
  margin: 0 auto 48px;
  text-align: center;
  max-width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 42px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,32,32,0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(244,237,228,0.25);
  color: var(--white-2);
}

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

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 48px 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}

.footer-brand-jp {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-en {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 2;
}

.footer-col-title {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--t) var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav-list a::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--dark-4);
  transition: background var(--t) var(--ease), width var(--t) var(--ease);
}

.footer-nav-list a:hover {
  color: var(--gold);
}

.footer-nav-list a:hover::before {
  background: var(--gold);
  width: 22px;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info-item {}

.footer-info-label {
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}

.footer-info-val {
  font-size: 0.9rem;
  color: var(--white-2);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.footer-ig {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  transition: color var(--t) var(--ease);
}

.footer-ig:hover {
  color: var(--gold);
}

.footer-ig svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Page Hero (menu.html / access.html)
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s var(--ease);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.45) 100%
  );
}

.page-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px;
}

.page-hero-badge {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.2;
}

.page-hero-title em {
  font-style: normal;
  color: var(--gold);
}

/* ============================================================
   Menu Page
   ============================================================ */
.menu-intro {
  background: var(--dark);
  padding: 90px 48px;
  text-align: center;
}

.menu-intro .section-inner {
  max-width: 680px;
}

.menu-intro .gold-line {
  margin: 24px auto;
}

.menu-intro .section-body {
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}

.menu-body {
  background: var(--black);
  padding: 80px 48px 120px;
}

.menu-body-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-cat {
  margin-bottom: 90px;
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-cat-num {
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--red-bright);
  flex-shrink: 0;
}

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
}

.menu-cat-title-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gray);
  text-transform: uppercase;
  margin-left: auto;
}

.menu-cat-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 32px;
}

.menu-photos {
  display: grid;
  gap: 6px;
}

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

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

.menu-photo {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.menu-photo:hover img {
  transform: scale(1.06);
}

.menu-photo-h-normal {
  height: 300px;
}

.menu-photo-h-large {
  height: 400px;
}

.menu-cta {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 48px;
  text-align: center;
}

.menu-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.menu-cta-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}

.menu-cta-body {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 36px;
}

/* ============================================================
   Access Page
   ============================================================ */
.access-body {
  background: var(--dark);
  padding: 100px 48px;
}

.access-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.access-info-head {
  margin-bottom: 50px;
}

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

.access-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.access-info-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.access-row-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 2px;
}

.access-row-val {
  font-size: 0.95rem;
  color: var(--white-2);
  line-height: 1.75;
}

.access-row-val a {
  color: var(--gold);
  transition: color var(--t) var(--ease);
}

.access-row-val a:hover {
  color: var(--gold-light);
}

.access-row-val .note {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 5px;
}

.access-map-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.access-map-title {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.access-map-wrap iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05) brightness(0.92);
}

.access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--t) var(--ease);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.15);
}

.access-map-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Notes */
.access-notes {
  background: var(--black);
  padding: 80px 48px;
}

.access-notes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.access-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 56px;
}

.access-note-card {
  background: var(--dark-2);
  padding: 40px 32px;
  border-top: 2px solid var(--red);
}

.access-note-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.access-note-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-note-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.access-note-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
}

/* Instagram section */
.ig-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 90px 48px;
  text-align: center;
}

.ig-section-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ig-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.ig-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 44px;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 50px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-2);
  transition: all var(--t) var(--ease);
}

.ig-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.ig-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ============================================================
   Responsive - Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }

  .concept-grid { gap: 56px; }
  .concept-img-wrap img { height: 420px; }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }
  .g-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .g-item:nth-child(2) { grid-column: span 3; }
  .g-item:nth-child(3) { grid-column: span 3; }
  .g-item:nth-child(4) { grid-column: span 2; }
  .g-item:nth-child(5) { grid-column: span 2; }
  .g-item:nth-child(6) { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top > *:last-child { grid-column: span 2; }

  .access-grid { gap: 50px; }
  .access-notes-grid { grid-template-columns: 1fr 1fr; }

  .page-hero-content { padding: 50px 40px; }
}

/* ============================================================
   Responsive - Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-logo { width: 90vw; }
  .hero-tagline { letter-spacing: 0.2em; }

  /* Sections */
  .section { padding: 72px 20px; }

  .concept { padding: 72px 20px; }
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept-img-wrap img { height: 320px; }
  .concept-img-badge { display: none; }

  .gallery-section { padding: 72px 20px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 4px;
  }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .g-item:nth-child(2) { grid-column: span 1; }
  .g-item:nth-child(3) { grid-column: span 1; }
  .g-item:nth-child(4) { grid-column: span 1; }
  .g-item:nth-child(5) { grid-column: span 1; }
  .g-item:nth-child(6) { grid-column: span 2; }

  .info-bar { padding: 48px 20px; }
  .info-bar-inner {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .cta-section { padding: 90px 20px; }
  .cta-bg { background-attachment: scroll; }

  .footer { padding: 60px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-top > *:last-child { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  /* Page Hero */
  .page-hero { height: 44vh; min-height: 280px; }
  .page-hero-content { padding: 36px 20px; }
  .page-hero-title { font-size: 2rem; }

  /* Menu */
  .menu-intro { padding: 64px 20px; }
  .menu-body { padding: 56px 20px 80px; }
  .menu-photos-3col,
  .menu-photos-2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-photo-h-normal { height: 210px; }
  .menu-photo-h-large  { height: 260px; }
  .menu-cta { padding: 64px 20px; }

  /* Access */
  .access-body { padding: 72px 20px; }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .access-map-wrap { position: static; }
  .access-map-wrap iframe { height: 320px; }
  .access-notes { padding: 64px 20px; }
  .access-notes-grid { grid-template-columns: 1fr; }

  .ig-section { padding: 72px 20px; }
}

/* ============================================================
   Responsive - Small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .g-item:nth-child(1),
  .g-item:nth-child(6) { grid-column: span 1; }

  .menu-photos-3col,
  .menu-photos-2col {
    grid-template-columns: 1fr;
  }
  .menu-photo-h-normal,
  .menu-photo-h-large { height: 260px; }

  .access-info-row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .btn { padding: 13px 30px; font-size: 0.72rem; }
  .ig-btn { padding: 14px 32px; }
}
