:root {
  --ink: #123f36;
  --muted: #596d67;
  --line: #e7e2d4;
  --paper: #fffdf6;
  --soft: #f4f7ed;
  --ivy: #165444;
  --ivy-dark: #0d332c;
  --mint: #c7dfcf;
  --tiffany: #55c7bf;
  --tiffany-dark: #168a84;
  --sun: #ffd166;
  --sky: #edf8f6;
  --warm: #fff3d3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 63, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf6, #f7f4e8 42%, #fffaf1 100%);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(18, 63, 54, 0.08);
  flex-wrap: wrap;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  width: 240px;
}

.brand img {
  height: auto;
  object-fit: contain;
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  color: var(--tiffany-dark);
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(22, 138, 132, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-height: 32px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--tiffany);
  color: #062b28;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding-bottom: 106px;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  animation: heroFade 24s infinite;
  transform: scale(1.04);
}

.hero-media img:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero-media img:nth-child(2) {
  animation-delay: 6s;
}

.hero-media img:nth-child(3) {
  animation-delay: 12s;
}

.hero-media img:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1.09);
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 6vw, 90px) 8vh;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(18, 63, 54, 0.14);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tiffany-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--tiffany);
  color: #062b28;
  box-shadow: 0 12px 30px rgba(85, 199, 191, 0.32);
}

.button.secondary {
  border: 1px solid var(--tiffany-dark);
  color: var(--tiffany-dark);
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-social a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(85, 199, 191, 0.78);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 10px 24px rgba(13, 51, 44, 0.2);
}

.hero-social img {
  width: 100%;
  height: 100%;
}

.booking-card {
  position: absolute;
  left: clamp(18px, 6vw, 90px);
  right: clamp(18px, 6vw, 90px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.55fr);
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 50px rgba(8, 35, 31, 0.2);
}

.booking-card div,
.booking-card a {
  min-height: 88px;
  display: grid;
  align-content: center;
  padding: 18px 22px;
}

.booking-card div {
  border-right: 1px solid var(--line);
}

.booking-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.35;
}

.booking-card a {
  justify-items: center;
  background: var(--tiffany);
  color: #062b28;
  font-weight: 900;
}

.band {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 90px);
}

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

.section-heading p:not(.eyebrow),
.intro-grid > p,
.location-band > p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-facts div {
  min-height: 124px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 54, 0.07);
}

.quick-facts div:nth-child(2) {
  border-top: 5px solid var(--tiffany);
}

.quick-facts div:nth-child(3) {
  border-top: 5px solid var(--tiffany);
}

.quick-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ivy-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.quick-facts span {
  color: var(--muted);
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background:
    linear-gradient(135deg, #f5f3e8, #fffdf6 62%, #f2f7ee);
}

.feature-photo img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

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

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list article,
.amenities article {
  padding-top: 18px;
  border-top: 1px solid rgba(30, 107, 87, 0.24);
}

.feature-list p,
.amenities p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps-band {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 6vw, 90px);
  background: var(--white);
}

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

.steps-grid article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 48, 45, 0.08);
}

.steps-grid article:nth-child(2) {
  border-top: 5px solid var(--tiffany);
}

.steps-grid article:nth-child(3) {
  border-top: 5px solid var(--tiffany);
}

.steps-grid span {
  color: var(--tiffany);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.room-main {
  height: 100%;
  min-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.amenities {
  display: grid;
  gap: 24px;
  align-content: center;
}

.amenities span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--tiffany-dark);
  font-weight: 900;
}

.room-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 5vw, 56px);
  overflow-x: auto;
  padding-bottom: 6px;
}

.room-strip img {
  height: 230px;
  min-width: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(24, 48, 45, 0.12);
}

.location-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(135deg, #ffd600, #ffdf33 58%, #ffe978);
  color: #071f1d;
}

.location-band .eyebrow {
  color: var(--tiffany-dark);
}

.location-band p {
  color: rgba(7, 31, 29, 0.74);
}

.property-band {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 90px);
  background: var(--white);
}

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

.property-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 48, 45, 0.1);
}

.property-grid img {
  height: 280px;
  object-fit: cover;
}

.property-grid div {
  padding: 22px;
}

.property-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--tiffany-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--warm);
}

figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #062b28;
  background: rgba(85, 199, 191, 0.94);
  font-size: 0.9rem;
  font-weight: 800;
}

.social-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(135deg, #fffdf6, #f5f3e8 52%, #d7f7f4);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-links a {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(30, 107, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(24, 48, 45, 0.1);
}

.social-links img {
  width: 64px;
  height: 64px;
}

.social-links strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.social-contact strong {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-contact img {
  width: 34px;
  height: 34px;
}

.contact {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 90px);
  background: linear-gradient(135deg, #d7f7f4, #fffdf6, #f2f7ee);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(30, 107, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-actions {
  flex-direction: column;
}

.contact-link {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.contact-link strong {
  color: var(--ivy-dark);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 90px);
  color: #071f1d;
  background: linear-gradient(135deg, #ffd600, #ffdf33 58%, #ffe978);
}

.site-footer img {
  width: 230px;
  height: auto;
  object-fit: contain;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.86);
  box-shadow: 0 10px 26px rgba(7, 31, 29, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 840px;
    padding-bottom: 310px;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .booking-card div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .feature-band,
  .room-layout,
  .location-band,
  .social-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-photo img,
  .room-main {
    min-height: 420px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    width: 240px;
  }

  .language-switch {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .language-switch button {
    flex: 1;
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero {
    min-height: 820px;
    padding-bottom: 320px;
  }

  .hero-media img {
    object-position: center center;
  }

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

  .booking-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .booking-card div,
  .booking-card a {
    min-height: 68px;
    padding: 13px 16px;
  }

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

  .band,
  .contact,
  .feature-copy,
  .steps-band,
  .property-band,
  .location-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  figure,
  figure.wide {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
