@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: "Cormorant Garamond", serif;
  color: #333333;
  background-color: #f5f0e1;
  line-height: 1.6;
  overflow-x: hidden;
}
body.loading {
  overflow: hidden;
}
body[data-lang=ja] {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
body[data-lang=ja] .en {
  display: none;
}
body[data-lang=ja] .ja {
  display: inline;
}
body[data-lang=ja] h1, body[data-lang=ja] h2, body[data-lang=ja] h3, body[data-lang=ja] h4, body[data-lang=ja] h5, body[data-lang=ja] h6, body[data-lang=ja] p, body[data-lang=ja] a, body[data-lang=ja] button, body[data-lang=ja] input, body[data-lang=ja] textarea, body[data-lang=ja] select, body[data-lang=ja] label, body[data-lang=ja] li, body[data-lang=ja] span, body[data-lang=ja] small, body[data-lang=ja] strong, body[data-lang=ja] b, body[data-lang=ja] .ja {
  font-family: "Zen Old Mincho", serif !important;
}
body[data-lang=ja] h1, body[data-lang=ja] h2, body[data-lang=ja] h3, body[data-lang=ja] h4, body[data-lang=ja] h5, body[data-lang=ja] h6, body[data-lang=ja] strong, body[data-lang=ja] b {
  font-weight: 600;
}
body[data-lang=ja] i.fas, body[data-lang=ja] i.far, body[data-lang=ja] i.fab, body[data-lang=ja] i.fa, body[data-lang=ja] .fa, body[data-lang=ja] .fas, body[data-lang=ja] .far, body[data-lang=ja] .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
body[data-lang=en] {
  font-family: "Cormorant Garamond", serif;
}
body[data-lang=en] .ja {
  display: none;
}
body[data-lang=en] .en {
  display: inline;
}
body[data-lang=en] h1, body[data-lang=en] h2, body[data-lang=en] h3, body[data-lang=en] h4, body[data-lang=en] h5, body[data-lang=en] h6 {
  font-family: "Cinzel", serif;
}

.en {
  display: none;
}

.ja {
  display: inline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}

p {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1rem;
}

a {
  color: #1a472a;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #2d6a4f;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d2818;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.loader .loader-logo {
  display: block;
  width: 280px;
  height: auto;
  object-fit: contain;
  color: #d4af37;
  animation: loaderLogoSpin 10s linear infinite;
}
@media (max-width: 767px) {
  .loader .loader-logo {
    width: 50vw;
  }
}
.loader .loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
  border-radius: 9999px;
  overflow: hidden;
}
.loader .loader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: #d4af37;
  animation: loading 1.5s ease forwards;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes loaderLogoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 1.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1.5rem;
}
.header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo .logo-img {
  height: 25px;
  width: auto;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .logo .logo-img {
    height: 30px;
  }
}
.logo:hover .logo-img {
  opacity: 0.8;
}

.header.scrolled .logo-img {
  height: 26px;
}

.nav {
  display: none;
}
@media (min-width: 768px) {
  .nav {
    display: block;
  }
}
.nav .nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav .nav-link {
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  position: relative;
}
.nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}
.nav .nav-link:hover, .nav .nav-link.active {
  color: #d4af37;
}
.nav .nav-link:hover::after, .nav .nav-link.active::after {
  width: 100%;
}

.lang-toggle {
  display: none;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .lang-toggle {
    display: flex;
  }
}
.lang-toggle .lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.lang-toggle .lang-btn:hover, .lang-toggle .lang-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #1a1a1a;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav.mobile-open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav.mobile-open .nav-list {
  flex-direction: column;
  text-align: center;
  gap: 3rem;
}
.nav.mobile-open .nav-link {
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 15, 0, 0.85) 0%, rgba(139, 69, 19, 0.7) 50%, rgba(212, 175, 55, 0.6) 100%), url("../img/mv_back.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}
.particle:nth-child(1) {
  left: 55%;
  top: 63%;
  animation-delay: 7s;
  animation-duration: 13s;
}
.particle:nth-child(2) {
  left: 32%;
  top: 48%;
  animation-delay: 9s;
  animation-duration: 16s;
}
.particle:nth-child(3) {
  left: 51%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 12s;
}
.particle:nth-child(4) {
  left: 2%;
  top: 77%;
  animation-delay: 5s;
  animation-duration: 15s;
}
.particle:nth-child(5) {
  left: 34%;
  top: 81%;
  animation-delay: 4s;
  animation-duration: 18s;
}
.particle:nth-child(6) {
  left: 1%;
  top: 81%;
  animation-delay: 3s;
  animation-duration: 14s;
}
.particle:nth-child(7) {
  left: 63%;
  top: 4%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.particle:nth-child(8) {
  left: 69%;
  top: 23%;
  animation-delay: 3s;
  animation-duration: 12s;
}
.particle:nth-child(9) {
  left: 42%;
  top: 95%;
  animation-delay: 8s;
  animation-duration: 15s;
}
.particle:nth-child(10) {
  left: 82%;
  top: 18%;
  animation-delay: 9s;
  animation-duration: 14s;
}
.particle:nth-child(11) {
  left: 100%;
  top: 10%;
  animation-delay: 1s;
  animation-duration: 20s;
}
.particle:nth-child(12) {
  left: 86%;
  top: 93%;
  animation-delay: 3s;
  animation-duration: 19s;
}
.particle:nth-child(13) {
  left: 29%;
  top: 84%;
  animation-delay: 10s;
  animation-duration: 20s;
}
.particle:nth-child(14) {
  left: 57%;
  top: 41%;
  animation-delay: 2s;
  animation-duration: 17s;
}
.particle:nth-child(15) {
  left: 29%;
  top: 96%;
  animation-delay: 4s;
  animation-duration: 15s;
}
.particle:nth-child(16) {
  left: 91%;
  top: 16%;
  animation-delay: 7s;
  animation-duration: 14s;
}
.particle:nth-child(17) {
  left: 29%;
  top: 5%;
  animation-delay: 8s;
  animation-duration: 20s;
}
.particle:nth-child(18) {
  left: 50%;
  top: 37%;
  animation-delay: 4s;
  animation-duration: 16s;
}
.particle:nth-child(19) {
  left: 95%;
  top: 82%;
  animation-delay: 3s;
  animation-duration: 16s;
}
.particle:nth-child(20) {
  left: 96%;
  top: 45%;
  animation-delay: 5s;
  animation-duration: 20s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.2;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 800px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.status-badge .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
.status-badge.closed .status-dot {
  background: #ef4444;
  animation: none;
}
.status-badge .status-text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.875rem;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}
.hero-title {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-title {
    margin-bottom: 2rem;
  }
}
.hero-title .hero-logo-mark {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .hero-title .hero-logo-mark {
    max-width: 400px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .hero-title .hero-logo-mark {
    max-width: 430px;
  }
}
.hero-title .title-sub {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #d4af37;
  margin-top: 1rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.grand-open-badge {
  position: absolute;
  bottom: 10px;
  right: 5%;
  z-index: 1;
  animation: badgeFloat 4s infinite ease-in-out;
}
@media (min-width: 768px) {
  .grand-open-badge {
    bottom: 160px;
    right: 8%;
  }
}
.grand-open-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: rgba(249, 229, 134, 0.5);
  border-radius: 2.5rem;
  z-index: -1;
  animation: badgePulse 3s infinite;
}
.grand-open-badge .badge-content {
  position: relative;
  background: linear-gradient(135deg, #f9e586 0%, #d4af37 45%, #b8860b 55%, #8b6508 100%);
  color: #1a0f00;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.5);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
@media (min-width: 768px) {
  .grand-open-badge .badge-content {
    padding: 1.2rem 2.2rem;
  }
}
.grand-open-badge .badge-content::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.6) 50%, transparent 55%);
  animation: badgeShimmer 6s infinite;
}
.grand-open-badge .badge-content .tail {
  position: absolute;
  bottom: -12px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid #8b6508;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
}
.grand-open-badge .badge-content .clover {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.8rem;
  opacity: 0.5;
}
.grand-open-badge .badge-content span {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.grand-open-badge .badge-content .ja {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .grand-open-badge .badge-content .ja {
    font-size: 1.35rem;
  }
}
.grand-open-badge .badge-content .en {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 4px;
}
@media (min-width: 768px) {
  .grand-open-badge .badge-content .en {
    font-size: 0.75rem;
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}
@keyframes badgePulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes badgeShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  20% {
    transform: translateX(100%) translateY(100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}
body[data-lang=ja] .hero-title .title-sub.ja {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.6);
  background: rgba(26, 71, 42, 0.88);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  width: fit-content;
  max-width: min(92vw, 42rem);
}
@media (max-width: 767px) {
  body[data-lang=ja] .hero-title .title-sub.ja {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.07em;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #d4af37;
  color: #1a1a1a;
}
.btn-primary:hover {
  background: #f0d78c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.btn-directions {
  background: #1a472a;
  color: #ffffff;
  padding: 1.5rem 3rem;
}
.btn-directions:hover {
  background: #2d6a4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s infinite;
  z-index: 2;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}
.scroll-indicator .scroll-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(6px);
  }
}
.section {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

.section-label {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 0.875rem;
  color: #1a472a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: "—";
  margin: 0 1rem;
  color: #d4af37;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #666666;
}
.section-title span {
  display: block;
}
.section-title span.en {
  font-size: 0.8em;
  color: inherit;
  font-weight: 400;
}

.section-description {
  color: #666666;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-section {
  background: #f5f0e1;
  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 0C30 16.5685 16.5685 30 0 30c16.5685 0 30 13.4315 30 30 0-16.5685 13.4315-30 30-30C43.4315 30 30 16.5685 30 0z' fill='%231a472a' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.menu-grid-wrap {
  position: relative;
  overflow: visible;
}

.menu-coming-soon {
  position: absolute;
  inset: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
}
.menu-coming-soon .menu-coming-soon-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 50%, #fde68a 100%);
  color: #854d0e;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.04), 4px 6px 12px rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
}
.menu-coming-soon .menu-coming-soon-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #fde68a transparent transparent;
  border-radius: 0 2px 0 0;
  box-shadow: 2px -1px 3px rgba(0, 0, 0, 0.06);
}
.menu-coming-soon .menu-coming-soon-text .ja,
.menu-coming-soon .menu-coming-soon-text .en {
  display: block !important;
}
.menu-coming-soon .menu-coming-soon-text .ja {
  font-size: 1rem;
  font-weight: 600;
}
.menu-coming-soon .menu-coming-soon-text .en {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.menu-card:hover .menu-card-image::after {
  opacity: 0.3;
}

.menu-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
}
.menu-image-placeholder.guinness {
  background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
}
.menu-image-placeholder.kilkenny {
  background: linear-gradient(135deg, #8b0000 0%, #cd5c5c 100%);
}
.menu-image-placeholder.fish {
  background: linear-gradient(135deg, #1e3a5f 0%, #4a90a4 100%);
}
.menu-image-placeholder.pie {
  background: linear-gradient(135deg, #8b4513 0%, #cd853f 100%);
}
.menu-image-placeholder.whiskey {
  background: linear-gradient(135deg, #d4a574 0%, #c68642 100%);
}
.menu-image-placeholder.bread {
  background: linear-gradient(135deg, #e8d4a0 0%, #d4b896 100%);
  color: #8b4513;
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d4af37;
  color: #1a1a1a;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-family: "Cinzel", serif;
  border-radius: 9999px;
  font-weight: 600;
  z-index: 1;
}

.menu-card-content {
  padding: 1.5rem;
}

.menu-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0d2818;
}

.menu-description {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.menu-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.menu-price .price {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  color: #1a472a;
  font-weight: 600;
}
.menu-price .size {
  font-size: 0.75rem;
  color: #666666;
}

.menu-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  font-size: 200px;
  opacity: 0.03;
  pointer-events: none;
}

.info-section {
  position: relative;
  background: #0a1c0a;
  color: #e8e2c8;
  overflow: hidden;
  padding: 5rem 0;
}
.info-section .section-label {
  color: #d4af37;
}
.info-section .section-title {
  color: rgba(232, 226, 200, 0.7);
}
.info-section .section-title span.en {
  color: inherit;
}
.info-section .section-description {
  color: rgba(232, 226, 200, 0.8);
}
.info-section .info-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/info_back.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}
.info-section .info-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 41, 17, 0.7);
  z-index: 1;
}
.info-section .info-decorative-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 5C25.1 5 5 25.1 5 50s20.1 45 45 45 45-20.1 45-45S74.9 5 50 5zm0 85C27.9 90 10 72.1 10 50S27.9 10 50 10s40 17.9 40 40-17.9 40-40 40z' fill='%23d4af37' fill-opacity='0.1'/%3E%3Cpath d='M50 20c-16.6 0-30 13.4-30 30s13.4 30 30 30 30-13.4 30-30-13.4-30-30-30zm0 55c-13.8 0-25-11.2-25-25s11.2-25 25-25 25 11.2 25 25-11.2 25-25 25z' fill='%23d4af37' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.info-section .info-decorative-pattern.top {
  top: -50px;
  right: -50px;
  transform: rotate(15deg);
}
.info-section .info-decorative-pattern.bottom {
  bottom: -50px;
  left: -50px;
  transform: rotate(-15deg);
}
.info-section .container {
  position: relative;
  z-index: 2;
}

.info-line-block {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.info-line-inner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(6, 199, 85, 0.35);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.info-line-inner:hover {
  border-color: rgba(6, 199, 85, 0.6);
  box-shadow: 0 0 24px rgba(6, 199, 85, 0.15);
}

.info-line-copy {
  font-size: 1.05rem;
  color: rgba(232, 226, 200, 0.95);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.info-line-campaign {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.2);
  color: #f0d78c;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.info-line-campaign strong {
  font-weight: 700;
}

.info-line-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.info-line-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.info-line-qr-wrap .info-line-qr {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
}
.info-line-qr-wrap .info-line-qr-caption {
  font-size: 0.8rem;
  color: rgba(232, 226, 200, 0.7);
}

.info-line-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.info-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: #06C755;
  color: #ffffff !important;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-line-btn .ja, .info-line-btn .en {
  color: #ffffff !important;
}
.info-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
}
.info-line-btn:active {
  transform: translateY(0);
}
.info-line-btn i.fab.fa-line {
  font-size: 1.4rem;
}

.info-line-note {
  font-size: 0.8rem;
  color: rgba(232, 226, 200, 0.65);
  margin: 0;
}

@media (min-width: 768px) {
  .info-line-body {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
.info-content-wrapper {
  margin-top: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: calc(16px - 5px);
  pointer-events: none;
}
.info-card::after {
  content: "☘";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.8rem;
  color: rgba(212, 175, 55, 0.3);
}
.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.info-card:hover .info-icon {
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  background: #d4af37;
  color: #1a1a1a;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.info-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border-radius: 50%;
  margin: 0 auto 2rem;
  font-size: 2.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 15px rgba(212, 175, 55, 0.1);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.info-title {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}
.info-title span {
  display: block;
}
.info-title span.en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 4px;
}

.info-content {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  line-height: 1.8;
}

.hours-row {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hours-row:last-of-type {
  border-bottom: none;
}
.hours-row .day {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2px;
}
.hours-row .time {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #e8e2c8;
}

.hours-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #f0d78c;
  padding: 4px 8px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 4px;
}

.seating-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  margin: 0 auto;
}
.seating-item i {
  width: 20px;
  color: #d4af37;
  font-size: 1.1rem;
  opacity: 0.8;
}
.seating-item span {
  flex: 1;
  text-align: left;
  font-size: 1rem;
}

.private-text {
  font-size: 1rem;
  opacity: 0.9;
}
.private-text .ja {
  display: none;
}
body[data-lang=ja] .private-text .ja {
  display: block;
}
.private-text .en {
  display: none;
}
body[data-lang=en] .private-text .en {
  display: block;
}
.private-text .en {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
  font-style: italic;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.payment-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e2c8;
}
.payment-item i {
  color: #d4af37;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
.payment-item span {
  font-size: 0.9rem;
  font-weight: 500;
}
.payment-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  transform: translateY(-2px);
}
.payment-item .paypay-icon {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff0033;
  background: #ffffff;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  letter-spacing: -0.02em;
}

.no-reservation-banner {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
}
.no-reservation-banner::before, .no-reservation-banner::after {
  content: "☘";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.5rem;
}
.no-reservation-banner::before {
  left: 5%;
}
.no-reservation-banner::after {
  right: 5%;
}
.no-reservation-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .no-reservation-banner .banner-content {
    flex-direction: row;
    gap: 2rem;
  }
}
.no-reservation-banner .banner-icon {
  font-size: 2.5rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}
.no-reservation-banner .banner-text .ja {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e8e2c8;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.no-reservation-banner .banner-text .en {
  font-size: 0.95rem;
  color: #f0d78c;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 6px;
  opacity: 0.8;
}
body[data-lang=ja] .no-reservation-banner .banner-text .ja {
  display: block;
}
body[data-lang=en] .no-reservation-banner .banner-text .en {
  display: block;
}

.shop-section {
  background-color: #f5f0e1;
  background-image: url("../img/bg_bbp.svg");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 350px 350px;
  overflow: hidden;
}
.shop-section .section-description {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .shop-section .section-description {
    white-space: normal;
  }
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: #333333;
  position: relative;
}
.shop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #333333;
}
.shop-card:hover .shop-card-img {
  transform: scale(1.08);
}
.shop-card:hover .shop-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.shop-card:hover .shop-card-name {
  color: #1a472a;
}

.shop-card-visual {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.shop-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-family: "Cinzel", serif;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.shop-card-body {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
}

.shop-card-name {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.shop-card-desc {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.shop-card-price {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a472a;
}
.shop-card-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #666666;
}

.shop-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a472a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.shop-cta {
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .shop-cta {
    margin-top: 3.5rem;
  }
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: #1a472a;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid #1a472a;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}
.btn-shop:hover {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 71, 42, 0.4);
}
.btn-shop:hover::before {
  left: 100%;
}
.btn-shop:hover .btn-shop-external {
  transform: translate(2px, -2px);
}
.btn-shop .btn-shop-external {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
  margin-left: 0.2rem;
}

.shop-cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #666666;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.access-section {
  position: relative;
  background-color: #f5f0e1;
  background-image: url("../img/store_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.access-section::before {
  content: "";
  content: none;
}
.access-section > .container {
  position: relative;
  z-index: 2;
}
.access-section .section-label {
  color: rgba(255, 255, 255, 0.85);
}
.access-section .section-label::before, .access-section .section-label::after {
  color: rgba(255, 255, 255, 0.6);
}
.access-section .section-title {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.access-section .section-title span.en {
  color: inherit;
}
.access-section .section-description {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.access-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(222, 204, 180, 0.5);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .access-content {
    grid-template-columns: 1fr 1.5fr;
    align-items: stretch;
  }
}

.access-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f5f0e1;
}
.shop-name .shamrock-icon {
  font-size: 2rem;
}
.shop-name h3 {
  font-size: 1.5rem;
  color: #1a472a;
}

.address-block, .phone-block {
  margin-bottom: 2rem;
}
.address-block h4, .phone-block h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #666666;
  margin-bottom: 1rem;
}
.address-block h4 i, .phone-block h4 i {
  color: #1a472a;
}

.address {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.copy-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f0e1;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.copy-address:hover {
  background: #1a472a;
  color: #ffffff;
}
.copy-address.copied {
  background: #22c55e;
  color: #ffffff;
}

.phone-number {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #1a472a;
  font-weight: 600;
}
.phone-number:hover {
  color: #2d6a4f;
}

.directions-note {
  background: #f5f0e1;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.directions-note p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  font-size: 0.9375rem;
}
.directions-note p i {
  color: #1a472a;
  margin-top: 0.25rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 450px;
}
@media (min-width: 992px) {
  .map-container {
    height: 100%;
    min-height: 500px;
  }
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding-top: 2rem;
}

.footer-decoration .celtic-border {
  height: 4px;
  background: linear-gradient(90deg, #d43737 0%, #1a1a1a 25%, #d43737 50%, #1a1a1a 75%, #d43737 100%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand .footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}
.footer-brand .footer-tagline {
  margin-top: 0.5rem;
  margin-bottom: 0;
  opacity: 0.7;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.5;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a472a;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-4px);
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: 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;
}

.beer-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  border-radius: 50%;
  animation: rise linear infinite;
  opacity: 0;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}
.cursor-glow.active {
  opacity: 1;
}

.hero-logo-mark {
  opacity: 0;
  animation: logoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

.hero-title .title-sub {
  opacity: 0;
  animation: subtitleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 2.2s forwards;
}

body.lang-switched .hero-title .title-sub {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: brightness(0) invert(1) blur(10px) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(0) invert(1) blur(0) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  }
}
@keyframes subtitleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.5em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.2em;
  }
}
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease;
}
.tilt-card .menu-card-content {
  transform: translateZ(30px);
}
.tilt-card .menu-badge {
  transform: translateZ(50px);
}
.tilt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
  z-index: 1;
}
.tilt-card:hover::before {
  opacity: 1;
}
.tilt-card .shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  border-radius: 16px;
  z-index: 2;
}
.tilt-card:hover .shine {
  transform: translateX(100%);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26, 71, 42, 0.2) 0%, transparent 40%), radial-gradient(circle at 40% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.btn-magnetic {
  position: relative;
  transition: transform 0.2s ease;
}
.btn-magnetic span {
  display: block;
  transition: transform 0.2s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #d43737);
  z-index: 9999;
  transition: width 0.1s ease;
}

.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.stagger-item.animated {
  animation: staggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.float-icon {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.status-badge .status-dot {
  position: relative;
}
.status-badge .status-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.morphing-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background: linear-gradient(45deg, rgba(26, 71, 42, 0.2), rgba(212, 175, 55, 0.1));
  filter: blur(40px);
  animation: morph 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes morph {
  0%, 100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    transform: rotate(90deg) scale(1.1);
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.scramble-text {
  display: inline-block;
}

.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.split-text .word {
  display: inline-block;
  overflow: hidden;
}
.split-text .word span {
  display: inline-block;
  transform: translateY(100%);
  animation: splitReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes splitReveal {
  to {
    transform: translateY(0);
  }
}
.btn-liquid {
  position: relative;
  overflow: hidden;
}
.btn-liquid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-liquid:hover::before {
  width: 300px;
  height: 300px;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}
.image-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a472a;
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.image-reveal.revealed::after {
  transform: scaleX(0);
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transform-origin: bottom;
  z-index: -1;
}

.hover-underline {
  position: relative;
}
.hover-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media print {
  .header,
  .hero-particles,
  .scroll-indicator,
  .back-to-top,
  .shop-section {
    display: none !important;
  }
  body {
    background: #ffffff;
  }
  .hero {
    min-height: auto;
    padding: 2rem;
    background: #ffffff;
    color: #1a1a1a;
  }
  .hero .hero-title .title-line {
    color: #1a1a1a;
  }
  .hero .hero-description {
    color: #333333;
  }
}
