:root {
  --ink: #17130f;
  --paper: #f6f0e7;
  --gold: #c99c4a;
  --muted: #756b60;
  --line: rgba(74, 55, 32, 0.16);
  --serif: "Noto Serif SC", "Songti SC", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: #0d0b09;
  color: #e7d8bf;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 240, 231, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navin {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--serif);
  letter-spacing: 0.08em;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.brand small {
  display: block;
  color: var(--muted);
  font: 10px var(--sans);
  letter-spacing: 0.18em;
}
.links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.pill,
.primary {
  border-radius: 999px;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
}
.lang {
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
}
.hero {
  min-height: 700px;
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(15, 11, 8, 0.86) 0%,
      rgba(15, 11, 8, 0.54) 52%,
      rgba(15, 11, 8, 0.12) 100%
    ),
    url("assets/hero-spa.jpg") center/cover;
}
.hero-copy {
  padding: 110px 0 90px;
  max-width: 700px;
}
.eyebrow {
  color: #e5bd70;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  font: clamp(43px, 7vw, 82px)/1.08 var(--serif);
  margin: 18px 0 22px;
  letter-spacing: 0.03em;
}
.lead {
  font-size: 18px;
  max-width: 620px;
  color: #eee4d6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.primary {
  background: var(--gold);
  color: #17110a;
  font-weight: 700;
  padding: 14px 24px;
}
.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 13px 23px;
  border-radius: 999px;
}
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust div {
  background: var(--paper);
  padding: 25px;
  text-align: center;
}
.trust b {
  display: block;
  font: 22px var(--serif);
}
section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2 {
  font: clamp(34px, 4vw, 54px)/1.2 var(--serif);
  margin: 8px 0;
}
.section-head p {
  max-width: 520px;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-body {
  padding: 26px;
}
.card h3 {
  font: 25px var(--serif);
  margin: 0 0 8px;
}
.price {
  display: flex;
  justify-content: space-between;
  color: #8a652b;
  margin-top: 22px;
  font-weight: 700;
}
.dark {
  background: #16120e;
  color: #f7f0e5;
}
.dark .section-head p {
  color: #c9bcaa;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  border-top: 1px solid #6a5945;
  padding-top: 23px;
}
.step span {
  color: var(--gold);
  font: 40px var(--serif);
}
.step h3 {
  font: 23px var(--serif);
}
.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.gallery .copy {
  padding: 40px;
  align-self: center;
}
.gallery h2 {
  font: clamp(34px, 4vw, 52px)/1.2 var(--serif);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}
.tags span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.notice {
  padding: 30px;
  border-left: 3px solid var(--gold);
  background: #efe4d3;
  color: #574c40;
}
.faq {
  max-width: 850px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.contact {
  background: var(--gold);
  padding: 70px 0;
}
.contact-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.contact h2 {
  font: clamp(34px, 5vw, 58px)/1.15 var(--serif);
  margin: 0;
}
.contact .primary {
  background: #16120e;
  color: white;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.index-hero {
  background: #16120e;
  color: #f7f0e5;
  padding: 94px 0 76px;
}
.index-hero h1 {
  font: clamp(40px, 6vw, 72px) / 1.12 var(--serif);
  margin: 14px 0 18px;
}
.index-hero p {
  color: #d8cbb8;
  max-width: 760px;
  font-size: 18px;
}
.index-list {
  padding-top: 56px;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.profile-card span {
  color: #8a652b;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.profile-card h2 {
  font: 24px / 1.28 var(--serif);
  margin: 0 0 12px;
}
.profile-card p {
  color: var(--muted);
  margin: 0 0 20px;
}
.profile-card a {
  color: #8a652b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.index-note {
  color: var(--muted);
  margin-top: 28px;
}
footer {
  background: #0e0c09;
  color: #d4c7b5;
  padding: 48px 0 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
footer b {
  color: white;
}
.fine {
  border-top: 1px solid #302820;
  margin-top: 35px;
  padding-top: 20px;
  color: #887e71;
  font-size: 12px;
}
.mobile-bar {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .links a:not(.lang):not(.pill) {
    display: none;
  }
  .navin {
    height: 66px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: 640px;
    background-position: 62% center;
  }
  .hero-copy {
    padding: 95px 0 60px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .section-head,
  .contact-in {
    display: block;
  }
  section {
    padding: 72px 0;
  }
  .cards,
  .steps,
  .profile-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 380px;
  }
  .gallery .copy {
    padding: 5px;
  }
  .contact-links {
    margin-top: 28px;
  }
  .mobile-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 30;
    box-shadow: 0 8px 30px #0004;
  }
  .mobile-bar a {
    text-align: center;
    padding: 14px;
    background: #19140f;
    color: white;
  }
  .mobile-bar a:last-child {
    background: var(--gold);
    color: #17110a;
    font-weight: 700;
  }
  .wrap {
    width: min(100% - 28px, 1160px);
  }
}
