/* ─── CSS Variables ─── */
:root {
  --dark-green: #1E3A2B;
  --bamboo: #4F6F52;
  --bamboo-light: #6a8f6d;
  --cream: #F6F5F2;
  --wood: #8B5A2B;
  --wood-light: #b07a4a;
  --gold: #C9A84C;
  --text-dark: #1a2c1e;
  --text-mid: #3d5240;
  --text-light: #7a9a7d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(30, 58, 43, 0.10);
  --shadow-md: 0 6px 24px rgba(30, 58, 43, 0.14);
  --shadow-lg: 0 16px 48px rgba(30, 58, 43, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Noto Serif TC', serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Utility ─── */
.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bamboo-light);
  font-weight: 500;
  font-family: 'Noto Sans TC', sans-serif;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark-green);
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.7rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-primary {
  background: var(--bamboo);
  color: var(--white);
  border-color: var(--bamboo);
}

.btn-primary:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn-wood {
  background: var(--wood);
  color: var(--white);
  border-color: var(--wood);
}

.btn-wood:hover {
  background: var(--wood-light);
  border-color: var(--wood-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(30, 58, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(30, 58, 43, 0.98);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--bamboo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.nav-logo-text {
  color: white;
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-text span {
  font-size: 0.65rem;
  opacity: 0.7;
  display: block;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-link-placeholder {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-links > li > a::after,
.nav-link-placeholder::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links > li > a:hover,
.nav-link-placeholder:hover,
.nav-item.has-dropdown:hover > a,
.nav-item.has-dropdown:hover > .nav-link-placeholder {
  color: white;
}

.nav-links > li > a:hover::after,
.nav-link-placeholder:hover::after,
.nav-item.has-dropdown:hover > a::after,
.nav-item.has-dropdown:hover > .nav-link-placeholder::after {
  transform: scaleX(1);
}

.nav-links .bi-chevron-down {
  font-size: 0.68rem;
  opacity: 0.75;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 170px;
  padding: 0.55rem;
  list-style: none;
  background: rgba(30, 58, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.85rem;
  left: 0;
  right: 0;
  height: 0.85rem;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.nav-cta {
  display: flex;
  gap: 0.6rem;
}

.nav-cta .btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
}

/* ─── Hero / Banner ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero.hero-compact {
  height: 62vh;
  min-height: 420px;
}

.hero-swiper {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg,
.swiper-slide-duplicate-active .hero-slide-bg {
  transform: scale(1.06);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 30, 15, 0.35) 0%,
      rgba(10, 30, 15, 0.55) 50%,
      rgba(10, 30, 15, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 6rem 2.5rem 5.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  /* max-width: 720px; */
}

.hero-subtitle {
  font-size: clamp(0.76rem, 1.5vw, 0.98rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.9rem;
}

.hero-description {
  margin-top: 1.2rem;
  font-size: clamp(0.98rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  line-height: 1.8;
  /* max-width: 38rem; */
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 48rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item i {
  color: var(--gold);
}

.hero-swiper-pagination.swiper-pagination-horizontal {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 40, 30, 0.45);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-swiper .swiper-button-next {
  right: 1.5rem;
}

.hero-swiper .swiper-button-prev {
  left: 1.5rem;
  right: auto;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(79, 111, 82, 0.9);
  transform: translateY(-2px);
}

.hero-swiper.hero-compact .hero-content {
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}

.hero-swiper.hero-compact .hero-eyebrow {
  display: none;
}

.hero-swiper.hero-compact .hero-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.hero-swiper.hero-compact .hero-description {
  /* max-width: 520px; */
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.hero-content>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-content>*:nth-child(2) {
  transition-delay: 0.08s;
}

.hero-content>*:nth-child(3) {
  transition-delay: 0.16s;
}

.hero-content>*:nth-child(4) {
  transition-delay: 0.24s;
}

.hero-content>*:nth-child(5) {
  transition-delay: 0.32s;
}

.hero-content>*:nth-child(6) {
  transition-delay: 0.4s;
}

.swiper-slide-active .hero-content>*,
.swiper-slide-duplicate-active .hero-content>* {
  opacity: 1;
  transform: translateY(0);
}

/* ─── About ─── */
.about {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark-green);
  color: white;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img-badge .big {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.about-img-badge .small {
  font-size: 0.9rem;
  opacity: 0.8;
}

.about-text {
  padding-right: 1rem;
}

.about-desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.about-icon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-icon-item i {
  width: 32px;
  height: 32px;
  background: rgba(79, 111, 82, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bamboo);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─── Menu Section ─── */
.menu-section {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.menu-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.menu-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.dish-body {
  padding: 1.3rem 1.4rem 1.6rem;
}

.dish-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.4rem;
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Set Meals ─── */
.set-meals {
  padding: 6rem 1.5rem;
  background: var(--dark-green);
}

.set-meals-header {
  text-align: center;
  margin-bottom: 3rem;
}

.set-meals-header .section-tag {
  color: var(--gold);
}

.set-meals-header .section-title {
  color: var(--white);
}

.set-meals-header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.set-meals-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.set-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: background 0.3s;
}

.set-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.set-info {
  padding: 2rem 1.8rem;
}

.set-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.set-price {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.set-list {
  list-style: none;
  margin-top: 1.2rem;
}

.set-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.set-list li i {
  color: var(--gold);
  font-size: 0.65rem;
}

.set-img-wrap {
  overflow: hidden;
}

.set-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.set-card:hover .set-img {
  transform: scale(1.04);
}

.set-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.set-note i {
  margin-right: 0.3rem;
}

/* ─── Tourism ─── */
.tourism {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.tourism-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.tourism-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tourism-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tourism-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tourism-img-wrap {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.tourism-lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.tourism-lightbox-link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--gold);
}

.tourism-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tourism-card:hover .tourism-img {
  transform: scale(1.07);
}

.tourism-num {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--dark-green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.tourism-body {
  padding: 1.2rem 1.3rem 1.5rem;
}

.tourism-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.tourism-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.tourism-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  background: rgba(79, 111, 82, 0.1);
  color: var(--bamboo);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  margin-top: 0.7rem;
  font-weight: 500;
}

.tourism-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--dark-green);
  font-weight: 700;
  text-decoration: none;
}

.tourism-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.tourism-link:hover {
  color: var(--bamboo);
}

.tourism-link:hover::after {
  transform: translateX(3px);
}

/* ─── Environment ─── */
.environment {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.env-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.env-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.2rem;
}

.env-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.env-lightbox-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.env-lightbox-link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--gold);
}

.env-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.env-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.env-card:hover .env-img {
  transform: scale(1.06);
}

.env-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 15, 0.7) 0%, transparent 50%);
}

.env-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.env-label i {
  color: var(--gold);
}

.pswp__custom-caption {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  max-width: min(680px, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: rgba(13, 34, 24, 0.82);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
}

.env-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--dark-green) 0%, #2d5240 50%, var(--bamboo) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
  font-family: 'Noto Serif TC', serif;
}

.cta-phone i {
  font-size: 1.6rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-line {
  background: #06C755;
  color: white;
  border-color: #06C755;
}

.btn-line:hover {
  background: #00a846;
  border-color: #00a846;
  transform: translateY(-2px);
}

.btn-map {
  background: #4285F4;
  color: white;
  border-color: #4285F4;
}

.btn-map:hover {
  background: #2a75f3;
  border-color: #2a75f3;
  transform: translateY(-2px);
}

/* ─── Floating Shortcuts ─── */
.has-floating-shortcuts {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 0px);
}

.floating-shortcuts {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  pointer-events: none;
}

.floating-shortcut {
  position: relative;
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  margin-right: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--white);
  background: rgba(33, 72, 50, 0.84);
  box-shadow: 0 14px 32px rgba(17, 40, 28, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
}

.floating-shortcut:hover,
.floating-shortcut:focus-visible {
  box-shadow: 0 18px 40px rgba(17, 40, 28, 0.22);
  border-color: rgba(255, 255, 255, 0.2);
}

.floating-shortcut i {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.floating-shortcut span {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  max-width: none;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(33, 72, 50, 0.92);
  opacity: 0;
  overflow: visible;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-shortcut:hover span,
.floating-shortcut:focus-visible span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.floating-shortcut--phone:hover,
.floating-shortcut--phone:focus-visible {
  background: #355c43;
}

.floating-shortcut--line:hover,
.floating-shortcut--line:focus-visible {
  background: #06c755;
}

.floating-shortcut--map:hover,
.floating-shortcut--map:focus-visible {
  background: #2563eb;
}

.floating-shortcut--facebook:hover,
.floating-shortcut--facebook:focus-visible {
  background: #1877f2;
}

.floating-shortcut--instagram:hover,
.floating-shortcut--instagram:focus-visible {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}

.floating-shortcut--youtube:hover,
.floating-shortcut--youtube:focus-visible {
  background: #ff0033;
}

.floating-shortcut--threads:hover,
.floating-shortcut--threads:focus-visible {
  background: #111111;
}

.floating-shortcut--top:hover,
.floating-shortcut--top:focus-visible {
  background: var(--gold);
  color: var(--dark-green);
}

.floating-shortcut--top:hover span,
.floating-shortcut--top:focus-visible span {
  color: var(--white);
}

/* ─── Footer ─── */
footer {
  background: #0d2218;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-brand .logo-en {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--bamboo-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--bamboo);
  color: white;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 0.84rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li i {
  color: var(--bamboo-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-nav-item.has-children {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding-top: 0.65rem;
}

.footer-subnav-item {
  color: rgba(255, 255, 255, 0.64);
}

.footer-subnav-item i {
  opacity: 0.75;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Divider ─── */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }

  .navbar {
    padding: 0 1.2rem;
  }

  .hero-content {
    padding: 6rem 1.5rem 5rem;
  }

  .hero-title {
    /* max-width: 680px; */
  }

  .hero.hero-compact {
    min-height: 380px;
  }

  .mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark-green);
    padding: 1.5rem;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-group {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-heading {
    color: white;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu a.mobile-menu-child {
    padding-left: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
  }

  .mobile-menu a.mobile-menu-child::before {
    content: '-';
    margin-right: 0.45rem;
    color: var(--bamboo-light);
  }

  .mobile-menu .btn {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .about,
  .menu-section,
  .set-meals,
  .tourism,
  .environment,
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .set-meals-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tourism-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .env-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .env-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .floating-shortcut {
    margin-right: 0.6rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text {
    padding-right: 0;
  }

  .about-img-badge {
    right: 0;
    bottom: -1rem;
  }

  .about-img-main {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .has-floating-shortcuts {
    padding-bottom: calc(5.7rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-shortcuts {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    flex-direction: row;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    overflow-x: auto;
    background: rgba(33, 72, 50, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -14px 30px rgba(17, 40, 28, 0.18);
  }

  .floating-shortcuts::-webkit-scrollbar {
    display: none;
  }

  .floating-shortcut {
    transform: none;
    min-width: 76px;
    height: auto;
    padding: 0.7rem 0.85rem;
    margin-right: 0;
    flex-direction: column;
    gap: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .floating-shortcut:hover,
  .floating-shortcut:focus-visible {
    transform: none;
  }

  .floating-shortcut span,
  .floating-shortcut:hover span,
  .floating-shortcut:focus-visible span {
    position: static;
    transform: none;
    max-width: none;
    padding: 0;
    background: transparent;
    opacity: 1;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .floating-shortcut i {
    font-size: 1rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero.hero-compact {
    min-height: 360px;
  }

  .hero-content {
    padding: 6rem 1.2rem 5.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-description {
    /* max-width: 30rem; */
  }

  .hero-swiper.hero-compact .hero-content {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-btns,
  .hero-trust {
    justify-content: center;
  }

  .hero-swiper-pagination.swiper-pagination-horizontal {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tourism-grid {
    grid-template-columns: 1fr 1fr;
  }

  .env-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .env-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .tourism-grid {
    grid-template-columns: 1fr;
  }

  .env-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .env-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-trust {
    gap: 1rem;
  }

  .set-card {
    grid-template-columns: 1fr;
  }

  .set-img-wrap {
    display: none;
  }

  .about-img-main {
    height: 300px;
  }
}
