:root {
  color-scheme: light;
  --ink: #253049;
  --deep: #4a2f46;
  --mauve: #b78aad;
  --mauve-dark: #9f7399;
  --cream: #f6f0e9;
  --paper: #fffaf5;
  --sage: #9ead95;
  --coral: #c98578;
  --line: rgba(37, 48, 73, 0.16);
  --shadow: 0 24px 60px rgba(56, 42, 54, 0.22);
  --serif: "Bodoni 72", Didot, "Baskerville", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  min-height: 150px;
  padding: 42px 8vw;
  background: var(--mauve);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 3;
}

.brand {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 35, 48, 0.76), rgba(86, 55, 82, 0.36) 52%, rgba(246, 240, 233, 0.06)),
    linear-gradient(0deg, rgba(37, 48, 73, 0.22), rgba(37, 48, 73, 0));
  z-index: -1;
}

.hero-copy {
  width: min(760px, calc(100% - 16vw));
  margin-left: 8vw;
  color: var(--paper);
  padding: 72px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d1c9;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  width: min(900px, 100%);
  font-size: 4.9rem;
  text-shadow: 0 18px 48px rgba(38, 24, 36, 0.38);
}

.slogan-line {
  display: block;
  word-spacing: 0.08em;
}

.slogan-subline {
  display: block;
  margin-top: 18px;
  font-size: 2.65rem;
  font-style: italic;
  font-weight: 600;
}

h2 {
  color: var(--ink);
  font-size: 3.35rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--mauve);
  border-color: var(--mauve);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 250, 245, 0.12);
  border-color: rgba(255, 250, 245, 0.72);
  backdrop-filter: blur(10px);
}

.intro-band {
  background: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--line);
  padding: 48px 8vw;
}

.intro-band p {
  width: min(860px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.25;
  text-align: center;
}

.section {
  padding: 104px 8vw;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  columns: 3 290px;
  column-gap: 18px;
}

.gallery-item {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  display: block;
  background: transparent;
  break-inside: avoid;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(46, 37, 44, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: translateY(-4px);
  filter: saturate(1.04);
  box-shadow: var(--shadow);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
  border-radius: 8px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: 54px;
  background: var(--paper);
}

.about-media {
  align-self: stretch;
  min-height: 680px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.about-copy {
  align-self: center;
}

.about-copy h2 {
  max-width: 720px;
  margin-bottom: 32px;
}

.about-text {
  max-width: 780px;
  color: rgba(37, 48, 73, 0.86);
}

.about-text p {
  margin: 0 0 18px;
}

.about-text a {
  color: var(--deep);
  font-weight: 700;
}

.about-text.zh {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", var(--sans);
}

.booking-section {
  padding: 96px 8vw;
  background: var(--sage);
  color: var(--paper);
}

.booking-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.booking-section .eyebrow {
  color: #fff2e8;
}

.booking-section h2 {
  color: var(--paper);
  margin-bottom: 34px;
}

.booking-section .button-primary {
  background: var(--deep);
  border-color: var(--deep);
}

.site-footer {
  min-height: 170px;
  padding: 42px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(30, 24, 29, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  width: min(920px, 100%);
  max-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  gap: 12px;
}

.lightbox img {
  max-height: calc(100vh - 136px);
  width: auto;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox figcaption {
  color: var(--paper);
  font-size: 0.95rem;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 245, 0.52);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.12);
  color: var(--paper);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 250, 245, 0.22);
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 30px 6vw;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    font-size: 2rem;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-copy {
    width: min(680px, calc(100% - 12vw));
    margin-left: 6vw;
    padding: 66px 0 76px;
  }

  h1 {
    font-size: 3.65rem;
  }

  .slogan-subline {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .section,
  .intro-band,
  .booking-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .intro-band p {
    font-size: 1.65rem;
  }

  .section-heading {
    display: block;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 26px 20px;
  }

  .site-nav {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(48, 31, 44, 0.82), rgba(72, 48, 68, 0.46)),
      linear-gradient(0deg, rgba(37, 48, 73, 0.22), rgba(37, 48, 73, 0));
  }

  .hero-copy {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 56px 0 64px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .slogan-subline {
    font-size: 1.48rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .section,
  .booking-section {
    padding: 70px 20px;
  }

  .intro-band p {
    font-size: 1.35rem;
  }

  .gallery-grid {
    columns: 1;
  }

  .about-media {
    min-height: 430px;
  }

  .site-footer {
    padding: 34px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}
