.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: floatBlob 12s ease-in-out infinite;
  z-index: -1;
}

.hero::before {
  width: 30rem;
  height: 30rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(157, 123, 73, 0.22) 0%, rgba(157, 123, 73, 0) 68%);
}

.hero::after {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(62, 83, 75, 0.18) 0%, rgba(62, 83, 75, 0) 70%);
  animation-delay: -4s;
}

.hero-panel {
  width: min(1150px, 100%);
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.94), rgba(241, 234, 223, 0.92));
  border: 1px solid rgba(36, 49, 45, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(36, 49, 45, 0.08);
  border-radius: 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy { animation: fadeRise 0.9s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(157, 123, 73, 0.1);
  border: 1px solid rgba(157, 123, 73, 0.14);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  animation: shimmer 4.5s linear infinite;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.4rem;
}

.logo-banner {
  width: min(100%, 820px);
  min-height: clamp(220px, 34vw, 420px);
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-banner::before {
  content: "";
  position: absolute;
  width: min(62vw, 520px);
  height: min(62vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 123, 73, 0.12), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.logo-banner:hover { transform: translateY(-3px); }

.logo-banner img {
  width: min(78%, 520px);
  height: min(78%, 360px);
  object-fit: contain;
  display: none;
  padding: 0;
  position: relative;
  z-index: 3;
  max-height: 390px;
  filter: drop-shadow(0 24px 36px rgba(36, 49, 45, 0.16));
  animation: logoBreath 5.5s ease-in-out infinite;
}

.logo-banner.has-image img { display: block; }
.logo-banner.has-image .logo-placeholder { display: none; }

.logo-placeholder {
  text-align: center;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  z-index: 3;
}

.logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(36, 49, 45, 0.14);
  pointer-events: none;
  z-index: 1;
}

.logo-orbit-one {
  width: min(76vw, 620px);
  height: min(29vw, 230px);
  transform: rotate(-8deg);
  animation: orbitDriftOne 18s linear infinite;
}

.logo-orbit-two {
  width: min(68vw, 560px);
  height: min(24vw, 190px);
  border-color: rgba(157, 123, 73, 0.14);
  transform: rotate(18deg);
  animation: orbitDriftTwo 22s linear infinite reverse;
}

.logo-orbit-three {
  width: min(44vw, 360px);
  height: min(44vw, 360px);
  border-color: rgba(36, 49, 45, 0.08);
  animation: pulseRing 5s ease-in-out infinite;
}

.logo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(157, 123, 73, 0.08);
  z-index: 2;
}

.dot-one { animation: orbitDotOne 9s linear infinite; }
.dot-two {
  width: 7px;
  height: 7px;
  opacity: 0.75;
  animation: orbitDotTwo 12s linear infinite reverse;
}
.dot-three {
  width: 6px;
  height: 6px;
  opacity: 0.55;
  animation: orbitDotThree 15s linear infinite;
}

.hero-desc {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 2;
  color: rgba(42, 39, 34, 0.78);
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-visual {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeRise 1s 0.2s ease both;
}

.hero-visual .footer-card.info-card {
  width: min(100%, 460px);
  min-height: 460px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: right;
}

.hero-visual .info-card .footer-brand {
  width: 100%;
}

.hero-visual .info-card .footer-brand strong {
  font-size: 1.85rem;
  margin-bottom: 0.8rem;
}

.hero-visual .info-card .footer-brand span {
  display: block;
  color: rgba(246, 240, 231, 0.84);
}

.hero-visual .info-card .footer-links {
  width: 100%;
}

.visual-orbit,
.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(36, 49, 45, 0.14);
}

.visual-orbit {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
  animation: spinSlow 22s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  inset: 12%;
  animation: pulseRing 5s ease-in-out infinite;
}

.visual-orbit::after {
  inset: 24%;
  animation-delay: -2.4s;
}

.featured-showcase {
  width: min(340px, 88%);
  aspect-ratio: 0.95;
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(242, 234, 221, 0.96));
  border: 1px solid rgba(36, 49, 45, 0.12);
  border-radius: 36px;
  box-shadow: 0 24px 55px rgba(30, 25, 18, 0.14);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-6deg);
  animation: cardFloat 6s ease-in-out infinite;
}

.showcase-label {
  align-self: flex-start;
  background: rgba(157, 123, 73, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(157, 123, 73, 0.14);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.showcase-media {
  width: 100%;
  flex: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(36, 49, 45, 0.1);
  padding: 1rem;
}

.showcase-image {
  width: min(100%, 230px);
  height: min(100%, 230px);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 16px 24px rgba(36, 49, 45, 0.14));
  animation: hoverDrift 5.2s ease-in-out infinite;
}

.showcase-media-fallback {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(157, 123, 73, 0.18), rgba(255, 255, 255, 0.42));
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 800;
  border: 1px dashed rgba(157, 123, 73, 0.24);
}

.showcase-media.has-image .showcase-image { display: block; }
.showcase-media.has-image .showcase-media-fallback { display: none; }

.showcase-copy { text-align: center; }
.showcase-copy strong {
  display: block;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 0.45rem;
}

.showcase-copy span {
  color: rgba(42, 39, 34, 0.72);
  font-size: 0.9rem;
  line-height: 1.8;
}

.menu-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(36, 49, 45, 0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar { display: none; }

.nav-btn {
  border: 1px solid rgba(36, 49, 45, 0.1);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(36, 49, 45, 0.72);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-btn:hover,
.nav-btn.active {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(36, 49, 45, 0.14);
  transform: translateY(-2px);
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.2rem 5rem;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.menu-section {
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.96), rgba(243, 236, 225, 0.96));
  border: 1px solid rgba(36, 49, 45, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(30, 25, 18, 0.06);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--secondary), var(--secondary-soft));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.35rem;
  box-shadow: 0 12px 22px rgba(36, 49, 45, 0.16);
  animation: pulseIcon 4s ease-in-out infinite;
}

.section-label small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(157, 123, 73, 0.82);
  font-weight: 800;
  font-size: 0.68rem;
  margin-bottom: 0.35rem;
}

.section-label h2 {
  color: var(--secondary);
  font-size: 1.55rem;
  font-weight: 900;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, rgba(157, 123, 73, 0), rgba(157, 123, 73, 0.24), rgba(157, 123, 73, 0));
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1rem;
}

.menu-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(242, 234, 221, 0.96));
  border: 1px solid rgba(36, 49, 45, 0.08);
  border-radius: 26px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 14px 30px rgba(30, 25, 18, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 42px rgba(30, 25, 18, 0.1);
  border-color: rgba(157, 123, 73, 0.28);
}

.menu-item:focus-visible {
  outline: 3px solid rgba(157, 123, 73, 0.28);
  outline-offset: 4px;
}

.item-action-hint {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(36, 49, 45, 0.9);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(30, 25, 18, 0.16);
  transform: translateY(-2px);
  z-index: 4;
  max-width: calc(100% - 2rem);
  pointer-events: none;
}

.item-action-hint::before {
  content: "⌕";
  font-size: 0.9rem;
  line-height: 1;
}

.menu-item:hover .item-action-hint,
.menu-item:focus-visible .item-action-hint {
  background: var(--secondary);
}

.badge-popular {
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(157, 123, 73, 0.12);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 800;
  border: 1px solid rgba(157, 123, 73, 0.14);
  margin-top: 1.75rem;
}

.item-visual {
  position: relative;
  height: clamp(220px, 24vw, 270px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 239, 226, 0.98), rgba(240, 230, 214, 0.98));
}

.item-image {
  width: min(220px, 90%);
  height: min(220px, 90%);
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(36, 49, 45, 0.14));
  animation: hoverDrift 5.2s ease-in-out infinite;
}

.item-visual-fallback {
  width: 150px;
  height: 150px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(157, 123, 73, 0.18), rgba(255, 255, 255, 0.42));
  color: var(--secondary);
  display: none;
  place-items: center;
  font-size: 3rem;
  font-weight: 800;
  border: 1px dashed rgba(157, 123, 73, 0.24);
}

.item-visual.no-image .item-image { display: none; }
.item-visual.no-image .item-visual-fallback { display: grid; }

.item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.item-name {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.22rem;
}

.item-en {
  color: rgba(42, 39, 34, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.item-price {
  white-space: nowrap;
  padding: 0.44rem 0.78rem;
  border-radius: 14px;
  background: rgba(157, 123, 73, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(157, 123, 73, 0.14);
  font-weight: 900;
  font-size: 0.82rem;
}

.item-desc {
  color: rgba(42, 39, 34, 0.78);
  font-size: 0.88rem;
  line-height: 1.9;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.1rem;
}

.tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.tag.hot { background: rgba(174, 114, 64, 0.12); color: #94532c; border-color: rgba(174, 114, 64, 0.16); }
.tag.cold { background: rgba(62, 83, 75, 0.12); color: #3a5b53; border-color: rgba(62, 83, 75, 0.14); }
.tag.sweet { background: rgba(154, 126, 83, 0.12); color: #8e6a35; border-color: rgba(154, 126, 83, 0.14); }
.tag.new { background: rgba(36, 49, 45, 0.08); color: var(--secondary); border-color: rgba(36, 49, 45, 0.1); }
.tag.vegan { background: rgba(79, 112, 74, 0.11); color: #496f45; border-color: rgba(79, 112, 74, 0.14); }

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem 2.5rem;
}

.footer-card {
  background: linear-gradient(135deg, rgba(36, 49, 45, 0.98), rgba(52, 66, 60, 0.96));
  color: var(--primary);
  border-radius: 34px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.footer-visual .visual-orbit {
  opacity: 0.8;
}

.footer-visual .featured-showcase {
  width: min(100%, 380px);
  aspect-ratio: 0.95;
}

.footer-brand strong {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.footer-brand span {
  line-height: 2;
  color: rgba(246, 240, 231, 0.84);
  white-space: pre-line;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-link {
  text-decoration: none;
  color: var(--primary);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 700;
}

.item-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}

.item-modal.open {
  display: flex;
}

.item-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 29, 26, 0.6);
  backdrop-filter: blur(8px);
}

.item-modal-dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(242, 234, 221, 0.98));
  border: 1px solid rgba(36, 49, 45, 0.12);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(20, 18, 12, 0.24);
  padding: 1rem;
  z-index: 1;
  animation: modalRise 0.28s ease both;
}

.item-modal-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 49, 45, 0.92);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.item-modal-visual {
  min-height: 220px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(157, 123, 73, 0.14), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(36, 49, 45, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.item-modal-visual img {
  max-width: min(100%, 280px);
  max-height: 280px;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 18px 26px rgba(36, 49, 45, 0.14));
}

.item-modal-visual.has-image img {
  display: block;
}

.item-modal-visual.has-image .item-modal-fallback {
  display: none;
}

.item-modal-fallback {
  width: 130px;
  height: 130px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.42);
  border: 1px dashed rgba(157, 123, 73, 0.24);
}

.item-modal-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.item-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.item-modal-badge,
.item-modal-price {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.item-modal-badge {
  background: rgba(36, 49, 45, 0.09);
  color: var(--secondary);
}

.item-modal-price {
  background: rgba(157, 123, 73, 0.12);
  color: var(--secondary);
}

.item-modal-body h3 {
  font-size: 1.6rem;
  color: var(--secondary);
}

.item-modal-en {
  color: rgba(42, 39, 34, 0.58);
  font-size: 0.88rem;
}

.item-modal-desc {
  color: rgba(42, 39, 34, 0.82);
  line-height: 2;
  font-size: 0.98rem;
}

.item-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.item-modal-hint {
  color: rgba(42, 39, 34, 0.52);
  font-size: 0.78rem;
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; }
  .hero-visual .footer-card.info-card { width: 100%; min-height: 340px; }
  .brand-row {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero { padding: 1rem; }
  .hero-panel { border-radius: 28px; padding: 1.25rem; }
  .logo-banner {
    min-height: clamp(190px, 58vw, 280px);
  }
  .logo-banner img {
    width: min(86%, 360px);
    max-height: 250px;
  }
  .logo-orbit-one {
    width: 88vw;
    height: 34vw;
  }
  .logo-orbit-two {
    width: 78vw;
    height: 30vw;
  }
  .logo-orbit-three {
    width: 58vw;
    height: 58vw;
  }
  .item-visual { height: 230px; }
  .item-image {
    width: min(200px, 88%);
    height: min(200px, 88%);
  }
  .section-header { align-items: flex-start; }
  .items-grid { grid-template-columns: 1fr; }
  .footer-card { padding: 1.5rem; }
  .footer-brand strong { font-size: 2rem; }
  .footer-visual { min-height: 360px; }
  .footer-visual .featured-showcase { width: min(340px, 92%); }
  .item-modal-dialog { border-radius: 24px; }
  .item-action-hint {
    font-size: 0.64rem;
    padding: 0.34rem 0.62rem;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
  }
}
