*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #FBF4E6;
  color: #2A211A;
  font-family: "Noto Sans TC", system-ui, -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.25;
}

.container {
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 32px;
  }
}

.container--wide {
  margin-inline: auto;
  width: 100%;
  max-width: 1240px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .container--wide {
    padding-inline: 32px;
  }
}

.latin {
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
}

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

.hex {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: 80px;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 112px;
  }
}

.section--cream {
  background: #FBF4E6;
}

.section--deep {
  background: #F6EAD1;
}

.section-head {
  text-align: center;
}

.eyebrow {
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #C67F1E;
}

.section-title {
  margin-top: 12px;
  font-size: 8vw;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2A211A;
}
@media (min-width: 640px) {
  .section-title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 44px;
  }
}

.section-lead {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 2;
  color: #4A3B2E;
}

.note {
  font-size: 12px;
  color: #6B5B47;
  text-align: center;
}

.btn-honey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #8A5A18;
  border-radius: 9999px;
  background: linear-gradient(to bottom, #F7D48A, #E9A63C);
  color: #4A2F0C;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 #8A5A18;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-honey:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #8A5A18;
}
.btn-honey:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #8A5A18;
}
.btn-honey {
  padding: 10px 24px;
  font-size: 14px;
}
@media (min-width: 640px) {
  .btn-honey {
    padding: 10px 26px;
    font-size: 16px;
  }
}

.btn-honey--lg {
  padding: 14px 32px;
  font-size: 16px;
  box-shadow: 0 5px 0 #8A5A18;
}
.btn-honey--lg:hover {
  box-shadow: 0 7px 0 #8A5A18;
}
.btn-honey--lg:active {
  box-shadow: 0 2px 0 #8A5A18;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(138, 90, 24, 0.45);
  border-radius: 9999px;
  background: rgba(251, 244, 230, 0.8);
  color: #4A2F0C;
  font-size: 16px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  border-color: #8A5A18;
  background: #FBF4E6;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.bee {
  position: absolute;
  animation: bee 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bee {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  25% {
    transform: translate3d(14px, -12px, 0) rotate(4deg);
  }
  50% {
    transform: translate3d(4px, -22px, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(-12px, -8px, 0) rotate(6deg);
  }
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #F7D48A;
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .bee {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dish-img {
    animation: none;
  }
}
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.site-header.is-scrolled {
  padding-block: 8px;
  background: rgba(251, 244, 230, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(42, 33, 26, 0.14);
}

.site-header__bar {
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .site-header__bar {
    padding-inline: 32px;
  }
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.site-header__logo img {
  height: 48px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-header__logo img {
    height: 56px;
  }
}

.nav {
  display: none;
}
@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  position: relative;
  padding-block: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.25s ease;
}
.nav__link:hover {
  color: #F7D48A;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.28s ease;
}
.nav__link:hover::after {
  width: 100%;
}

.site-header.is-scrolled .nav__link {
  color: #2A211A;
}
.site-header.is-scrolled .nav__link:hover {
  color: #C67F1E;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  color: #fff;
  transition: border-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}
.nav-toggle .nav-toggle__close {
  display: none;
}
.nav-toggle[aria-expanded=true] .nav-toggle__open {
  display: none;
}
.nav-toggle[aria-expanded=true] .nav-toggle__close {
  display: block;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(42, 33, 26, 0.2);
  color: #2A211A;
}

.nav-mobile {
  margin: 12px 20px 0;
  overflow: hidden;
  border: 1px solid rgba(233, 166, 60, 0.4);
  border-radius: 16px;
  background: #FBF4E6;
  box-shadow: 0 18px 40px rgba(42, 33, 26, 0.18);
}
@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}
.nav-mobile[hidden] {
  display: none;
}
.nav-mobile a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(233, 166, 60, 0.2);
  font-size: 15px;
  font-weight: 500;
  color: #2A211A;
  transition: background 0.2s ease;
}
.nav-mobile a:last-child {
  border-bottom: 0;
}
.nav-mobile a:hover {
  background: rgba(247, 212, 138, 0.3);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 820px;
  padding-top: 128px;
  padding-bottom: 26vw;
  background: #233A22;
}
@media (min-width: 640px) {
  .hero {
    padding-bottom: 20vw;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 900px;
    padding-top: 160px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -20;
  background-color: #1E3021;
  background-image: linear-gradient(180deg, rgba(20, 38, 20, 0.55), rgba(20, 38, 20, 0.15) 38%, rgba(20, 38, 20, 0.5)), var(--hero-image);
  background-size: cover;
  background-position: left center;
}
@media (min-width: 768px) {
  .hero__bg {
    background-position: center;
  }
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: -12%;
  z-index: -10;
  width: 70vw;
  height: 70vh;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: rgba(247, 212, 138, 0.25);
  filter: blur(120px);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 10;
  padding-inline: 20px;
  text-align: center;
}

.hero__title {
  font-size: 12vw;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 76px;
  }
}
.hero__title em {
  font-style: normal;
  color: #F7D48A;
}

.hero__sub {
  margin-top: 16px;
  font-size: 3.5vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
@media (min-width: 640px) {
  .hero__sub {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .hero__sub {
    font-size: 19px;
  }
}
.hero__sub em {
  font-style: normal;
  color: #F7D48A;
}

.hero__bee--left {
  left: 12%;
  top: 26%;
  display: none;
  animation-delay: -2s;
}
@media (min-width: 640px) {
  .hero__bee--left {
    display: block;
  }
}
.hero__bee--left svg {
  width: 44px;
  height: 32px;
}

.hero__bee--right {
  right: 14%;
  top: 16%;
  display: none;
  animation-delay: -5s;
}
@media (min-width: 768px) {
  .hero__bee--right {
    display: block;
  }
}
.hero__bee--right svg {
  width: 36px;
  height: 28px;
}

.hero__comb {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 40px auto 0;
  width: 100%;
  max-width: 560px;
  height: 110px;
}
@media (min-width: 640px) {
  .hero__comb {
    height: 150px;
  }
}
@media (min-width: 1024px) {
  .hero__comb {
    margin-top: 56px;
  }
}
.hero__comb span {
  position: absolute;
  width: 54px;
  height: 46px;
}
@media (min-width: 640px) {
  .hero__comb span {
    width: 72px;
    height: 62px;
  }
}
.hero__comb span:nth-child(1) {
  left: 8%;
  bottom: 38%;
  background: rgba(233, 166, 60, 0.85);
}
.hero__comb span:nth-child(2) {
  left: 20%;
  bottom: 10%;
  background: rgba(247, 212, 138, 0.85);
}
.hero__comb span:nth-child(3) {
  left: 50%;
  bottom: 46%;
  transform: translateX(-50%);
  background: rgba(233, 166, 60, 0.7);
  width: 50px;
  height: 42px;
}
@media (min-width: 640px) {
  .hero__comb span:nth-child(3) {
    width: 66px;
    height: 56px;
  }
}

.hero__curve {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
}
.hero__curve svg {
  width: 100%;
  height: 22vw;
}
@media (min-width: 640px) {
  .hero__curve svg {
    height: 150px;
  }
}

.about {
  position: relative;
  overflow: hidden;
  background: #FBF4E6;
  padding-top: 24px;
  padding-bottom: 96px;
}
@media (min-width: 1024px) {
  .about {
    padding-bottom: 128px;
  }
}

.about__grid {
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .about__grid {
    padding-inline: 32px;
  }
}
.about__grid {
  display: grid;
  align-items: start;
  gap: 48px;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 64px;
  }
}

.about__text {
  position: relative;
  z-index: 10;
  padding-top: 24px;
}
@media (min-width: 1024px) {
  .about__text {
    padding-top: 64px;
  }
}

.about__title {
  font-size: 8vw;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #2A211A;
}
@media (min-width: 640px) {
  .about__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 44px;
  }
}

.about__body {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  font-size: 15px;
  line-height: 2.1;
  color: #4A3B2E;
}
@media (min-width: 1024px) {
  .about__body {
    font-size: 16px;
  }
}
.about__body strong {
  font-weight: 700;
  color: #2A211A;
}

.about__gallery {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  width: 100%;
  max-width: 540px;
}
@media (min-width: 1024px) {
  .about__gallery {
    padding-top: 40px;
  }
}

.about__grid-img {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 640px) {
  .about__grid-img {
    gap: 16px;
  }
}
.about__grid-img figure {
  aspect-ratio: 1.155;
}
.about__grid-img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__grid-img figure:nth-child(1) {
  grid-column: 1;
  grid-row: span 2;
  align-self: start;
  margin-top: 26%;
  background: #F7D48A;
}
.about__grid-img figure:nth-child(2) {
  grid-column: 2;
  background: #F7D48A;
}
.about__grid-img figure:nth-child(3) {
  grid-column: 2;
  margin-top: 6%;
  background: #2E4630;
}

.forest-divider {
  position: relative;
  margin-bottom: -1px;
  line-height: 0;
}
.forest-divider img {
  width: 100%;
  user-select: none;
}

.space {
  position: relative;
  overflow: hidden;
  background: #233723;
  color: #F3EBDC;
  padding-block: 80px;
}
@media (min-width: 1024px) {
  .space {
    padding-block: 112px;
  }
}
.space .eyebrow {
  color: #F7D48A;
}
.space .section-title {
  color: #F3EBDC;
}

.space__viewport {
  position: relative;
  margin-top: 48px;
}

.space-swiper {
  padding-inline: 24px;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .space-swiper {
    padding-inline: 32px;
  }
}
.space-swiper .swiper-slide {
  height: auto;
  transition: opacity 0.4s ease;
}
.space-swiper .swiper-pagination-bullet {
  background: #F3EBDC;
  opacity: 0.4;
}
.space-swiper .swiper-pagination-bullet-active {
  background: #F7D48A;
  opacity: 1;
}

.space-card {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #24391F;
}
.space-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.space-card:hover img {
  transform: scale(1.05);
}

.space-nav {
  position: absolute;
  top: 44%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(251, 244, 230, 0.88);
  color: #2E4630;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}
.space-nav svg {
  width: 17px;
  height: 17px;
}
.space-nav:hover {
  background: #F7D48A;
  transform: scale(1.06);
}

.space-prev {
  left: 10px;
}
@media (min-width: 1024px) {
  .space-prev {
    left: 24px;
  }
}

.space-next {
  right: 10px;
}
@media (min-width: 1024px) {
  .space-next {
    right: 24px;
  }
}

.space__hint {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(243, 235, 220, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-height: 86vh;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.2s ease;
}
.lb-btn svg {
  width: 24px;
  height: 24px;
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lb-close {
  right: 16px;
  top: 16px;
}

.lb-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-count {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.5);
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.menu {
  background: #F6EAD1;
}

.menu__deco {
  position: absolute;
  left: -40px;
  top: 64px;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .menu__deco {
    display: block;
  }
}
.menu__deco span {
  position: absolute;
  width: 96px;
  height: 83px;
  background: rgba(233, 166, 60, 0.25);
}
.menu__deco span:nth-child(2) {
  left: 72px;
  top: 44px;
  background: rgba(233, 166, 60, 0.15);
}

.menu__groups {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

.menu-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
}

.menu-group__label {
  width: 100%;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #8A5A18;
}

.chip {
  padding: 8px 16px;
  border: 2px solid rgba(198, 127, 30, 0.35);
  border-radius: 9999px;
  background: rgba(251, 244, 230, 0.7);
  font-size: 14px;
  font-weight: 500;
  color: #4A3B2E;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.chip:hover {
  border-color: #C67F1E;
  background: #FBF4E6;
}
.chip[aria-pressed=true] {
  border-color: #8A5A18;
  background: #E9A63C;
  color: #3A2A12;
  box-shadow: 0 3px 0 #8A5A18;
}

.menu-panel {
  margin-top: 40px;
  display: grid;
  gap: 32px;
  padding: 24px;
  border: 1px solid rgba(233, 166, 60, 0.4);
  border-radius: 28px;
  background: #FBF4E6;
  box-shadow: 0 18px 40px rgba(138, 90, 24, 0.1);
}
@media (min-width: 1024px) {
  .menu-panel {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 48px;
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .menu-panel__visual {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}
.menu-panel__visual figure {
  margin-inline: auto;
  width: 280px;
  aspect-ratio: 1.155;
  background: #F7D48A;
}
@media (min-width: 1024px) {
  .menu-panel__visual figure {
    width: 340px;
  }
}
.menu-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-img {
  animation: dishIn 0.4s ease both;
}

@keyframes dishIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.menu-panel__caption {
  margin-top: 20px;
  text-align: center;
}
.menu-panel__caption .dish-name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #2A211A;
}
.menu-panel__caption .dish-en {
  display: block;
  margin-top: 4px;
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C67F1E;
}

.menu-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}
.menu-panel__head h3 {
  font-size: 24px;
  color: #2A211A;
}
@media (min-width: 1024px) {
  .menu-panel__head h3 {
    font-size: 30px;
  }
}
.menu-panel__head span {
  font-size: 12px;
  color: #8A5A18;
}

.menu-panel__rule {
  display: block;
  margin-top: 16px;
  width: 56px;
  height: 3px;
  border-radius: 9999px;
  background: #E9A63C;
}

.dish-list {
  margin-top: 24px;
  display: grid;
  gap: 6px 24px;
}
@media (min-width: 640px) {
  .dish-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dish-btn {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  color: #3E3226;
  transition: background 0.2s ease, color 0.2s ease;
}
.dish-btn .dot {
  margin-top: 9px;
  width: 10px;
  height: 9px;
  flex-shrink: 0;
  background: #E9A63C;
}
.dish-btn:hover {
  background: rgba(247, 212, 138, 0.35);
}
.dish-btn[aria-pressed=true] {
  background: rgba(247, 212, 138, 0.7);
  font-weight: 700;
  color: #3A2A12;
}
.dish-btn[aria-pressed=true] .dot {
  background: #8A5A18;
}

.menu__note {
  margin-top: 24px;
}

.services {
  background: #FBF4E6;
}

.services__deco {
  position: absolute;
  right: -24px;
  bottom: 8%;
  z-index: 0;
  display: none;
  pointer-events: none;
}
@media (min-width: 640px) {
  .services__deco {
    display: block;
  }
}
.services__deco span {
  position: absolute;
  width: 86px;
  height: 74px;
}
.services__deco span:nth-child(1) {
  right: 64px;
  top: 0;
  background: rgba(233, 166, 60, 0.35);
}
.services__deco span:nth-child(2) {
  right: 0;
  top: 46px;
  background: rgba(233, 166, 60, 0.85);
}
.services__deco span:nth-child(3) {
  right: 64px;
  top: 92px;
  background: rgba(247, 212, 138, 0.8);
}

.services__bee {
  right: 16%;
  bottom: 26%;
  z-index: 0;
  display: none;
}
@media (min-width: 640px) {
  .services__bee {
    display: block;
  }
}
.services__bee svg {
  width: 44px;
  height: 32px;
}

.services__inner {
  position: relative;
  z-index: 10;
}

.steps {
  position: relative;
  margin-top: 64px;
}

.steps__line {
  position: absolute;
  inset-inline: 0;
  top: 9px;
  display: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #E9A63C, transparent);
}
@media (min-width: 1024px) {
  .steps__line {
    display: block;
  }
}

.steps__list {
  display: grid;
  gap: 48px 0;
}
@media (min-width: 640px) {
  .steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }
}
@media (min-width: 1024px) {
  .steps__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
  }
}

.step {
  position: relative;
  text-align: center;
}
.step__dot {
  display: block;
  margin-inline: auto;
  width: 18px;
  height: 18px;
  border: 4px solid #FBF4E6;
  border-radius: 9999px;
  background: #E9A63C;
  box-shadow: 0 0 0 2px #E9A63C;
}
.step__no {
  display: block;
  margin-top: 24px;
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: #E9A63C;
}
.step h3 {
  margin-top: 12px;
  font-size: 20px;
  color: #2A211A;
}
.step__en {
  margin-top: 4px;
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C67F1E;
}
.step__desc {
  margin: 12px auto 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.95;
  color: #4A3B2E;
}

.perks {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 56px 24px;
  border-radius: 32px;
  background: #2E4630;
  color: #F3EBDC;
  text-align: center;
}
@media (min-width: 640px) {
  .perks {
    padding-inline: 40px;
  }
}
.perks .eyebrow {
  font-size: 12px;
  color: #F7D48A;
}
.perks h3 {
  margin-top: 12px;
  font-size: 24px;
}
@media (min-width: 1024px) {
  .perks h3 {
    font-size: 30px;
  }
}

.comb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px auto 0;
  max-width: 900px;
}
@media (min-width: 768px) {
  .comb {
    padding-bottom: 44px;
  }
}

.comb-cell {
  width: 158px;
  padding: 0 6px 28px;
  text-align: center;
}
.comb-cell .hex {
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 96px;
  height: 83px;
  background: linear-gradient(to bottom, #F7D48A, #E9A63C);
  transition: transform 0.3s ease;
}
.comb-cell i {
  font-size: 36px;
  color: #4A2F0C;
}
.comb-cell h4 {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #F7D48A;
}
.comb-cell p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.75);
}
.comb-cell:hover .hex {
  transform: translateY(-6px) scale(1.04);
}

@media (min-width: 768px) {
  .comb-cell:nth-child(even) {
    transform: translateY(44px);
  }
}
@media (max-width: 767px) {
  .comb {
    max-width: 340px;
  }
  .comb-cell {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 0 0 18px;
    text-align: left;
  }
  .comb-cell > .hex {
    margin: 0;
    flex: 0 0 auto;
    width: 82px;
    height: 71px;
  }
  .comb-cell .comb-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .comb-cell h4 {
    margin-top: 0;
  }
  .comb-cell:nth-child(odd) {
    transform: translateX(-8px);
  }
  .comb-cell:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
    transform: translateX(8px);
  }
}
.perks__note {
  margin-top: 48px;
  font-size: 13px;
  color: rgba(243, 235, 220, 0.6);
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 40px 24px;
  border: 2px solid rgba(138, 90, 24, 0.25);
  border-radius: 28px;
  background: linear-gradient(to bottom right, #F7D48A, #FBF4E6, #F7D48A);
  box-shadow: 0 18px 44px rgba(138, 90, 24, 0.16);
  text-align: center;
}
@media (min-width: 640px) {
  .cta {
    padding-inline: 48px;
  }
}
.cta > * {
  position: relative;
}

.cta__hex-a,
.cta__hex-b {
  position: absolute;
  pointer-events: none;
}

.cta__hex-a {
  left: -28px;
  top: -28px;
  width: 88px;
  height: 76px;
  background: rgba(255, 255, 255, 0.45);
}

.cta__hex-b {
  right: 20px;
  bottom: -36px;
  width: 112px;
  height: 96px;
  background: rgba(255, 255, 255, 0.35);
}

.cta .eyebrow {
  font-size: 12px;
  color: #8A5A18;
}

.cta__title {
  margin-top: 12px;
  font-size: 6.5vw;
  line-height: 1.4;
  color: #2A211A;
}
@media (min-width: 640px) {
  .cta__title {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 34px;
  }
}

.cta__lead {
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.95;
  color: #4A3B2E;
}
.cta__lead strong {
  color: #8A5A18;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .cta__actions {
    flex-direction: row;
    gap: 16px;
  }
}
.cta__actions > a {
  width: 100%;
}
@media (min-width: 640px) {
  .cta__actions > a {
    width: auto;
  }
}
.cta__actions i {
  font-size: 20px;
}

.cta__foot {
  margin-top: 20px;
  font-size: 13px;
  color: #6B5B47;
}

.cta-glow {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 5px 0 #8A5A18, 0 0 0 0 rgba(233, 166, 60, 0.55);
  }
  55% {
    box-shadow: 0 5px 0 #8A5A18, 0 0 0 14px rgba(233, 166, 60, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-glow {
    animation: none;
  }
}
.news {
  background: #F6EAD1;
}

.news__deco {
  position: absolute;
  left: -32px;
  bottom: 40px;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .news__deco {
    display: block;
  }
}
.news__deco span {
  position: absolute;
  width: 88px;
  height: 76px;
  background: rgba(233, 166, 60, 0.25);
}
.news__deco span:nth-child(2) {
  left: 66px;
  top: 40px;
  background: rgba(233, 166, 60, 0.15);
}

.embed-wall {
  margin-top: 48px;
  column-count: 1;
  column-gap: 28px;
}
@media (min-width: 1024px) {
  .embed-wall {
    column-count: 2;
  }
}

.embed-item {
  break-inside: avoid;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
}

.fb-embed {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}
.fb-embed iframe {
  border: 0;
  overflow: hidden;
  transform-origin: top left;
}

.embed-item .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.map {
  position: relative;
  background: #F6EAD1;
}
.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
}
@media (min-width: 1024px) {
  .map iframe {
    height: 460px;
  }
}

.site-footer {
  position: relative;
  padding: 64px 0 48px;
  background: #24391F;
  color: #E7EFE2;
}

.site-footer__grid {
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    padding-inline: 32px;
  }
}
.site-footer__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer__logo {
  height: 64px;
  width: auto;
}

.site-footer__about {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  color: rgba(231, 239, 226, 0.8);
}
.site-footer__about .latin {
  letter-spacing: 0.18em;
}

.site-footer__slogan {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: rgba(231, 239, 226, 0.6);
}

.site-footer h3 {
  font-family: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #F7D48A;
}

.footer-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(231, 239, 226, 0.85);
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-list i {
  margin-top: 3px;
  color: #F7D48A;
}
.footer-list a {
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.footer-list a:hover {
  color: #F7D48A;
  text-decoration: underline;
}

.footer-list--social li {
  align-items: center;
}
.footer-list--social li i {
  margin-top: 0;
}

.site-footer .btn-honey {
  margin-top: 24px;
}

.site-footer__copy {
  margin-inline: auto;
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .site-footer__copy {
    padding-inline: 32px;
  }
}
.site-footer__copy {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(231, 239, 226, 0.5);
}

.line-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(42, 33, 26, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 1024px) {
  .line-fab {
    right: 26px;
    bottom: 26px;
    width: 64px;
    height: 64px;
  }
}
.line-fab svg {
  width: 100%;
  height: 100%;
}
.line-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(42, 33, 26, 0.38);
}
