:root {
  --bg: #f4efe5;
  --bg-deep: #e6ddcf;
  --surface: rgba(255, 252, 246, 0.8);
  --surface-strong: #fffdf9;
  --text: #183126;
  --muted: #617364;
  --line: rgba(24, 49, 38, 0.12);
  --primary: #214736;
  --primary-strong: #142b21;
  --secondary: #c47d43;
  --secondary-soft: #e9c7ab;
  --shadow: 0 24px 64px rgba(28, 42, 34, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans TC", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(196, 125, 67, 0.18), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(33, 71, 54, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 76%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding-top: 14px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 251, 245, 0.74);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(40, 52, 44, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--primary), #4a785f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.brand-mark svg {
  width: 30px;
  fill: #f9f4eb;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-strong);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-strong);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 78px 0 36px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking-panel h2,
.location-copy h2,
.hero-card h2 {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  max-width: 10ch;
}

.hero-text,
.section-heading,
.story-card p,
.room-card p,
.experience-card li,
.location-copy p,
.access-list p,
.spot-card p,
.booking-panel p,
.footer p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #f8f3ea;
  background: linear-gradient(135deg, var(--primary), #3f6e58);
  box-shadow: 0 18px 34px rgba(33, 71, 54, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.hero-ribbon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-ribbon span,
.room-meta,
.contact-label,
.spot-card span,
.story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ribbon span {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card,
.story-card,
.room-card,
.experience-card,
.contact-card,
.spot-card,
.booking-panel {
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card-primary {
  padding: 30px;
  color: #f8f4ec;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(28, 60, 45, 0.96), rgba(65, 106, 82, 0.84)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.hero-card-primary p,
.hero-card-primary span {
  color: rgba(248, 244, 236, 0.76);
  font-family: "Manrope", sans-serif;
}

.hero-card-primary p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card-primary h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.hero-card-primary span {
  font-size: 0.95rem;
}

.hero-collage {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 44px rgba(23, 35, 29, 0.18);
}

.hero-image-one {
  inset: 0 22% 24% 0;
  background:
    linear-gradient(180deg, rgba(28, 43, 36, 0.08), rgba(28, 43, 36, 0.42)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80");
}

.hero-image-two {
  inset: 34% 0 0 36%;
  border: 10px solid rgba(255, 252, 246, 0.84);
  background:
    linear-gradient(180deg, rgba(52, 39, 27, 0.08), rgba(52, 39, 27, 0.48)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1400&q=80");
}

.hero-stamp {
  position: absolute;
  left: 22px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(26, 38, 31, 0.12);
}

.hero-stamp strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stamp span {
  color: var(--muted);
  font-size: 0.88rem;
}

.intro-strip {
  margin-top: 20px;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.85;
}

.content-section {
  padding-top: 104px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.booking-panel h2,
.location-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.story-grid,
.room-grid,
.experience-grid,
.spot-grid {
  display: grid;
  gap: 22px;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-card,
.room-card,
.experience-card,
.contact-card,
.spot-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.story-index {
  margin-bottom: 18px;
  color: var(--secondary);
  background: rgba(196, 125, 67, 0.12);
}

.story-card h3,
.room-card h3,
.experience-card h3,
.access-list h3,
.spot-card h3,
.contact-card a {
  margin: 0 0 12px;
}

.story-card h3,
.room-card h3,
.experience-card h3,
.access-list h3,
.spot-card h3 {
  font-size: 1.26rem;
}

.story-card p,
.room-card p {
  margin: 0;
}

.room-grid {
  grid-template-columns: repeat(3, 1fr);
}

.room-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(249, 245, 237, 0.78));
}

.room-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -48px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(33, 71, 54, 0.06);
}

.room-meta {
  margin-bottom: 18px;
  color: var(--primary);
  background: rgba(33, 71, 54, 0.08);
}

.experience-section {
  position: relative;
}

.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.experience-card ul {
  margin: 0;
  padding-left: 18px;
}

.experience-card li + li {
  margin-top: 10px;
}

.location-section {
  padding-bottom: 30px;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.location-copy p {
  margin-top: 0;
}

.access-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.access-list article {
  padding: 22px 24px;
  border-left: 3px solid rgba(33, 71, 54, 0.18);
  background: rgba(255, 255, 255, 0.34);
  border-radius: 0 22px 22px 0;
}

.access-list h3,
.access-list p {
  margin: 0;
}

.access-list p {
  margin-top: 10px;
}

.location-panel {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(160deg, rgba(30, 61, 47, 0.96), rgba(65, 106, 83, 0.88));
}

.contact-card .contact-label {
  width: fit-content;
  margin: 0;
  color: #e9cfb6;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card a {
  color: #f8f4ec;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.spot-grid {
  grid-template-columns: repeat(2, 1fr);
}

.spot-card {
  min-height: 190px;
  background: rgba(255, 252, 246, 0.84);
}

.spot-card span {
  margin-bottom: 16px;
  width: fit-content;
  color: var(--secondary);
  background: rgba(196, 125, 67, 0.1);
}

.spot-card p {
  margin: 0;
}

.booking-section {
  padding-top: 74px;
  padding-bottom: 90px;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: end;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(255, 251, 244, 0.92), rgba(244, 238, 226, 0.82));
}

.booking-panel p {
  margin-bottom: 0;
}

.booking-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: end;
  padding: 0 0 46px;
  border-top: 1px solid var(--line);
}

.footer-title,
.footer-copy {
  color: var(--text);
}

.footer-title {
  margin: 24px 0 6px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--primary);
  font-weight: 700;
}

.footer-copy {
  margin: 24px 0 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .location-layout,
  .booking-panel,
  .story-grid,
  .room-grid,
  .experience-grid,
  .spot-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-collage {
    min-height: 420px;
  }

  .booking-actions,
  .footer-links,
  .footer-copy {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 840px) {
  .topbar {
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: 30px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 4px 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-collage {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .section-shell {
    width: min(100vw - 24px, var(--container));
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-card-primary,
  .story-card,
  .room-card,
  .experience-card,
  .contact-card,
  .spot-card,
  .booking-panel {
    padding: 24px;
  }

  .hero-image-one {
    inset: 0 10% 28% 0;
  }

  .hero-image-two {
    inset: 42% 0 0 28%;
  }

  .hero-ribbon span,
  .room-meta,
  .spot-card span,
  .story-index {
    width: 100%;
    justify-content: flex-start;
  }
}
