html {
    scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #5a4a4a;
  background: #fff8f4;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

  width: 100%;
  height: 64px;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 248, 244, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 139, 160, 0.18);
}

.site-logo {
  color: #5a4a4a;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 14px;
}

.site-nav a {
  color: #5a4a4a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;

  padding: 96px 0 56px clamp(56px, 8vw, 128px);

  background-image:
    linear-gradient(
      90deg,
      rgba(255, 250, 246, 0.64) 0%,
      rgba(255, 250, 246, 0.42) 34%,
      rgba(255, 250, 246, 0.12) 68%,
      rgba(255, 250, 246, 0.02) 100%
    ),
    url("/assets/images/HeroPage.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 560px;
  transform: translateY(24px);
}

.brand-en {
  margin: 0 0 18px;
  color: #a98476;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 22px;
  color: #75615b;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  color: #564645;
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 1.04;
  letter-spacing: 0.025em;
  font-weight: 600;
}

.description {
  margin: 28px 0 34px;
  max-width: 470px;
  color: #6f5f5a;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-link:first-child {
  color: #fff;
  background: #a77b70;
  border: 1px solid #a77b70;
  box-shadow: 0 14px 30px rgba(91, 65, 57, 0.2);
}

.hero-link:first-child:hover {
  background: #8f665d;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(91, 65, 57, 0.24);
}

.hero-link:last-child {
  color: #66524d;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(102, 82, 77, 0.2);
  box-shadow: 0 10px 24px rgba(91, 65, 57, 0.08);
  backdrop-filter: blur(10px);
}

.hero-link:last-child:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.hero-visual {
  display: none;
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 72px);
    align-items: flex-start;
    padding: 110px 28px 56px;

    background-image:
      linear-gradient(
        180deg,
        rgba(255, 250, 246, 0.72) 0%,
        rgba(255, 250, 246, 0.52) 38%,
        rgba(255, 250, 246, 0.82) 100%
      ),
      url("/assets/images/HeroPage.png");

    background-size: auto 100%;
    background-position: 60% center;
  }

  .hero-content {
    max-width: 100%;
    transform: none;
  }

  .brand-en {
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 0.2em;
  }

  .hero-kicker {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 0.02em;
  }

  .description {
    max-width: 340px;
    font-size: 17px;
    line-height: 1.9;
    margin: 26px 0 34px;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-link {
    height: 52px;
    min-width: 122px;
    padding: 0 24px;
    font-size: 17px;
  }
}

/* =========================
   Gallery
========================= */

.gallery-section {
  padding: 120px 8vw;
  background: #fffaf7;
}

.section-label {
  margin: 0;
  text-align: center;
  color: #b08b7c;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 14px;
}

.gallery-section h2 {
  margin: 12px 0 56px;
  text-align: center;
  color: #574747;
  font-size: 42px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 80px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-section h2 {
    font-size: 34px;
  }
}

/* =========================
   Price
========================= */

.price-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff8f4 0%, #f3e8df 100%);
  text-align: center;
}

.price-section h2 {
  margin: 0 0 28px;
  font-size: 28px;
}

.price-card {
  max-width: 520px;
  margin: 0 auto 18px;
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(90, 74, 74, 0.1);
  border: 1px solid rgba(217, 139, 160, 0.18);
  text-align: left;
}

.price-card h3 {
  margin: 0 0 16px;
  color: #d98ba0;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(217, 139, 160, 0.28);
  font-size: 15px;
}

.price-row span {
  color: #5a4a4a;
}

.price-row strong {
  flex-shrink: 0;
  color: #c96f8a;
}

.price-note {
  margin: -4px 0 6px;
  color: rgba(90, 74, 74, 0.68);
  font-size: 13px;
  text-align: right;
}

.price-warning {
  max-width: 520px;
  margin: 20px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: #d98ba0;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(217, 139, 160, 0.28);
}

.booking-list {
  display: grid;
  gap: 10px;
}

.booking-day {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 10px;

  padding: 12px 12px;
  border-radius: 18px;
  background: #fff8f4;
  border: 1px solid rgba(217, 139, 160, 0.14);
}

.booking-date {
  color: #5a4a4a;
  font-size: 14px;
  line-height: 1.3;
}

.booking-date strong {
  display: block;
  font-size: 15px;
}

.booking-date span {
  color: rgba(90, 74, 74, 0.68);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-header > div {
  flex: 1;
  text-align: center;
}

.booking-month {
  margin: 0;
  white-space: nowrap;
}

.booking-range {
  margin: 4px 0 0;
  white-space: nowrap;
}

.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

.slot-dot {
  font-size: 18px;
  line-height: 1;
}

.slot-text {
  margin-top: 4px;
  font-size: 11px;
}

.slot.available {
  color: #2f6b4f;
  background: #e8f6ef;
}

.slot.booked {
  color: #9b4f5f;
  background: #fde8ee;
}





