* {
  box-sizing: border-box;
}

:root {
  --render-width: min(100vw, 2050px);
  --ink: #716363;
  --muted: #969286;
  --stone: #969287;
  --sand: #a38263;
  --brand: #9b8170;
  --soft: #f7f5f2;
  --line: rgba(113, 99, 99, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #fff;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--muted);
  background: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "SimSun", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20000;
  padding: 10px 15px;
  color: #fff;
  background: #473b36;
  transform: translateY(-180%);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-canvas {
  position: relative;
  width: var(--render-width);
  max-width: 2050px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

/* Header geometry follows the 2050 px official MOYO desktop master. */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  height: calc(var(--render-width) * 0.13);
  pointer-events: none;
}

.header-logo {
  position: absolute;
  top: calc(var(--render-width) * 0.018);
  left: 3.7%;
  width: calc(var(--render-width) * 0.11);
  max-width: 225px;
  min-width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2px;
  background: rgba(248, 245, 246, 0.94);
  box-shadow: 0 14px 38px rgba(68, 48, 38, 0.08);
  pointer-events: auto;
}

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

.primary-nav {
  position: absolute;
  top: calc(var(--render-width) * 0.05);
  left: 54.8%;
  display: grid;
  width: 38%;
  height: 38px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  pointer-events: auto;
}

.primary-nav a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(15px, 1.28vw, 26px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(86, 58, 38, 0.46);
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 32%;
  bottom: -6px;
  left: 32%;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav a:focus-visible,
.header-logo:focus-visible,
.outline-button:focus-visible,
.signature-copy a:focus-visible,
.contact-row a:focus-visible,
.mobile-cta a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

/* 0–1077 px in the 2050 × 5848 master. */
.hero {
  position: relative;
  height: calc(var(--render-width) * 0.526);
  max-height: 1078px;
  min-height: 525px;
  overflow: hidden;
  background: #d7c4c4;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(85, 61, 48, 0.17), transparent 45%),
    linear-gradient(180deg, rgba(31, 25, 21, 0.04), rgba(31, 25, 21, 0.08));
}

.hero-mobile-copy {
  display: none;
}

/* 1078–2452 px in the official master. */
.welcome {
  position: relative;
  display: flex;
  height: calc(var(--render-width) * 0.671);
  max-height: 1375px;
  min-height: 688px;
  align-items: center;
  flex-direction: column;
  padding: calc(var(--render-width) * 0.087) 7% calc(var(--render-width) * 0.04);
  text-align: center;
  background: #fff;
}

.logo-medallion,
.footer-logo {
  overflow: hidden;
  border: 1px solid rgba(113, 99, 99, 0.32);
  border-radius: 50%;
  background: #f8f5f6;
}

.logo-medallion {
  position: absolute;
  top: calc(var(--render-width) * -0.055);
  left: 50%;
  width: calc(var(--render-width) * 0.11);
  max-width: 225px;
  min-width: 112px;
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.logo-medallion img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-copy {
  width: min(760px, 68%);
}

.kicker,
.signature-copy > p,
.footer-kicker {
  margin: 0;
  color: var(--muted);
  font-size: clamp(10px, 0.76vw, 15px);
  letter-spacing: 0.17em;
  line-height: 1.4;
}

.welcome h1 {
  margin: calc(var(--render-width) * 0.018) 0 calc(var(--render-width) * 0.018);
  color: var(--ink);
  font-size: clamp(32px, 2.45vw, 50px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.welcome-lead,
.welcome-note {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 19px);
  line-height: 1.95;
}

.welcome-images {
  display: grid;
  width: 64%;
  margin-top: calc(var(--render-width) * 0.045);
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--render-width) * 0.009);
}

.welcome-images figure {
  margin: 0;
}

.welcome-images img {
  width: 100%;
  height: calc(var(--render-width) * 0.14);
  max-height: 287px;
  min-height: 143px;
  object-fit: cover;
}

.welcome-images figcaption {
  padding-top: 12px;
  color: #9e9991;
  font-size: clamp(11px, 0.72vw, 14px);
  line-height: 1.55;
}

.welcome-note {
  width: min(860px, 72%);
  margin-top: calc(var(--render-width) * 0.022);
}

.outline-button {
  display: inline-flex;
  min-width: clamp(120px, 8vw, 164px);
  min-height: clamp(42px, 3.2vw, 64px);
  margin-top: calc(var(--render-width) * 0.024);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 99, 99, 0.58);
  color: var(--ink);
  font-size: clamp(12px, 0.85vw, 17px);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

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

/* 2453–3682 px: exact 2 × 2 service checkerboard. */
.signature-grid {
  display: grid;
  height: calc(var(--render-width) * 0.6);
  max-height: 1230px;
  min-height: 615px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: var(--stone);
}

.signature-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.signature-photo:hover img {
  transform: scale(1.025);
}

.signature-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 8%;
  color: #fff;
  text-align: center;
}

.signature-copy-stone {
  background: var(--stone);
}

.signature-copy-sand {
  background: var(--sand);
}

.signature-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.signature-copy h3 {
  margin: calc(var(--render-width) * 0.018) 0 calc(var(--render-width) * 0.016);
  color: #fff;
  font-size: clamp(29px, 2.38vw, 49px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.14em;
}

.signature-copy span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 0.88vw, 18px);
  line-height: 1.9;
}

.signature-copy a {
  display: inline-flex;
  min-width: clamp(112px, 7vw, 145px);
  min-height: clamp(40px, 2.9vw, 60px);
  margin-top: calc(var(--render-width) * 0.025);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  font-size: clamp(12px, 0.8vw, 16px);
  text-decoration: none;
}

.signature-copy a:hover {
  color: var(--ink);
  background: #fff;
}

/* 3683–5125 px: the four MOYO service principles. */
.values {
  display: flex;
  height: calc(var(--render-width) * 0.704);
  max-height: 1443px;
  min-height: 722px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: calc(var(--render-width) * 0.07) 8% calc(var(--render-width) * 0.055);
  background: #fff;
}

.values-heading {
  text-align: center;
}

.values-heading h2 {
  margin: calc(var(--render-width) * 0.014) 0 0;
  color: var(--ink);
  font-size: clamp(30px, 2.2vw, 45px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.values-grid {
  display: grid;
  width: min(74%, 1320px);
  margin-top: calc(var(--render-width) * 0.065);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 14%;
  row-gap: calc(var(--render-width) * 0.075);
}

.values-grid article {
  text-align: center;
}

.value-icon {
  display: grid;
  width: calc(var(--render-width) * 0.09);
  max-width: 184px;
  min-width: 92px;
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(113, 99, 99, 0.3);
  border-radius: 50%;
  color: #9c968e;
  font-family: Georgia, "SimSun", serif;
  font-size: clamp(28px, 2.2vw, 45px);
}

.values-grid h3 {
  margin: calc(var(--render-width) * 0.026) 0 calc(var(--render-width) * 0.012);
  color: var(--muted);
  font-size: clamp(26px, 2.15vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.18em;
}

.values-grid p {
  max-width: 520px;
  margin: 0 auto;
  color: #a19d96;
  font-size: clamp(13px, 0.86vw, 18px);
  line-height: 2;
}

/* 5126–5843 px in the master. */
.contact-footer {
  position: relative;
  height: calc(var(--render-width) * 0.35);
  max-height: 718px;
  min-height: 359px;
  overflow: visible;
  color: #fff;
  text-align: center;
  background: #9d7660;
}

.contact-bg,
.contact-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-bg {
  object-fit: cover;
  object-position: center 58%;
}

.contact-shade {
  background: rgba(82, 60, 51, 0.38);
}

.footer-logo {
  position: absolute;
  top: calc(var(--render-width) * -0.052);
  left: 50%;
  z-index: 2;
  width: calc(var(--render-width) * 0.105);
  max-width: 215px;
  min-width: 108px;
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: calc(var(--render-width) * 0.055) 8% 2.4%;
}

.footer-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.contact-content h2 {
  margin: calc(var(--render-width) * 0.008) 0 calc(var(--render-width) * 0.032);
  color: #fff;
  font-size: clamp(28px, 2.1vw, 43px);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.contact-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 3%;
}

.contact-row a,
.contact-row div {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  color: #fff;
  font-size: clamp(14px, 1.18vw, 24px);
  line-height: 1.4;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(55, 43, 39, 0.2);
  white-space: nowrap;
}

.contact-row span {
  display: grid;
  width: 1.8em;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 0.76em;
}

.footer-note {
  width: min(820px, 72%);
  margin: calc(var(--render-width) * 0.025) auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(12px, 0.78vw, 16px);
  line-height: 1.8;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 4%;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, 0.68vw, 14px);
}

.mobile-cta {
  display: none;
}

/* Secondary service page. */
.inner-page .site-header {
  height: 190px;
}

.service-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #8f8177;
}

.service-hero > img,
.service-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero > img {
  object-fit: cover;
  object-position: center 42%;
}

.service-hero-shade {
  background: linear-gradient(180deg, rgba(45, 34, 29, 0.08), rgba(45, 34, 29, 0.64));
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 74px;
}

.service-hero-copy p {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.2;
}

.service-page-main {
  padding: 110px 0 130px;
  background: var(--soft);
}

.service-shell {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.service-intro {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.service-intro h2,
.booking-panel h2,
.service-faq h2 {
  margin: 12px 0 22px;
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
}

.service-intro p,
.booking-panel p,
.service-faq p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.service-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 32px 30px 28px;
  border-top: 3px solid transparent;
  background: #fff;
  box-shadow: 0 18px 50px rgba(88, 72, 62, 0.06);
  scroll-margin-top: 90px;
}

.service-card.featured {
  border-top-color: var(--sand);
}

.service-card .service-kind {
  color: var(--brand);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
}

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

.price-line {
  display: flex;
  margin-top: 25px;
  padding-top: 18px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8f8982;
  font-size: 13px;
}

.price-line strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 400;
}

.service-support-grid {
  display: grid;
  margin-top: 100px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: #fff;
}

.service-support-grid figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.service-support-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-panel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 64px;
}

.booking-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.booking-panel li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-panel li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 11px;
  height: 1px;
  background: var(--sand);
  content: "";
}

.service-faq {
  max-width: 900px;
  margin: 100px auto 0;
}

.service-faq > h2,
.service-faq > p {
  text-align: center;
}

.service-faq details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-faq summary {
  padding: 23px 26px;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
}

.service-faq details p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 14px;
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .welcome h1 {
    line-height: 1.35;
  }

  .welcome-images figcaption,
  .welcome-note {
    line-height: 1.55;
  }

  .values-grid {
    margin-top: calc(var(--render-width) * 0.045);
    row-gap: calc(var(--render-width) * 0.045);
  }

  .values-grid h3 {
    margin-top: calc(var(--render-width) * 0.017);
  }
}

@media (max-width: 1024px) {
  :root {
    --mobile-header-height: 72px;
  }

  body {
    padding-bottom: 58px;
  }

  .site-canvas {
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .site-header,
  .inner-page .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    height: var(--mobile-header-height);
    border-bottom: 1px solid rgba(113, 99, 99, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(83, 70, 62, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-logo {
    top: 7px;
    left: 12px;
    width: 58px;
    min-width: 0;
    height: 58px;
    background: #f8f5f6;
    box-shadow: none;
  }

  .primary-nav {
    top: 0;
    right: 8px;
    left: 78px;
    width: auto;
    height: var(--mobile-header-height);
  }

  .primary-nav a {
    color: #726a64;
    font-size: clamp(11px, 2.9vw, 14px);
    text-shadow: none;
  }

  .primary-nav a::after {
    bottom: 7px;
    background: var(--sand);
  }

  .hero {
    height: min(72vh, 650px);
    max-height: none;
    min-height: 520px;
    margin-top: var(--mobile-header-height);
  }

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

  .hero-shade {
    background: linear-gradient(180deg, rgba(53, 39, 30, 0.06), rgba(33, 26, 23, 0.5));
  }

  .hero-mobile-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    padding: 0 26px 42px;
    color: #fff;
  }

  .hero-mobile-copy p {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .hero-mobile-copy h2 {
    margin: 12px 0 10px;
    font-size: clamp(31px, 8.8vw, 44px);
    font-weight: 400;
    line-height: 1.2;
  }

  .hero-mobile-copy span {
    font-size: 15px;
    line-height: 1.7;
  }

  .welcome,
  .values,
  .contact-footer,
  .signature-grid {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .welcome {
    padding: 98px 24px 70px;
  }

  .logo-medallion {
    top: -48px;
    width: 96px;
    min-width: 0;
  }

  .welcome-copy,
  .welcome-note {
    width: min(100%, 760px);
  }

  .welcome h1 {
    margin: 14px 0 18px;
    font-size: clamp(29px, 7vw, 38px);
    line-height: 1.45;
  }

  .welcome-images {
    width: min(100%, 820px);
    margin-top: 38px;
    gap: 16px;
  }

  .welcome-images img {
    height: auto;
    max-height: none;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .welcome-note {
    margin-top: 28px;
  }

  .outline-button {
    margin-top: 28px;
  }

  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(380px, auto));
  }

  .signature-copy {
    min-height: 380px;
    padding: 44px 30px;
  }

  .signature-copy h3 {
    margin: 18px 0 16px;
  }

  .signature-copy a {
    margin-top: 28px;
  }

  .values {
    padding: 78px 32px 96px;
  }

  .values-heading h2 {
    margin-top: 12px;
  }

  .values-grid {
    width: min(100%, 820px);
    margin-top: 54px;
    column-gap: 28px;
    row-gap: 48px;
  }

  .value-icon {
    width: 104px;
    min-width: 0;
  }

  .values-grid h3 {
    margin: 24px 0 12px;
  }

  .contact-footer {
    min-height: 610px;
    overflow: visible;
  }

  .footer-logo {
    top: -52px;
    width: 104px;
    min-width: 0;
  }

  .contact-content {
    padding: 80px 24px 42px;
  }

  .contact-content h2 {
    margin: 12px 0 34px;
  }

  .contact-row {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-row a,
  .contact-row div {
    min-height: 50px;
    font-size: 16px;
  }

  .footer-note {
    width: min(100%, 700px);
    margin-top: 30px;
  }

  .copyright {
    bottom: 24px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11000;
    display: grid;
    height: 58px;
    grid-template-columns: 1fr 1.35fr;
    box-shadow: 0 -10px 28px rgba(55, 43, 39, 0.12);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    background: #786d66;
  }

  .mobile-cta a + a {
    background: var(--sand);
  }

  .service-hero {
    min-height: 540px;
    margin-top: var(--mobile-header-height);
  }

  .service-hero-copy {
    width: min(100% - 48px, 760px);
    padding-bottom: 48px;
  }

  .service-page-main {
    padding: 80px 0 96px;
  }

  .service-shell {
    width: min(100% - 48px, 900px);
  }

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

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

  .service-support-grid figure {
    min-height: 420px;
  }

  .booking-panel {
    padding: 54px 42px;
  }
}

@media (max-width: 700px) {
  .primary-nav a {
    padding: 0 2px;
    font-size: clamp(10px, 2.75vw, 12px);
  }

  .welcome-images {
    grid-template-columns: 1fr;
  }

  .welcome-images figure + figure {
    margin-top: 8px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

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

  .signature-copy {
    min-height: 340px;
  }

  .signature-photo-aroma {
    order: 1;
  }

  .signature-copy-stone {
    order: 2;
  }

  .signature-photo-lymph {
    order: 3;
  }

  .signature-copy-sand {
    order: 4;
  }

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

  .values-grid article {
    padding: 12px 0 26px;
    border-bottom: 1px solid var(--line);
  }

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

  .service-card {
    min-height: 250px;
  }

  .service-support-grid figure {
    min-height: 330px;
  }

  .booking-panel {
    padding: 44px 28px;
  }
}

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