:root {
  --brand: #006da1;
  --brand-dark: #005073;
  --brand-soft: #93c7d9;
  --sand: #e8d4b2;
  --ink: #063f5a;
  --muted: #547586;
  --paper: #ffffff;
  --paper-2: #f4fbfd;
  --moss: #006da1;
  --leaf: #93c7d9;
  --clay: #e8d4b2;
  --brick: #006da1;
  --gold: #e8d4b2;
  --line: rgba(0, 109, 161, .16);
  --shadow: 0 22px 50px rgba(0, 80, 115, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 80, 115, .86), rgba(0, 80, 115, .08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .14);
  font-family: "Noto Serif TC", serif;
  font-size: 19px;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: .9;
}

.site-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(20, 26, 21, .32);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: contain;
  background: #171d18;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 80, 115, .82) 0%, rgba(0, 80, 115, .46) 48%, rgba(0, 80, 115, .12) 100%),
    linear-gradient(0deg, rgba(0, 80, 115, .75) 0%, rgba(0, 80, 115, .08) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 132px clamp(18px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sand);
}

.hero h1,
.section h2 {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 7vw, 84px);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, .9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 900;
}

.primary-button {
  color: var(--brand-dark);
  background: var(--sand);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.quick-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  width: min(960px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(0, 80, 115, .66);
  backdrop-filter: blur(12px);
}

.quick-panel a {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  transition: background .18s ease, transform .18s ease;
}

.quick-panel a:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel strong,
.quick-panel span {
  display: block;
}

.quick-panel strong {
  font-size: 18px;
}

.quick-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 6vw, 88px);
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: var(--paper-2);
}

.section-heading {
  max-width: 720px;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.category-block {
  margin-top: 34px;
}

.category-block + .category-block {
  margin-top: 46px;
}

.category-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 880px;
}

.category-heading span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--brick);
  font-weight: 900;
}

.category-heading h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.3;
}

.category-heading p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

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

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

.feature-card {
  min-height: 260px;
  overflow: hidden;
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.card-image {
  width: calc(100% + 48px);
  height: auto;
  max-height: 360px;
  margin: 0 -24px 22px;
  object-fit: contain;
  border-bottom: 1px solid var(--line);
  background: #eef8fb;
}

.card-image-map {
  width: 100%;
  max-height: 560px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
}

.feature-icon {
  display: inline-grid;
  min-width: 54px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  padding: 0 9px;
  color: #fff;
  background: var(--moss);
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3,
.wide-note h3,
.event-grid h3,
.day-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.feature-card p,
.wide-note p,
.event-grid p,
.coffee-list span {
  margin: 0;
  color: var(--muted);
}

.wide-note {
  margin-top: 18px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--moss), #303d35);
  box-shadow: var(--shadow);
}

.wide-note p {
  color: rgba(255, 255, 255, .82);
}

.facility-strip {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
  margin-top: 18px;
}

.facility-strip img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: #eef8fb;
}

.media-list {
  display: grid;
  gap: 14px;
}

.floor-video {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(220px, .7fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 109, 161, .2);
  background: #fff;
}

.floor-video video {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #171d18;
}

.floor-video strong,
.floor-video small,
.floor-intro {
  display: block;
}

.floor-video strong {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.floor-video small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.floor-intro {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.media-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(98, 115, 95, .28);
  background: rgba(255, 255, 255, .64);
}

.media-type {
  grid-row: span 2;
  display: grid;
  min-height: 80px;
  place-items: center;
  color: #fff;
  background: var(--clay);
  font-weight: 900;
}

.media-row strong {
  font-size: 21px;
}

.media-row small {
  color: var(--muted);
  font-size: 14px;
}

.floor-gallery-section {
  background: #fff;
  padding-top: clamp(54px, 7vw, 86px);
}

.floor-story-section {
  background: #f7f2e8;
  padding-top: clamp(54px, 7vw, 86px);
}

.floor-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.floor-story {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(0, 110, 160, .18);
}

.floor-story-blue {
  color: #fff;
  background: #93c7d9;
}

.floor-story-white {
  color: #0070a8;
  background: #fff;
}

.floor-number {
  display: flex;
  align-items: end;
  gap: 8px;
  color: #0070a8;
  line-height: .8;
}

.floor-story-blue .floor-number {
  color: #006da5;
}

.floor-number strong {
  font-family: "Noto Sans TC", system-ui, sans-serif;
  font-size: clamp(96px, 13vw, 168px);
  font-weight: 400;
}

.floor-number span {
  padding-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
}

.floor-number-right {
  justify-self: end;
}

.floor-copy {
  position: relative;
  z-index: 2;
}

.floor-copy h3 {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 16px 8px;
  color: #0070a8;
  background: rgba(225, 241, 248, .86);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.2;
  letter-spacing: .18em;
  font-weight: 400;
}

.floor-copy p {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.55;
  letter-spacing: .05em;
}

.floor-story-white .floor-copy p {
  color: #0070a8;
}

.floor-deco {
  position: absolute;
  inset: auto 28px 28px 28px;
  height: 150px;
  pointer-events: none;
}

.floor-deco span {
  position: absolute;
  display: block;
  border: 4px solid #0070a8;
}

.camera-deco span:nth-child(1) {
  left: 0;
  bottom: 18px;
  width: 96px;
  height: 70px;
  border-radius: 8px;
}

.camera-deco span:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 4px solid #0070a8;
  border-radius: 50%;
}

.camera-deco span:nth-child(2),
.camera-deco span:nth-child(3),
.camera-deco span:nth-child(4) {
  bottom: 86px;
  width: 54px;
  height: 44px;
  background: rgba(255, 255, 255, .26);
}

.camera-deco span:nth-child(2) { left: 122px; }
.camera-deco span:nth-child(3) { left: 198px; border-color: #f17f6b; border-radius: 50%; }
.camera-deco span:nth-child(4) { left: 274px; }

.music-deco span:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 180px;
  height: 86px;
  border-color: #d7b756;
  background: rgba(215, 183, 86, .38);
}

.music-deco span:nth-child(2) {
  left: 210px;
  bottom: 0;
  width: 42px;
  height: 100px;
  border-width: 0 0 6px 6px;
  transform: skewX(-24deg);
}

.music-deco span:nth-child(3) {
  left: 300px;
  bottom: 0;
  width: 70px;
  height: 118px;
  border-width: 5px 5px 0 5px;
}

.music-deco span:nth-child(4) {
  right: 10px;
  bottom: 0;
  width: 58px;
  height: 122px;
  border-radius: 28px 28px 10px 10px;
}

.herb-deco span {
  border-color: #0070a8;
  background: rgba(213, 190, 133, .28);
}

.herb-deco span:nth-child(1) {
  left: 0;
  bottom: 18px;
  width: 180px;
  height: 54px;
  border-radius: 28px;
}

.herb-deco span:nth-child(2),
.herb-deco span:nth-child(3),
.herb-deco span:nth-child(4) {
  bottom: 0;
  width: 70px;
  height: 98px;
  border-radius: 8px;
}

.herb-deco span:nth-child(2) { left: 230px; }
.herb-deco span:nth-child(3) { left: 318px; height: 128px; }
.herb-deco span:nth-child(4) { left: 406px; }

.textile-deco span:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 92px;
  height: 130px;
  background: rgba(255, 153, 174, .42);
}

.textile-deco span:nth-child(2) {
  left: 124px;
  bottom: 14px;
  width: 112px;
  height: 84px;
  border-radius: 50%;
}

.textile-deco span:nth-child(3) {
  left: 280px;
  bottom: 24px;
  width: 120px;
  height: 6px;
  transform: rotate(-32deg);
}

.textile-deco span:nth-child(4) {
  left: 430px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 153, 174, .32);
}

.floor-group-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.floor-group {
  padding: 20px;
  border: 1px solid var(--line);
  background: #f4fbfd;
}

.floor-group h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.floor-theme-text {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.floor-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.floor-carousel figure {
  flex: 0 0 min(78vw, 520px);
  display: grid;
  place-items: center;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  scroll-snap-align: start;
}

.floor-carousel img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.dark-section {
  color: #fff;
  background: var(--brand-dark);
}

.dark-section .section-heading {
  margin-bottom: 30px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-grid article {
  min-height: 260px;
  overflow: hidden;
  padding: 0 30px 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.event-image {
  width: 100%;
  height: auto;
  max-height: 460px;
  margin: 0 0 28px;
  object-fit: contain;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.event-poster {
  max-height: 620px;
}

.event-kicker {
  margin: 0 0 18px;
  color: #f4d38d;
  font-size: 13px;
  font-weight: 900;
}

.event-grid p {
  color: rgba(255, 255, 255, .78);
}

.coffee-section {
  background: var(--paper-2);
}

.coffee-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: 34px;
}

.map-image {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #eef8fb;
  box-shadow: var(--shadow);
}

.coffee-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.coffee-carousel figure {
  flex: 0 0 min(82vw, 620px);
  margin: 0;
  scroll-snap-align: start;
}

.coffee-carousel .map-image {
  box-shadow: none;
}

.map-board {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(38, 48, 41, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(38, 48, 41, .08) 1px, transparent 1px),
    #e8dec9;
  background-size: 44px 44px;
  box-shadow: var(--shadow);
}

.map-board::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 24px solid rgba(154, 168, 111, .26);
  transform: rotate(-12deg);
}

.map-line {
  position: absolute;
  left: 20%;
  top: 54%;
  width: 62%;
  height: 5px;
  background: var(--brick);
  transform: rotate(-18deg);
  transform-origin: left center;
}

.pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brick);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(142, 75, 54, .25);
}

.pin-one { left: 18%; top: 24%; }
.pin-two { right: 22%; top: 18%; background: var(--moss); }
.pin-three { left: 38%; bottom: 22%; background: var(--gold); }
.pin-four { right: 15%; bottom: 28%; }

.coffee-list {
  display: grid;
  gap: 14px;
}

.coffee-list article {
  padding: 18px 0 18px 20px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 154, 79, .12), transparent);
}

.coffee-list strong,
.coffee-list span {
  display: block;
}

.itinerary-section {
  background: #f7f0e4;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.route-map-block {
  margin-top: 34px;
}

.route-map-block h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.route-map-block img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border: 1px solid rgba(142, 75, 54, .2);
  background: rgba(255, 250, 241, .78);
}

.route-heading {
  margin-top: clamp(54px, 7vw, 84px);
}

.day-card {
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid rgba(0, 109, 161, .16);
}

.day-label {
  display: inline-grid;
  min-width: 86px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--brick);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding-left: 18px;
  border-left: 2px solid rgba(142, 75, 54, .28);
  color: var(--muted);
}

.timeline span {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, .76);
  background: #202820;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #f4d38d;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 250, 241, .96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .intro-band,
  .split-section,
  .coffee-layout,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .hotel-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floor-video {
    grid-template-columns: 1fr;
  }

  .floor-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 188px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .quick-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-panel a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .quick-panel a:nth-child(2n) {
    border-right: 0;
  }

  .quick-panel a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .quick-panel a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .feature-grid,
  .hotel-grid,
  .service-grid,
  .event-grid,
  .category-heading {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .event-grid article {
    min-height: auto;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .media-type {
    grid-row: auto;
    min-height: 54px;
  }

  .map-board {
    min-height: 330px;
  }

  .floor-carousel figure {
    flex-basis: 86vw;
    min-height: 240px;
  }

  .floor-story {
    min-height: 420px;
    grid-template-columns: 1fr;
  }

  .floor-number-right {
    justify-self: start;
  }

  .floor-deco {
    left: 18px;
    right: 18px;
    bottom: 18px;
    transform: scale(.72);
    transform-origin: left bottom;
  }
}
