:root {
  --ink: #171713;
  --muted: #5f625d;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #ded8cd;
  --pine: #263e36;
  --clay: #8f4b35;
  --brass: #b28a47;
  --itravel-blue: #126fa6;
  --asphalt: #232425;
  --shadow: 0 20px 60px rgba(23, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
dd,
dt,
a {
  overflow-wrap: anywhere;
}

@supports (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  p {
    word-break: auto-phrase;
  }
}

@supports not (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  p {
    word-break: break-word;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 244, 239, 0.94);
  box-shadow: 0 8px 28px rgba(23, 23, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 14px;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
}

.header-action {
  min-width: 104px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--asphalt);
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 54%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.02)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 56%);
}

.hero-signature {
  position: absolute;
  right: clamp(18px, 8vw, 116px);
  bottom: clamp(36px, 7vh, 82px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Segoe Script", "Brush Script MT", "Noto Sans TC", cursive;
  font-size: clamp(54px, 9vw, 142px);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 96px;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
}

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

.button.primary {
  border-color: var(--clay);
  color: var(--white);
  background: var(--clay);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.wide {
  width: 100%;
}

.section-pad {
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 100px);
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.intro h2,
.feature-copy h2,
.section-heading h2,
.split-scene h2,
.trust h2,
.visit-flow h2,
.contact h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead-stack p,
.feature-copy p,
.section-heading p,
.split-scene p,
.trust p,
.visit-flow p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.lead-stack p:first-child {
  margin-top: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  min-height: 680px;
  background: var(--pine);
  color: var(--white);
}

.feature-copy {
  align-self: center;
  padding: clamp(50px, 8vw, 96px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 560px;
}

.feature-media {
  min-height: 460px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  max-width: 780px;
}

.space-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}

.image-story {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-story img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-story div {
  padding: clamp(24px, 4vw, 42px);
}

.image-story h3,
.detail-list h3,
.trust-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.image-story p,
.detail-list p,
.trust-item p {
  margin: 0;
  color: var(--muted);
}

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

.detail-list div,
.trust-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.detail-list div {
  padding: 28px;
}

.detail-list span {
  display: block;
  margin-bottom: 30px;
  color: var(--clay);
  font-weight: 800;
}

.split-scene {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.split-scene img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.split-scene img.photo-collage {
  aspect-ratio: 1 / 1;
}

.split-scene p {
  max-width: 580px;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 580px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
}

.activity-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--clay);
  content: "";
}

.trust {
  background: #ebe6dc;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.trust-item {
  padding: 30px;
}

.visit-flow {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--pine);
}

.visit-intro {
  position: sticky;
  top: 112px;
  max-width: 620px;
}

.visit-intro p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
}

.visit-steps {
  display: grid;
  gap: 14px;
}

.visit-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-steps article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-steps span {
  color: var(--brass);
  font-weight: 800;
}

.visit-steps h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.visit-steps p {
  grid-column: 2;
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 420px);
  gap: clamp(32px, 7vw, 94px);
  align-items: center;
  padding: clamp(78px, 10vw, 132px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--asphalt);
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 650px;
}

.contact-panel {
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
}

.contact-panel dl {
  margin: 22px 0 0;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-panel dt {
  color: var(--muted);
}

.contact-panel dd {
  margin: 0;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #11110f;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .nav {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding-bottom: 54px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 58px;
  }

  .hero-signature {
    display: none;
  }

  .hero-copy {
    font-size: 17px;
  }

  .intro-grid,
  .feature-band,
  .space-layout,
  .split-scene,
  .trust-grid,
  .visit-flow,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-copy {
    padding: 54px 18px;
  }

  .feature-media {
    min-height: 360px;
  }

  .section-heading {
    text-align: left;
  }

  .visit-intro {
    position: static;
  }

  .split-scene img {
    order: 2;
  }

  .activity-list {
    grid-template-columns: 1fr;
    margin: 24px 0;
  }

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .intro h2,
  .feature-copy h2,
  .section-heading h2,
  .split-scene h2,
  .trust h2,
  .visit-flow h2,
  .contact h2 {
    font-size: 28px;
  }

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

  h1,
  h2,
  h3,
  p {
    word-break: break-all;
  }

  .hero-copy,
  .lead-stack p,
  .feature-copy p,
  .section-heading p,
  .split-scene p,
  .trust p,
  .visit-flow p,
  .contact p {
    max-width: 100%;
  }

  .visit-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .visit-steps p {
    grid-column: auto;
  }
}
