﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Serif+TC:wght@400;500;600&display=swap");

:root {
  --bg: #0b0c0b;
  --panel: #111110;
  --panel-2: #151310;
  --gold: #D1B07A;
  --gold-light: #D1B07A;
  --text: #F5F1EB;
  --muted: rgba(245, 241, 235, 0.64);
  --line: rgba(209, 176, 122, 0.34);
  --line-strong: rgba(209, 176, 122, 0.5);
  --display: "Cormorant Garamond", "Noto Serif TC", Georgia, "Times New Roman", serif;
  --body: "Noto Serif TC", "Cormorant Garamond", "Microsoft JhengHei", "Microsoft YaHei", serif;
  --serif: var(--display);
  --sans: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  line-height: 1.8;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.54), rgba(5, 5, 4, 0));
}

.nav-shell {
  width: calc(100% - clamp(96px, 14vw, 220px));
  min-height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-top: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-family: var(--display);
  line-height: 1;
  white-space: nowrap;
}

.brand-lockup {
  width: 220px;
  min-width: 220px;
  justify-content: center;
  margin-top: 32px;
}

.brand-full-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.56));
}

.brand-logo img {
  width: 220px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.lotus {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--gold);
}

.lotus path,
.small-lotus path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 46px;
  color: rgba(245, 241, 235, 0.84);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1;
}

.main-nav a {
  position: relative;
  padding: 6px 0 15px;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding: 6px 0 15px;
  color: rgba(245, 241, 235, 0.66);
  font-size: 15px;
  line-height: 1;
}

.lang-switch button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lang-switch button.active {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070807;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.65) 38%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-luxury-spa.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.86;
  filter: saturate(0.82) contrast(0.95) brightness(0.76);
  transform: scale(1.08);
  animation: heroZoom 6s ease-out forwards;
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 12vw));
  max-width: 620px;
  margin: 0;
  padding-left: 6vw;
  padding-top: 8vh;
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  color: #F5F1EB;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 10px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-tagline {
  margin: 0 0 34px;
  color: rgba(245, 241, 235, 0.78);
  font-family: var(--body);
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

.divider,
.center-divider {
  position: relative;
  width: 216px;
  height: 18px;
  margin: 14px 0 24px;
  background:
    linear-gradient(var(--line), var(--line)) left 50% / 86px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) right 50% / 86px 1px no-repeat;
}

.divider::after,
.center-divider::after {
  content: "✥";
  position: absolute;
  inset: -2px 0 auto;
  color: rgba(209, 176, 122, 0.7);
  text-align: center;
  font-size: 12px;
}

.center-divider {
  margin: 12px auto 23px;
  width: 168px;
}

.hero-contact {
  display: grid;
  gap: 7px;
  margin-bottom: 28px;
  color: rgba(245, 241, 235, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.hero-contact a,
.booking-copy a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-contact a {
  display: grid;
  align-items: start;
  gap: 1px;
}

.contact-kicker {
  margin: 0 0 3px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 16px;
}

.contact-label {
  min-width: 46px;
  color: rgba(245, 241, 235, 0.62);
}

.contact-label::after {
  content: "：";
}

.icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(209, 176, 122, 0.42);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  opacity: 0.72;
}

.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 36px;
  padding: 0 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
}

.primary-button:hover,
.outline-button:hover {
  color: #000000;
  background: var(--gold);
  border-color: var(--gold);
}

.outline-button {
  margin: 32px auto 0;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
}

.intro-section {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 410px;
  background:
    radial-gradient(circle at 30% 30%, rgba(209, 176, 122, 0.06), transparent 32%),
    linear-gradient(180deg, #121412, #0f1110);
  border-bottom: 1px solid rgba(209, 176, 122, 0.18);
}

.intro-stilllife {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(15, 16, 15, 0.34)), url("../assets/ref-stilllife.png") left center / cover no-repeat;
}

.intro-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 74px clamp(28px, 8vw, 120px) 72px clamp(20px, 4vw, 64px);
  text-align: center;
}

.intro-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
}

.intro-copy p {
  max-width: 670px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-preview {
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 78px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(209, 176, 122, 0.06), transparent 32%),
    #101211;
  border-bottom: 1px solid var(--line);
}

.service-section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-section-heading h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
}

.service-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.round-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 76px clamp(42px, 9vw, 130px);
  max-width: 1040px;
  margin: 0 auto;
}

.service-card {
  cursor: pointer;
  min-width: 0;
}

.service-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

.service-grid .service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(8, 8, 7, 0.72);
  border: 1px solid rgba(209, 176, 122, 0.26);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-grid .service-card:hover,
.service-grid .service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(209, 176, 122, 0.82);
  background: rgba(12, 12, 11, 0.9);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(209, 176, 122, 0.22);
  filter: saturate(0.82) brightness(0.78);
}

.service-card__body {
  display: grid;
  align-content: start;
  padding: 24px 24px 26px;
}

.service-card__meta {
  margin: 0 0 10px;
  color: rgba(232, 222, 208, 0.62);
  font-size: 13px;
}

.service-grid h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.22;
}

.service-card__subtitle {
  margin: 0 0 14px;
  color: #E8DED0;
  font-size: 15px;
}

.service-card__text {
  margin: 0;
  color: rgba(232, 222, 208, 0.72);
  font-size: 14px;
  line-height: 1.9;
}

.service-grid button {
  justify-self: start;
  margin-top: 22px;
  padding: 0;
  color: var(--gold);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
}

.round-grid .service-card {
  display: grid;
  justify-items: center;
  background: transparent;
  border: 0;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.round-grid .service-card:hover,
.round-grid .service-card:focus-visible {
  transform: translateY(-5px);
}

.round-grid img {
  width: min(176px, 52vw);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 22px;
  border: 1px solid rgba(209, 176, 122, 0.58);
  border-radius: 50%;
  filter: saturate(0.82) brightness(0.82);
  box-shadow: 0 0 0 7px rgba(209, 176, 122, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.round-grid .service-card:hover img,
.round-grid .service-card:focus-visible img {
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(209, 176, 122, 0.08);
}

.round-grid h3 {
  margin: 0 0 9px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.round-grid p {
  margin: 0;
  color: rgba(232, 222, 208, 0.7);
  font-size: 16px;
  line-height: 1.65;
}

.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
}

.service-modal.service-modal-target {
  display: none;
}

.service-modal.service-modal-target:target {
  display: grid;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  animation: modalFade 180ms ease-out both;
}

.service-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 40px 44px 42px;
  color: #E8DED0;
  background:
    linear-gradient(180deg, rgba(209, 176, 122, 0.045), transparent 38%),
    #0B0B0B;
  border: 1px solid var(--gold);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  animation: modalRise 220ms ease-out both;
}

.service-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  color: var(--gold);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.service-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.service-modal h2 {
  margin: 0 38px 18px 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.16;
}

.service-modal__intro {
  margin: 0 0 28px;
  color: #E8DED0;
  font-size: 15px;
  line-height: 2;
}

.service-modal__fit {
  padding-top: 22px;
  border-top: 1px solid rgba(209, 176, 122, 0.3);
}

.service-modal__fit h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.service-modal__fit ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-modal__fit li {
  position: relative;
  padding-left: 18px;
  color: #E8DED0;
  font-size: 15px;
}

.service-modal__fit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.values-section {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 433px;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 1) 0 35%, rgba(11, 11, 10, 0.62) 35% 100%),
    url("../assets/about.jpg") right center / auto 100% no-repeat,
    #0e0e0d;
  border-bottom: 1px solid var(--line);
}

.values-copy {
  padding: 54px 38px 46px max(32px, calc((100vw - 1180px) / 2));
  border-right: 1px solid var(--line-strong);
}

.values-copy h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
}

.small-lotus {
  width: 34px;
  height: 34px;
  margin: 0 0 19px;
  color: var(--gold);
  object-fit: contain;
}

.values-copy p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 14px;
}

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

.values-grid article {
  min-height: 216px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px;
  text-align: center;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.values-grid article:nth-child(2n) {
  border-right: 0;
}

.values-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.value-icon {
  color: var(--gold-light);
  font-size: 42px;
  line-height: 1;
}

.values-grid h3 {
  margin: 14px 0 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.values-grid p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-section {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: clamp(28px, 7vw, 105px);
  min-height: 174px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, #141411, #111211);
  border-bottom: 1px solid var(--line);
}

.booking-image {
  align-self: stretch;
  background: url("../assets/ref-booking.png") left center / cover no-repeat;
}

.booking-copy h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
}

.booking-copy p {
  margin: 0;
  color: rgba(209, 176, 122, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.booking-copy a {
  color: rgba(245, 241, 235, 0.78);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.9fr;
  gap: clamp(32px, 8vw, 120px);
  padding: 40px max(32px, calc((100vw - 1180px) / 2)) 34px;
  background: #101110;
  color: var(--muted);
}

.site-footer .brand {
  margin-bottom: 17px;
}

.site-footer .brand-logo img {
  width: 220px;
  height: auto;
  max-height: 170px;
}

.site-footer .lotus {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.footer-about p {
  max-width: 330px;
  margin: 0 0 17px;
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

.footer-contact a {
  margin: 8px 0;
}

.social-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.5;
}

.social-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(209, 176, 122, 0.4);
  border-radius: 50%;
}

.social-text {
  color: rgba(209, 176, 122, 0.88);
  white-space: nowrap;
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .lang-switch {
    margin-left: 0;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    margin: 0;
    padding: 18px;
    background: rgba(10, 10, 9, 0.98);
    border: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    display: grid;
    gap: 8px;
  }

  .intro-section,
  .values-section,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-stilllife,
  .booking-image {
    min-height: 210px;
  }

  .values-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    padding: 42px 28px;
  }

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

  .booking-section {
    gap: 18px;
    padding: 0 24px 32px;
    text-align: center;
  }

  .booking-copy a {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .brand-lockup {
    width: 132px;
    min-width: 132px;
    margin-top: 18px;
  }

  .brand-full-img {
    width: 132px;
    height: auto;
  }

  .lotus {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-photo {
    inset: 0;
    background-position: 70% center;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding-left: 16px;
    padding-top: 6vh;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-tagline {
    margin-bottom: 28px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .hero-contact,
  .booking-copy a {
    font-size: 14px;
  }

  .contact-kicker {
    font-size: 15px;
  }

  .intro-copy {
    padding: 36px 20px;
  }

  .service-grid,
  .round-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-preview {
    padding: 50px 24px 56px;
  }

  .service-section-heading {
    margin-bottom: 26px;
  }

  .service-section-heading h2 {
    font-size: 32px;
  }

  .round-grid {
    gap: 48px;
  }

  .round-grid img {
    width: min(172px, 56vw);
  }

  .round-grid h3 {
    font-size: 24px;
  }

  .service-card__body {
    padding: 22px 20px 24px;
  }

  .service-modal {
    padding: 18px;
  }

  .service-modal__dialog {
    width: 90vw;
    max-height: 84vh;
    padding: 30px 24px 28px;
  }

  .service-modal h2 {
    margin-right: 28px;
    font-size: 30px;
  }

  .service-modal__intro,
  .service-modal__fit li {
    font-size: 14px;
  }

  .values-grid article,
  .values-grid article:nth-child(2n),
  .values-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }
}
