:root {
  --ink: #302925;
  --ink-soft: #625952;
  --muted: #8d8580;
  --moyo: #9b8170;
  --moyo-deep: #715d50;
  --sand: #ede5dc;
  --soft: #f7f5f2;
  --paper: #fffdfb;
  --white: #ffffff;
  --line: rgba(74, 62, 55, 0.16);
  --shadow: 0 24px 70px rgba(56, 43, 35, 0.12);
  --serif: Georgia, "Times New Roman", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans: "Microsoft YaHei", "PingFang SC", "PingFang TC", "Microsoft JhengHei", "Hiragino Sans GB", Arial, sans-serif;
  --shell: 1220px;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.english-page {
  font-family: Arial, Helvetica, var(--sans);
}

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

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

a {
  color: inherit;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid #d6b393;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: 14px;
  padding: 10px 16px;
  color: var(--white);
  text-decoration: none;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--moyo-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4.25vw, 68px);
  line-height: 1.15;
}

.english-page h2 {
  letter-spacing: -0.025em;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-solid {
  color: var(--ink);
  background: var(--white);
}

.button-solid:hover {
  background: var(--sand);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.button-dark:hover {
  background: var(--moyo-deep);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(75, 60, 50, 0.1);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), 1420px);
  min-height: var(--header-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(72, 58, 48, 0.1);
}

.brand span {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 1px;
  background: var(--moyo);
  transition: right 180ms ease;
}

.primary-nav a:hover::after {
  right: 0;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher a {
  min-width: 38px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.language-switcher a.is-active {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-h)));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #43372f;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.82) contrast(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.78) 0%, rgba(40, 30, 25, 0.56) 46%, rgba(37, 28, 24, 0.15) 74%, rgba(29, 23, 20, 0.12) 100%),
    linear-gradient(180deg, rgba(30, 24, 21, 0.16), rgba(31, 24, 20, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 64px;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0 0 30px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 30px rgba(22, 16, 13, 0.26);
}

.english-page .hero-content h1 {
  max-width: 1040px;
  font-size: clamp(50px, 5.35vw, 84px);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.85;
}

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

.hero-facts {
  width: min(760px, 100%);
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts li {
  padding: 22px 22px 0 0;
  display: grid;
  gap: 5px;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero-word {
  position: absolute;
  z-index: -1;
  right: -0.02em;
  bottom: -0.31em;
  margin: 0;
  color: rgba(255, 255, 255, 0.075);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(120px, 19vw, 340px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.intro-copy {
  padding-left: clamp(0px, 3vw, 42px);
}

.intro-copy .lead {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.intro-copy > p:not(.eyebrow):not(.lead) {
  margin-bottom: 30px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--moyo);
  color: var(--moyo-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.text-link span {
  font-size: 18px;
}

.intro-visuals {
  position: relative;
  min-height: 660px;
}

.photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tall {
  inset: 0 auto 0 0;
  width: 66%;
}

.photo-tall img {
  object-position: center center;
}

.photo-small {
  right: 0;
  bottom: 52px;
  width: 47%;
  height: 39%;
  border: 12px solid var(--paper);
}

.logo-seal {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: 12px;
  width: 140px;
  height: 140px;
  padding: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(56, 43, 35, 0.16);
}

.logo-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.signature {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

.feature-row {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-photo {
  min-height: 570px;
  margin: 0;
  overflow: hidden;
}

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

.feature-copy {
  padding: clamp(58px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.1;
}

.feature-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.price {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.price strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 42px 38px 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: color 180ms ease, background 180ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--moyo-deep);
}

.service-card > span {
  margin-bottom: 18px;
  color: var(--moyo);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.service-card:hover > span,
.service-card:hover p,
.service-card:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-card > div {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid currentColor;
  padding-top: 18px;
}

.service-card strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.service-card small {
  color: var(--muted);
  font-size: 11px;
}

.booking {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #372e29;
}

.booking-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(183, 145, 115, 0.26), transparent 34%),
    linear-gradient(135deg, #302925 0%, #45372f 58%, #2c2521 100%);
}

.booking-backdrop::after {
  content: "MOYO";
  position: absolute;
  right: -0.04em;
  bottom: -0.35em;
  color: rgba(255, 255, 255, 0.035);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(220px, 31vw, 520px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1em;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(70px, 10vw, 150px);
}

.booking-copy h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel {
  margin-top: 42px;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-panel > * {
  min-width: 0;
  padding: 22px 24px;
  display: grid;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.contact-panel small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.booking-steps {
  margin: 0;
  padding: 0;
  display: grid;
  align-content: center;
  list-style: none;
}

.booking-steps li {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-steps > li > span {
  color: #c8a78f;
  font-family: var(--serif);
  font-size: 28px;
}

.booking-steps h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.booking-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.foot-feature {
  background: var(--paper);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.foot-grid figure {
  height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.foot-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.foot-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  margin: 32px 0 38px;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 18px;
  height: 1px;
  background: var(--moyo);
}

.values {
  background: var(--sand);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(92, 75, 64, 0.14);
  border: 1px solid rgba(92, 75, 64, 0.14);
}

.value-grid article {
  min-height: 310px;
  padding: 46px 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.value-grid article > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 91, 73, 0.28);
  border-radius: 50%;
  color: var(--moyo-deep);
  font-family: var(--serif);
  font-size: 14px;
}

.value-grid h3 {
  margin: 0 0 15px;
  font-size: 27px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.faq-heading h2 {
  font-size: clamp(40px, 4.2vw, 62px);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 28px 52px 28px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--moyo);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.site-footer {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #332923;
}

.footer-bg,
.footer-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75);
}

.footer-overlay {
  z-index: -1;
  background: rgba(42, 31, 25, 0.76);
}

.footer-inner {
  padding: 86px 0 54px;
  text-align: center;
}

.footer-logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 30px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.footer-inner h2 {
  margin-bottom: 34px;
  font-size: clamp(40px, 5vw, 70px);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 38px;
}

.footer-contact > * {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  text-decoration: none;
}

.footer-languages {
  margin: 54px 0 0;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-languages a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-decoration: none;
}

.footer-languages a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  line-height: 1.7;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --header-h: 82px;
  }

  .header-inner {
    grid-template-columns: minmax(200px, 1fr) auto;
    gap: 14px 24px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
    min-height: 42px;
    border-top: 1px solid var(--line);
  }

  .site-header,
  .header-inner {
    min-height: auto;
  }

  .site-header {
    padding-top: 10px;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 760px;
  }

  .intro-grid,
  .booking-grid,
  .faq-grid {
    gap: 70px;
  }

  .intro-visuals {
    min-height: 570px;
  }

  .feature-row {
    min-height: 500px;
  }

  .feature-photo {
    min-height: 500px;
  }

  .service-card {
    padding-inline: 28px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-h: 126px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .primary-nav {
    width: calc(100vw - 28px);
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(32, 25, 21, 0.14) 0%, rgba(35, 27, 23, 0.42) 38%, rgba(30, 23, 20, 0.88) 100%);
  }

  .hero-content {
    padding: 180px 0 52px;
  }

  .hero-content h1,
  .english-page .hero-content h1 {
    font-size: clamp(46px, 9vw, 66px);
  }

  .hero-facts {
    margin-top: 48px;
  }

  .intro-grid,
  .booking-grid,
  .foot-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-left: 0;
  }

  .intro-visuals {
    min-height: 620px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 420px;
  }

  .feature-copy {
    padding: 58px 48px;
  }

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

  .booking-grid {
    gap: 60px;
  }

  .foot-grid {
    gap: 58px;
  }

  .foot-grid figure {
    height: 560px;
  }

  .faq-grid {
    gap: 34px;
  }

  .faq-heading {
    position: static;
  }

  .site-footer {
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 118px;
  }

  body {
    padding-bottom: 58px;
    font-size: 15px;
  }

  .page-shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 70px 0;
  }

  h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .site-header {
    padding-top: 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .brand small {
    margin-top: 5px;
    font-size: 7px;
  }

  .language-switcher a {
    min-width: 33px;
    height: 29px;
    font-size: 10px;
  }

  .primary-nav {
    min-height: 39px;
    gap: 22px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-content {
    padding: 160px 0 34px;
  }

  .hero-content h1,
  .english-page .hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(39px, 12vw, 56px);
    line-height: 1.08;
  }

  .english-page .hero-content h1 {
    font-size: clamp(36px, 10.8vw, 50px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero-facts {
    margin-top: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts li {
    padding: 16px 7px 0 0;
  }

  .hero-facts strong {
    overflow-wrap: anywhere;
    font-size: 17px;
  }

  .hero-facts span {
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-word {
    font-size: 37vw;
  }

  .intro-copy .lead {
    font-size: 16px;
  }

  .intro-grid {
    gap: 52px;
  }

  .intro-visuals {
    min-height: 460px;
  }

  .photo-tall {
    width: 78%;
  }

  .photo-small {
    right: -8px;
    bottom: 28px;
    width: 55%;
    height: 36%;
    border-width: 8px;
  }

  .logo-seal {
    top: 24px;
    right: 0;
    width: 94px;
    height: 94px;
    padding: 10px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .feature-photo {
    min-height: 330px;
  }

  .feature-copy {
    padding: 42px 28px;
  }

  .feature-copy h3 {
    font-size: 40px;
  }

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

  .service-card {
    min-height: 260px;
    padding: 34px 28px 28px;
  }

  .booking-grid {
    gap: 46px;
  }

  .booking-steps li {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .booking-steps h3 {
    font-size: 24px;
  }

  .foot-grid figure {
    height: 420px;
  }

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

  .value-grid article {
    min-height: 250px;
    padding: 36px 28px;
  }

  .faq-list summary {
    padding: 24px 42px 24px 0;
    font-size: 20px;
  }

  .faq-list details p {
    margin-right: 18px;
  }

  .site-footer {
    min-height: 650px;
  }

  .footer-inner {
    padding: 74px 0 46px;
  }

  .footer-logo {
    width: 104px;
    height: 104px;
  }

  .footer-contact {
    display: grid;
    gap: 12px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 140;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 -12px 35px rgba(34, 26, 21, 0.2);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    background: var(--ink);
  }

  .mobile-cta a:last-child {
    background: var(--moyo-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
