:root {
  --paper: #f2efe8;
  --paper-deep: #e5e0d6;
  --ink: #171714;
  --muted: #6e6a61;
  --wine: #703f3c;
  --line: rgba(23, 23, 20, 0.2);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "SimSun", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --content: min(1380px, calc(100vw - 96px));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--wine) var(--paper);
}

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

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

::selection {
  background: var(--wine);
  color: #fff;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(242, 239, 232, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  width: max-content;
  line-height: 1;
}

.brand-en {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-cn {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  grid-template-columns: 52% 48%;
}

.hero-copy {
  display: flex;
  max-width: 740px;
  padding: 9vh 6.5vw 7vh;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.hero h1 {
  margin: 4vh 0 3vh;
  font-family: var(--serif);
  font-size: clamp(70px, 8.3vw, 146px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.hero h1 em {
  position: relative;
  margin-left: 0.58em;
  color: var(--wine);
  font-style: normal;
}

.hero h1 em::before {
  position: absolute;
  top: 50%;
  left: -0.5em;
  width: 0.32em;
  height: 1px;
  background: var(--wine);
  content: "";
}

.hero-description {
  margin: 0;
  color: #514e47;
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  margin-top: 4vh;
  align-items: center;
  gap: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

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

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.button-light:hover {
  background: #fff;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  width: max-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 25px;
  font-size: 13px;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-note {
  display: grid;
  max-width: 360px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
}

.hero-note span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: #b8b4b3;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(19, 17, 17, 0.24), transparent 35%),
    linear-gradient(130deg, rgba(112, 63, 60, 0.08), transparent 50%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) sepia(0.08) contrast(0.94);
  object-fit: cover;
  object-position: 50% 64%;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-visual img {
  transform: scale(1.015);
}

.hero-image-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: flex;
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  justify-content: space-between;
}

.vertical-type {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 17px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 48.5%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--ink);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(45px);
  }
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 150px 0;
}

.section-index {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.intro {
  display: grid;
  grid-template-columns: 15% 57% 28%;
}

.intro-statement {
  padding-right: 60px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.intro h2,
.section-heading h2,
.about h2,
.team h2,
.testimonial blockquote,
.faq h2,
.booking h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.intro h2 {
  font-size: clamp(36px, 4.3vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1.42;
}

.intro h2 span {
  color: var(--wine);
  font-style: italic;
}

.intro-body {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.intro-body p {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.services {
  border-top: 1px solid var(--line);
}

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

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 340px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-item {
  position: relative;
  display: grid;
  min-height: 138px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 8% 1fr 24% 50px;
  transition:
    padding 0.35s ease,
    background 0.35s ease;
}

.service-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.service-item:hover {
  padding: 0 24px;
  color: #fff;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-number {
  align-self: start;
  margin-top: 30px;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.service-item:hover .service-number {
  color: #cba5a0;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.service-item p,
.service-en {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.service-item:hover p,
.service-item:hover .service-en {
  color: rgba(255, 255, 255, 0.62);
}

.service-en {
  font-family: Arial, sans-serif;
  letter-spacing: 0.14em;
}

.service-item > a {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: transform 0.3s ease;
}

.service-item:hover > a {
  border-color: rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
}

.packages {
  width: 100%;
  padding-right: max(48px, calc((100vw - 1380px) / 2));
  padding-left: max(48px, calc((100vw - 1380px) / 2));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 23, 20, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.package-masthead {
  display: flex;
  margin-bottom: 75px;
  align-items: end;
  justify-content: space-between;
}

.package-masthead h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.package-note {
  display: grid;
  width: 320px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  grid-template-columns: 120px 1fr;
}

.package-note span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.package-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.7;
}

.package-editorial {
  border-top: 1px solid var(--ink);
}

.package-card {
  position: relative;
  display: grid;
  min-height: 620px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.package-card-entry {
  grid-template-columns: 30% 70%;
}

.package-cover {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 35px;
  background: var(--wine);
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
}

.package-cover::after {
  position: absolute;
  right: -20%;
  bottom: -16%;
  width: 90%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.package-cover::before {
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.package-issue {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.package-cover p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.package-vertical {
  position: absolute;
  top: 34px;
  right: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.package-content {
  display: flex;
  padding: 55px 6vw;
  flex-direction: column;
}

.package-title {
  display: flex;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.package-title span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.package-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.package-price {
  margin: 0;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.82;
  white-space: nowrap;
}

.package-price sup {
  margin-right: 7px;
  font-size: 14px;
  font-weight: 400;
  vertical-align: top;
}

.package-lead {
  max-width: 580px;
  margin: 30px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.package-content ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.package-content li {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  font-size: 12px;
}

.package-content li span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 8px;
}

.package-select {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 17px;
}

.package-select span {
  transition: transform 0.25s ease;
}

.package-select:hover span {
  transform: rotate(45deg);
}

.package-card-featured {
  background: #181817;
  color: #f2efe8;
  grid-template-columns: 53% 47%;
}

.package-recommend {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 10px 18px;
  background: var(--wine);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.package-image {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.package-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 55%);
  content: "";
}

.package-image img {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(0.92);
  object-fit: cover;
  object-position: center 24%;
}

.package-image div {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 38px;
  left: 40px;
}

.package-image span {
  color: rgba(255, 255, 255, 0.65);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.package-image b {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.package-card-featured .package-title,
.package-card-featured .package-content li {
  border-color: rgba(255, 255, 255, 0.18);
}

.package-card-featured .package-title span,
.package-card-featured .package-lead {
  color: rgba(255, 255, 255, 0.58);
}

.package-card-featured .package-price,
.package-card-featured .package-content li span {
  color: #c9958f;
}

.package-card-featured .package-select {
  border-color: rgba(255, 255, 255, 0.8);
}

.package-card-archive {
  grid-template-columns: 58% 42%;
}

.package-archive-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.package-archive-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(57, 33, 30, 0.14);
  content: "";
}

.package-archive-visual img {
  width: 100%;
  height: 100%;
  filter: saturate(0.52) sepia(0.12) contrast(0.92);
  object-fit: cover;
  object-position: center 20%;
}

.package-archive-visual span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-align: right;
}

.package-footnote {
  display: flex;
  padding-top: 20px;
  color: var(--muted);
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
}

.package-footnote p {
  margin: 0;
}

.work {
  width: 100%;
  padding-right: max(48px, calc((100vw - 1380px) / 2));
  padding-left: max(48px, calc((100vw - 1380px) / 2));
  background: #191918;
  color: #f2efe8;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.55);
}

.work-filters {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 34px;
}

.work-filters button {
  padding: 0 0 13px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.work-filters button.active,
.work-filters button:hover {
  border-color: #fff;
  color: #fff;
}

.work-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #30302f;
  grid-row: span 2;
  text-align: left;
}

.work-card-wide {
  grid-column: span 2;
}

.work-card-tall {
  grid-row: span 3;
}

.work-card[hidden] {
  display: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  filter: saturate(0.6) sepia(0.1) contrast(0.92);
  object-fit: cover;
  transition:
    filter 0.5s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:nth-child(1) img {
  object-position: center 34%;
}

.work-card:nth-child(2) img {
  object-position: center 30%;
}

.work-card:nth-child(3) img {
  object-position: center 24%;
}

.work-card:nth-child(6) img {
  object-position: center 24%;
}

.work-card-color img {
  filter: saturate(0.88) contrast(0.98);
}

.work-card-rust img {
  object-position: 72% 30%;
}

.work-card-blue img {
  object-position: center 38%;
}

.work-card:hover img {
  filter: saturate(0.9) sepia(0.02);
  transform: scale(1.035);
}

.work-card-color:hover img {
  filter: saturate(1) contrast(1);
}

.work-card::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  content: "";
}

.work-meta {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.work-meta b {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.work-meta i {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.work-tip {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
}

.about {
  display: grid;
  gap: 9%;
  grid-template-columns: 47% 44%;
}

.about-image {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(0.9);
  object-fit: cover;
  object-position: center 36%;
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.32), transparent 35%);
  content: "";
}

.about-image span {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.about-copy {
  padding: 70px 0 0;
}

.about h2,
.faq h2,
.booking h2 {
  margin: 30px 0 42px;
  font-size: clamp(44px, 5.2vw, 76px);
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.team h2 {
  margin: 30px 0 42px;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.about-text {
  display: grid;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.about-text p {
  margin: 0;
}

.principles {
  margin-top: 70px;
  border-top: 1px solid var(--ink);
}

.principles div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
}

.principles span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.principles p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
}

.process {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  min-height: 340px;
  padding: 28px 30px 36px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-card > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.process-card h3 {
  margin: 120px 0 18px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.team {
  display: grid;
  width: 100%;
  padding: 0;
  background: var(--wine);
  color: #fff;
  grid-template-columns: 55% 45%;
}

.team-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.team-visual img {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(0.9);
  object-fit: cover;
  object-position: center 42%;
}

.team-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(58, 31, 28, 0.12);
  content: "";
}

.team-badge {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  width: 215px;
  height: 140px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.team-badge span {
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.team-badge b {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.team-copy {
  display: flex;
  padding: 9vw 7vw;
  flex-direction: column;
  justify-content: center;
}

.team-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.team-features {
  margin: 48px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.team-features li {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 42px 1fr;
  font-size: 13px;
}

.team-features span {
  color: rgba(255, 255, 255, 0.48);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.team-copy .button {
  width: max-content;
}

.testimonial {
  display: flex;
  max-width: 1040px;
  padding-top: 180px;
  padding-bottom: 180px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-mark {
  height: 80px;
  margin-top: 45px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.testimonial blockquote {
  margin: 20px 0 35px;
  font-size: clamp(28px, 3.7vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.55;
}

.quote-author {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-stats {
  display: grid;
  width: 100%;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-stats div {
  display: flex;
  min-height: 160px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-stats div:last-child {
  border-right: 0;
}

.testimonial-stats b {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.testimonial-stats span {
  color: var(--muted);
  font-size: 11px;
}

.faq {
  display: grid;
  border-top: 1px solid var(--line);
  gap: 10%;
  grid-template-columns: 36% 54%;
}

.faq-heading > p:last-child {
  max-width: 270px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 17px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 90%;
  margin: -4px 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.booking {
  display: grid;
  width: 100%;
  padding-right: max(48px, calc((100vw - 1380px) / 2));
  padding-left: max(48px, calc((100vw - 1380px) / 2));
  background: var(--paper-deep);
  gap: 10%;
  grid-template-columns: 40% 50%;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
  font-size: 13px;
}

.booking-contact {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.booking-contact div {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.booking-contact span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.booking-contact b {
  font-size: 12px;
  font-weight: 400;
}

.booking-form {
  padding: 48px;
  background: var(--paper);
}

.booking-form label {
  display: block;
  margin-bottom: 25px;
}

.booking-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
}

.form-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
  transition: border-color 0.2s ease;
}

.booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 8px) 50%,
    calc(100% - 3px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--wine);
}

.booking-form .invalid {
  border-color: #a22c28;
}

.consent {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--wine);
}

.consent span {
  margin: 0 !important;
  color: var(--muted);
  font-size: 10px !important;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 20px;
  margin: 15px 0 0;
  color: var(--wine);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 80px 48px 30px;
  background: #171714;
  color: #f2efe8;
}

.footer-brand .brand-en {
  font-size: clamp(48px, 7vw, 110px);
  letter-spacing: -0.075em;
}

.footer-brand .brand-cn {
  font-size: 18px;
}

.site-footer > p {
  margin: 24px 0 60px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 15px;
}

.footer-links {
  display: flex;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 38px;
  font-size: 12px;
}

.footer-links a:hover {
  color: #cba5a0;
}

.footer-bottom {
  display: grid;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-bottom .icp-link {
  justify-self: center;
  text-align: center;
}

.footer-bottom .back-to-top {
  justify-self: end;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 60px;
  background: rgba(15, 15, 14, 0.96);
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 85vh;
  object-fit: contain;
  transform: scale(0.97);
  transition: transform 0.4s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 200;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 64px);
  }

  .site-header {
    padding: 0 32px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-copy {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .intro {
    grid-template-columns: 10% 60% 30%;
  }

  .intro-statement {
    padding-right: 30px;
  }

  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .about-image {
    height: 650px;
  }

  .process-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .team-copy {
    padding: 7vw 5vw;
  }

  .package-content {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .booking-form {
    padding: 36px;
  }
}

@media (max-width: 820px) {
  :root {
    --content: calc(100vw - 40px);
    --header-height: 70px;
  }

  .site-header,
  .site-header.scrolled {
    height: var(--header-height);
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 7px;
    border: 0;
    background: transparent;
    align-content: center;
    gap: 7px;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 120px 30px 35px;
    background: var(--paper);
    opacity: 0;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 32px;
  }

  .mobile-menu-meta {
    display: flex;
    color: var(--muted);
    flex-direction: column;
    font-size: 10px;
    gap: 4px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 76svh;
    padding: 12vh 24px 50px;
  }

  .hero h1 {
    margin-top: 5vh;
    font-size: clamp(67px, 20vw, 118px);
  }

  .hero-description br {
    display: none;
  }

  .hero-note {
    margin-top: 8vh;
  }

  .hero-visual {
    min-height: 92svh;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro {
    display: block;
  }

  .section-index {
    margin-bottom: 50px;
  }

  .intro-statement {
    padding: 0;
  }

  .intro h2 br {
    display: none;
  }

  .intro-body {
    margin-top: 50px;
    padding-top: 30px;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .service-item {
    min-height: 115px;
    grid-template-columns: 42px 1fr 42px;
  }

  .service-item:hover {
    padding: 0 12px;
  }

  .service-en {
    display: none;
  }

  .service-item h3 {
    font-size: 24px;
  }

  .service-item p {
    font-size: 9px;
  }

  .packages {
    padding-right: 20px;
    padding-left: 20px;
  }

  .package-masthead {
    display: block;
    margin-bottom: 50px;
  }

  .package-note {
    margin-top: 45px;
  }

  .package-card-entry,
  .package-card-featured,
  .package-card-archive {
    grid-template-columns: 1fr;
  }

  .package-cover {
    min-height: 450px;
    grid-row: auto;
  }

  .package-cover p {
    font-size: 72px;
  }

  .package-content {
    min-height: 600px;
    padding: 48px 35px;
  }

  .package-card-featured .package-image {
    grid-row: auto;
  }

  .package-image,
  .package-archive-visual {
    min-height: 65svh;
  }

  .package-card-archive .package-content {
    grid-row: 2;
  }

  .package-card-archive .package-archive-visual {
    grid-row: 1;
  }

  .work {
    padding-right: 20px;
    padding-left: 20px;
  }

  .work-filters {
    overflow-x: auto;
    gap: 24px;
  }

  .work-filters button {
    flex: 0 0 auto;
  }

  .work-grid {
    grid-auto-rows: 180px;
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card-wide {
    grid-column: span 2;
  }

  .about {
    display: flex;
    gap: 0;
    flex-direction: column;
  }

  .about-image {
    height: 75svh;
  }

  .about-copy {
    padding-top: 70px;
  }

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

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

  .process-card {
    min-height: 270px;
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card h3 {
    margin-top: 70px;
  }

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

  .team-visual {
    min-height: 65svh;
  }

  .team-copy {
    padding: 90px 24px;
  }

  .testimonial {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq {
    display: block;
  }

  .faq-heading {
    margin-bottom: 60px;
  }

  .booking {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
  }

  .booking-intro {
    margin-bottom: 60px;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 520px) {
  .brand-en {
    font-size: 20px;
  }

  .hero-copy {
    min-height: 690px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    min-height: 76svh;
  }

  .intro h2,
  .section-heading h2,
  .about h2,
  .team h2,
  .faq h2,
  .booking h2 {
    font-size: 40px;
  }

  .package-masthead h2 {
    font-size: 70px;
  }

  .package-note {
    width: 100%;
  }

  .package-cover {
    min-height: 360px;
    padding: 26px;
  }

  .package-cover p {
    font-size: 54px;
  }

  .package-content {
    min-height: 0;
    padding: 38px 22px;
  }

  .package-title {
    display: block;
  }

  .package-title h3 {
    font-size: 40px;
  }

  .package-price {
    margin-top: 28px;
    font-size: 72px;
  }

  .package-lead {
    font-size: 14px;
  }

  .package-image,
  .package-archive-visual {
    min-height: 490px;
  }

  .package-footnote {
    flex-direction: column;
    gap: 6px;
  }

  .work-grid {
    display: block;
  }

  .work-card {
    width: 100%;
    height: 480px;
    margin-bottom: 12px;
  }

  .work-card-wide {
    height: 300px;
  }

  .about-image {
    height: 580px;
  }

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

  .process-card {
    min-height: 230px;
    border-right: 0;
  }

  .process-card h3 {
    margin-top: 48px;
  }

  .team-visual {
    min-height: 480px;
  }

  .team-badge {
    width: 180px;
    height: 115px;
  }

  .testimonial {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .testimonial-stats {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .testimonial-stats div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-stats div:last-child {
    border-bottom: 0;
  }

  .booking {
    padding-top: 90px;
  }

  .booking-form {
    padding: 28px 20px;
  }

  .form-row {
    display: block;
  }

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

  .footer-brand .brand-cn {
    font-size: 14px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 0;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom .icp-link {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom .back-to-top {
    margin-top: 10px;
    align-self: flex-start;
  }

  .lightbox {
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual refinement: stronger hierarchy, clearer reading, consistent feedback. */
:root {
  --paper: #f3f3f0;
  --paper-deep: #e3e7e4;
  --ink: #181a18;
  --muted: #60645f;
  --wine: #7a3437;
  --line: rgba(24, 26, 24, 0.18);
}

body {
  color: var(--ink);
  font-size: 16px;
}

.brand-en,
.hero h1,
.intro h2,
.section-heading h2,
.about h2,
.team h2,
.testimonial blockquote,
.faq h2,
.booking h2,
.footer-brand .brand-en {
  letter-spacing: 0;
}

.site-header.scrolled {
  background: rgba(243, 243, 240, 0.94);
  box-shadow: 0 12px 34px rgba(24, 26, 24, 0.06);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

.hero h1 {
  line-height: 0.96;
}

.hero-description {
  color: #484c47;
}

.button {
  min-height: 54px;
  box-shadow: 0 8px 24px rgba(24, 26, 24, 0.08);
}

.button:hover {
  box-shadow: 0 12px 28px rgba(24, 26, 24, 0.13);
}

.section-heading > p,
.intro-body p,
.about-text,
.team-copy > p:not(.eyebrow),
.faq-heading > p:last-child,
.booking-intro > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.95;
}

.service-item p,
.service-en {
  font-size: 13px;
}

.service-item > a {
  background: rgba(255, 255, 255, 0.38);
}

.process-card {
  transition: background 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.process-card p,
.faq-list details p {
  font-size: 14px;
  line-height: 1.9;
}

.work-filters button {
  min-height: 40px;
  font-size: 13px;
}

.work-card {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-image img,
.team-visual img {
  transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img,
.team-visual:hover img {
  filter: grayscale(0.72) contrast(0.96);
  transform: scale(1.02);
}

.faq-list summary {
  min-height: 74px;
  font-size: 18px;
}

.booking-form {
  border: 1px solid rgba(24, 26, 24, 0.08);
  box-shadow: 0 24px 60px rgba(24, 26, 24, 0.08);
}

.booking-form label > span:first-child,
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px 0;
}

.footer-bottom {
  min-height: 86px;
  align-items: center;
  grid-template-areas:
    "icp icp"
    "copyright back";
  grid-template-columns: 1fr auto;
  row-gap: 22px;
}

.footer-bottom > span:first-child {
  grid-area: copyright;
}

.footer-bottom .icp-link {
  grid-area: icp;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.footer-bottom .back-to-top {
  grid-area: back;
}

.footer-bottom .icp-link:hover {
  color: #d4a7a8;
}

@media (max-width: 820px) {
  .hero h1 {
    line-height: 1;
  }

  .section-heading > p,
  .intro-body p,
  .about-text,
  .team-copy > p:not(.eyebrow),
  .faq-heading > p:last-child,
  .booking-intro > p:not(.eyebrow) {
    font-size: 14px;
  }

  .service-item p {
    font-size: 12px;
  }

  .footer-bottom {
    min-height: 0;
    gap: 18px;
  }

  .footer-bottom .icp-link {
    align-self: flex-start;
    text-align: left;
  }
}
