:root {
  --primary-color: #3490dc;
  --secondary-color: #ffed4a;
  --sumi-black: #080808;
  --fire-red: #c82020;
}
/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
/* subhero */
.subhero {
  background-size: cover;
  background-position: center;
}
/* Alpine.js cloak */
[x-cloak] {
  display: none !important;
}

/* --- Added for Unique Concept: "The Horizontal Landscape" --- */
.hero-text-giant {
  font-size: 25vw;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.hero-reveal-box {
  clip-path: inset(0 100% 0 0);
  animation: reveal-right 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes reveal-right {
  to {
    clip-path: inset(0 0 0 0);
  }
}

.hero-img-float {
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.bg-sumi-gradient {
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, var(--sumi-black) 100%);
}

.text-vertical-spaced {
  writing-mode: vertical-rl;
  letter-spacing: 0.8em;
}

@keyframes progress-line {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.animate-progress {
  animation: progress-line 3s infinite;
}

/* --- New: Cinematic Monolith Styles --- */
.monolith-slit {
  clip-path: polygon(0 35%, 100% 35%, 100% 65%, 0 65%);
  transition: clip-path 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.monolith-slit:hover {
  clip-path: polygon(0 20%, 100% 20%, 100% 80%, 0 80%);
}
.text-stroke-thin {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}
.vertical-title-mask {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.glitch-hover:hover {
  animation: glitch 0.3s linear infinite;
}
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Extracted from Templates */
/* From ./parts/index-hero.html */

.hero-cinematic {
  height: 100vh;
  background-color: var(--sumi-black);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景の静かなタイポ */
.hero-bg-branding {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 1;
}

/* メインのスリットビジュアル */
.slit-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slit-image-wrapper {
  width: 110%;
  height: 110%;
  position: absolute;
  filter: saturate(0.8) contrast(1.2);
}

/* 文字情報の絶対配置レイヤー */
.hero-ui-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  padding: 60px;
}

/* 縦書きの巨大な見出し */
.main-vertical-title {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.scroll-line-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 15vh;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.scroll-line-active {
  width: 100%;
  height: 40%;
  background: var(--fire-red);
  animation: scroll-move 2s infinite;
}
@keyframes scroll-move {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}

/* From ./parts/index-concept.html */

.concept-section {
  background-color: #111111;
  position: relative;
  overflow: hidden;
}

/* 独楽繋ぎ（Komatsunagi）紋様の背景装飾 */
.concept-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.568 0 30 13.432 30 30S46.568 60 30 60 0 46.568 0 30 13.432 0 30 0zm0 10C18.954 10 10 18.954 10 30s8.954 20 20 20 20-8.954 20-20S41.046 10 30 10z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}

.concept-image-wrapper {
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.concept-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #e63946;
  z-index: -1;
}

.concept-title-en {
  color: #e63946;
  letter-spacing: 0.3em;
}

.concept-accent-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #e63946, transparent);
}

/* From ./parts/index-menu.html */

/* 
   * UNIQUE CONCEPT: "THE CINEMATIC SCROLL" 
   * 水平・垂直の交差と「視差（パララックス）」を強調したダイナミックな構成。
   */
.menu-cinematic-container {
  background: #050505;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* 巨大なストロークテキストの背景 */
.menu-outline-text {
  position: absolute;
  font-size: 25vw;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  color: transparent;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  text-transform: uppercase;
}

/* 画面を分割するスプリットレイアウト */
.menu-split-row {
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 10;
}

.menu-split-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* 浮遊するメイン画像 */
.floating-image-box {
  width: 60%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.floating-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-split-row:hover .floating-image-box img {
  transform: scale(1.05);
}

/* テキストブロックのオーバーレイ */
.menu-info-overlay {
  width: 45%;
  margin-left: -10%;
  padding: 4rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-left: 2px solid #e63946;
  z-index: 20;
  position: relative;
}

.menu-split-row:nth-child(even) .menu-info-overlay {
  margin-left: 0;
  margin-right: -10%;
  border-left: none;
  border-right: 2px solid #f4a261;
}

/* 数字のデコレーション */
.item-number {
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -2rem;
  left: 2rem;
  opacity: 0.1;
  font-style: italic;
}

/* インタラクション用ボタン */
.hover-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e63946;
  overflow: hidden;
}

.hover-reveal-btn::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #e63946;
  transition: width 0.4s ease;
}

.menu-split-row:hover .hover-reveal-btn::after {
  width: 100px;
}

@media (max-width: 1024px) {
  .menu-split-row,
  .menu-split-row:nth-child(even) {
    flex-direction: column;
    min-height: auto;
    margin-bottom: 8rem;
  }
  .floating-image-box,
  .menu-info-overlay {
    width: 100%;
    margin: 0;
  }
  .menu-info-overlay {
    padding: 2rem;
    margin-top: -2rem;
  }
}

/* From ./parts/index-drinks.html */

.drink-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.drink-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
}

/* From ./parts/index-access.html */

.access-section {
  background-color: #080808;
  color: #ffffff;
  position: relative;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: grayscale(1) invert(0.9) contrast(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.info-card {
  background: #121212;
  padding: 3.5rem;
  border-left: 1px solid var(--fire-red);
}
.info-label {
  font-family: 'Playfair Display', serif;
  color: var(--fire-red);
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
}
.info-value {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}
.contact-number {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
}
