/* ─── Fonts ─── */
@font-face { font-family: 'Zen Kaku Gothic New'; font-weight: 300; src: url('../fonts/ZenKakuGothicNew-300.woff2') format('woff2'); }
@font-face { font-family: 'Zen Kaku Gothic New'; font-weight: 400; src: url('../fonts/ZenKakuGothicNew-400.woff2') format('woff2'); }
@font-face { font-family: 'Zen Kaku Gothic New'; font-weight: 600; src: url('../fonts/ZenKakuGothicNew-700.woff2') format('woff2'); }
@font-face { font-family: 'Shippori Mincho'; font-weight: 400; src: url('../fonts/ShipporiMincho-400.woff2') format('woff2'); }
@font-face { font-family: 'Shippori Mincho'; font-weight: 600; src: url('../fonts/ShipporiMincho-600.woff2') format('woff2'); }

:root {
  --bg: #111111;
  --text: #f3efe3;
  --accent-dark: #c4023e;
  --accent-light: #e8325e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(70px, 10vh, 140px) clamp(24px, 6vw, 80px);
}

.eyebrow {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: clamp(14px, 2vh, 24px);
}

h1, h2, h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: clamp(140px, 20vw, 260px);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--accent-dark), transparent); }
.divider .line:first-child { background: linear-gradient(90deg, transparent, var(--accent-dark)); }
.divider .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-dark); box-shadow: 0 0 8px rgba(196,2,62,0.8); flex-shrink: 0; }
.section-inner.center-divider .divider { margin-left: auto; margin-right: auto; }

p.lead {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: rgba(243,239,227,0.7);
  max-width: 640px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--accent-dark);
  color: var(--text);
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { background: var(--accent-dark); box-shadow: 0 0 24px rgba(196,2,62,0.5); }
.btn.btn-solid { background: var(--accent-dark); }
.btn.btn-solid:hover { background: var(--accent-light); border-color: var(--accent-light); }

/* ─── Header / Nav ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 64px);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(10px);
  padding: 14px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid rgba(243,239,227,0.08);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .brand-parent {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.85;
}
.brand .brand-name {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.04em;
}
.brand-logo {
  height: clamp(40px, 5vw, 56px);
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,239,227,0.75);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent-light);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

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

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.6) saturate(1.05);
  transform: scale(1.1);
}
.hero .bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(196,2,62,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 5% 40%, rgba(17,14,14,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 95% 40%, rgba(17,14,14,0.75) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,12,12,0.82) 0%, rgba(15,12,12,0.5) 35%, rgba(15,12,12,0.55) 65%, rgba(15,12,12,0.9) 100%);
}
.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(clamp(60px, 8vw, 130px));
  pointer-events: none;
}
.hero .orb-1 {
  width: clamp(300px, 50vw, 900px);
  height: clamp(200px, 30vw, 600px);
  bottom: -15%; left: 50%;
  background: radial-gradient(ellipse, rgba(196,2,62,0.38), transparent 68%);
  animation: orb1 11s ease-in-out infinite alternate;
}
.hero .orb-2 {
  width: clamp(200px, 35vw, 600px);
  height: clamp(150px, 28vw, 500px);
  top: -12%; left: -8%;
  background: radial-gradient(ellipse, rgba(243,239,227,0.11), transparent 65%);
  animation: orb2 13s ease-in-out infinite alternate;
}
.hero .orb-3 {
  width: clamp(200px, 35vw, 600px);
  height: clamp(150px, 28vw, 500px);
  top: -12%; right: -8%;
  background: radial-gradient(ellipse, rgba(243,239,227,0.11), transparent 65%);
  animation: orb3 13s ease-in-out infinite alternate;
}
@keyframes orb1 {
  0% { opacity: 0.55; transform: translateX(-55%) scaleX(0.85); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
  100% { opacity: 0.7; transform: translateX(-45%) scaleX(0.9); }
}
@keyframes orb2 {
  0% { opacity: 0.5; transform: scale(0.85) translate(0px, 20px); }
  100% { opacity: 1; transform: scale(1.2) translate(4vw, -1vh); }
}
@keyframes orb3 {
  0% { opacity: 1; transform: scale(1.1) translate(0px, 1vh); }
  100% { opacity: 0.45; transform: scale(0.8) translate(-4vw, 3vh); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-content .brand-parent {
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: clamp(16px, 3vh, 28px);
  opacity: 0.9;
}
.hero-logo {
  width: clamp(260px, 34vw, 480px);
  height: auto;
  margin: 0 auto;
  transform: translateX(-15px);
  filter: drop-shadow(0 2px 40px rgba(0,0,0,0.5));
  animation: glow 7s ease-in-out infinite alternate;
}
.hero-content h1 {
  font-size: clamp(42px, 8vw, 108px);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 0 80px rgba(243,239,227,0.08);
  animation: glow 7s ease-in-out infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 0 60px rgba(243,239,227,0.05); }
  to { text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 0 100px rgba(243,239,227,0.12); }
}
.hero-content .divider { margin: clamp(20px, 3vh, 32px) auto; }
.hero-content .address-line {
  font-size: clamp(11px, 1.4vw, 16px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243,239,227,0.55);
  margin-bottom: clamp(32px, 5vh, 48px);
}
.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .btn {
  width: 222px;
  text-align: center;
}

.hero .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero .particle {
  position: absolute;
  background: linear-gradient(135deg, rgba(243,239,227,0.75), rgba(232,50,94,0.4));
  border-radius: 0% 100% 0% 100%;
  box-shadow: 0 0 5px rgba(196,2,62,0.25);
  animation: fall linear 1 forwards;
  transform-origin: center;
}
@keyframes fall {
  0%   { transform: translateY(0)    translateX(0)            rotate(0deg); opacity: 0; }
  6%   { opacity: 1; }
  20%  { transform: translateY(20vh) translateX(var(--sway1)) rotate(var(--rot1)); }
  40%  { transform: translateY(42vh) translateX(var(--sway2)) rotate(var(--rot2)); }
  60%  { transform: translateY(63vh) translateX(var(--sway1)) rotate(var(--rot3)); }
  80%  { transform: translateY(85vh) translateX(var(--sway3)) rotate(var(--rot1)); }
  94%  { opacity: 0.4; }
  100% { transform: translateY(105vh) translateX(var(--drift)) rotate(var(--rot2)); opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(243,239,227,0.4));
  overflow: hidden;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  top: -50px; left: 0;
  width: 1px; height: 50px;
  background: var(--accent-light);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { top: -50px; }
  100% { top: 50px; }
}

/* ─── Generic image + text split section ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 80vh;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
}
.split-text .lead { margin-bottom: clamp(24px, 3vh, 36px); }
.split-text .details { color: rgba(243,239,227,0.6); font-size: 15px; }
.split-text .details strong { color: var(--text); font-weight: 600; }
.split-text .details p { margin-bottom: 10px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; }
  .split.reverse .split-media { order: 0; }
}

/* ─── Afterwork drinks strip ─── */
.drinks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(24px, 4vh, 40px);
}
.drink-card {
  background: rgba(243,239,227,0.04);
  border: 1px solid rgba(232,50,94,0.2);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  flex: 1 1 140px;
}
.drink-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.drink-price {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}
.drink-unit {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,239,227,0.4);
}

/* ─── Contact section ─── */
.contact {
  background: linear-gradient(180deg, #141010 0%, #0f0d0d 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-block { margin-bottom: 28px; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.contact-value {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(243,239,227,0.85);
}
.map-frame {
  border: 1px solid rgba(196,2,62,0.25);
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid rgba(243,239,227,0.08);
  padding: 40px clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(243,239,227,0.4);
}

/* ─── Menu page ─── */
.page-hero {
  position: relative;
  padding: clamp(140px, 22vh, 220px) 24px clamp(60px, 10vh, 100px);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.6) saturate(1.05);
  transform: scale(1.1);
}
.page-hero .bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(196,2,62,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15,12,12,0.82) 0%, rgba(15,12,12,0.5) 35%, rgba(15,12,12,0.55) 65%, rgba(15,12,12,0.9) 100%);
}
.page-hero .hero-content { position: relative; z-index: 2; }
.page-hero .lead { margin: 0 auto; text-align: center; }
.back-link {
  display: inline-block;
  margin-top: clamp(20px, 3vh, 32px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243,239,227,0.55);
  border-bottom: 1px solid rgba(196,2,62,0.4);
  padding-bottom: 2px;
}
.back-link:hover { color: var(--text); }

.menu-note {
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vh, 64px);
  padding: 18px 24px;
  border: 1px solid rgba(232,50,94,0.25);
  border-radius: 6px;
  background: rgba(243,239,227,0.03);
  text-align: center;
  font-size: 14px;
  color: rgba(243,239,227,0.7);
}

.menu-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px) clamp(80px, 10vh, 140px);
}

.menu-category {
  margin-bottom: clamp(48px, 7vh, 80px);
}
.menu-category-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: clamp(20px, 3vh, 32px);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(243,239,227,0.12);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(243,239,227,0.08);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-main { flex: 1; }
.menu-item-name {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text);
}
.menu-item-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(243,239,227,0.5);
  margin-top: 4px;
  line-height: 1.6;
}
.menu-item-price {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--accent-light);
  white-space: nowrap;
}
.menu-item-price .sub {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(243,239,227,0.4);
  text-align: right;
}

.menu-section-heading {
  text-align: center;
  margin: clamp(80px, 10vh, 120px) 0 clamp(40px, 6vh, 60px);
}
.menu-section-heading h2 { margin-bottom: 10px; }
.menu-section-heading .eyebrow { margin-bottom: 0; }

/* ─── Gallery grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(4px, 0.8vw, 10px);
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.gallery-item { cursor: zoom-in; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,8,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: clamp(24px, 6vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vh, 28px);
  right: clamp(14px, 3vw, 32px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,239,227,0.3);
  background: rgba(17,17,17,0.6);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Corner ornaments (reused motif) ─── */
.corner {
  position: absolute;
  width: clamp(50px, 6vw, 90px);
  height: clamp(50px, 6vw, 90px);
  pointer-events: none;
  z-index: 2;
}
.corner svg { width: 100%; height: 100%; }
.corner-tl { top: clamp(10px, 1.5vh, 22px); left: clamp(10px, 1.2vw, 22px); }
.corner-tr { top: clamp(10px, 1.5vh, 22px); right: clamp(10px, 1.2vw, 22px); transform: scaleX(-1); }

/* ─── Mobile nav ─── */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #141010;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(243,239,227,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
}
