:root {
  --green: #355b22;
  --green-2: #5f842f;
  --green-3: #8fa250;
  --cream: #fbfaf4;
  --soft: #f3f1e5;
  --line: #e8e4d5;
  --text: #22301b;
  --muted: #76786e;
  --gold: #c58648;
  --shadow: 0 18px 45px rgba(53, 91, 34, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  background:
    radial-gradient(circle at 0 32%, rgba(174, 194, 125, 0.2), transparent 24rem),
    radial-gradient(circle at 100% 8%, rgba(212, 224, 178, 0.24), transparent 18rem),
    linear-gradient(180deg, #fffef9 0%, #fbfaf4 56%, #f5f3e9 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 254, 249, 0.88);
  border-bottom: 1px solid rgba(232, 228, 213, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.brand img {
  width: clamp(142px, 13vw, 192px);
  height: 54px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 30px);
  color: #2c3327;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green-2);
  content: "";
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 28px;
}

.header-cta,
.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 12px 24px rgba(53, 91, 34, 0.18);
}

.header-cta {
  padding: 0 26px;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(53, 91, 34, 0.22);
  border-radius: 999px;
  background: rgba(243, 241, 229, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 251, 0.72), 0 8px 18px rgba(53, 91, 34, 0.12);
}

.language-switcher button {
  min-width: 42px;
  min-height: 30px;
  padding: 0 10px;
  color: inherit;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.language-switcher button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 2px 8px rgba(53, 91, 34, 0.18);
}

html[dir="rtl"] body {
  font-family: Arial, "Tahoma", sans-serif;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .homespa-actions {
  direction: rtl;
}

html[dir="rtl"] .contactpage-list article,
html[dir="rtl"] .detail-list li,
html[dir="rtl"] .homespa-flow-card li {
  direction: rtl;
}

.primary-btn {
  min-width: 148px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
}

.ghost-btn {
  min-width: 132px;
  padding: 0 26px;
  color: var(--green);
  border: 1px solid rgba(53, 91, 34, 0.45);
  background: rgba(255, 255, 255, 0.66);
}

.text-link {
  justify-content: flex-start;
  min-height: auto;
  color: var(--green-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--green);
}

main {
  width: min(1510px, calc(100% - 64px));
  margin: 26px auto 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 254, 248, 0.96) 0%, rgba(255, 254, 248, 0.78) 40%, rgba(255, 254, 248, 0.18) 70%),
    url("Image/首页/generate-235-1280x720.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(38px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 15px;
  font-weight: 800;
}

.hero .eyebrow {
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(242, 240, 225, 0.78);
}

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

h1,
h2 {
  color: var(--green);
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 1.06;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background: rgba(250, 248, 238, 0.9);
  border-left: 1px solid rgba(232, 228, 213, 0.82);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  align-items: center;
}

.hero-panel img,
.trust-bar img,
.about-features img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 12px;
  border-radius: 50%;
  background: var(--soft);
}

.hero-panel strong,
.trust-bar strong {
  grid-column: 2;
  color: var(--green);
  font-size: 18px;
}

.hero-panel span,
.trust-bar span,
.about-features span,
.program-card p,
.category-showcase p,
.process-list span {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 24px;
}

.service-strip article,
.service-strip a {
  min-width: 0;
  padding: 14px 14px 20px;
  text-align: center;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 251, 0.82);
  box-shadow: 0 14px 32px rgba(53, 91, 34, 0.08);
}

.service-strip img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  border-radius: 10px;
}

.service-strip strong {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-size: 18px;
}

.service-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.trust-bar,
.process-section,
.booking-section,
.site-footer {
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.86);
  box-shadow: 0 12px 30px rgba(53, 91, 34, 0.08);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding: 20px 28px;
}

.trust-bar div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.section {
  margin-top: 28px;
  padding: clamp(28px, 4.6vw, 56px);
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.78);
  box-shadow: var(--shadow);
}

.section-title {
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 34px 48px;
  align-items: center;
}

.section-copy h3 {
  color: var(--green);
}

.about-media img {
  width: 100%;
  height: clamp(330px, 42vw, 560px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(53, 91, 34, 0.12);
}

.about-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 16px;
  background: #fffefa;
}

.about-features article {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-features article:last-child {
  border-right: 0;
}

.about-features img {
  margin: 0 auto 12px;
}

.about-features strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 18px;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.92);
  border-radius: 16px;
  background: #fffefa;
  box-shadow: 0 12px 28px rgba(53, 91, 34, 0.08);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.82;
  object-fit: cover;
}

.program-card div {
  padding: 22px;
}

.program-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.program-card h3 {
  margin: 8px 0 8px;
  color: var(--green);
}

.program-card strong {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-size: 24px;
}

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

.category-showcase article,
.category-showcase a {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

.category-showcase article::after,
.category-showcase a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 254, 249, 0.92), rgba(255, 254, 249, 0.18));
  content: "";
}

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

.category-showcase div {
  position: absolute;
  left: 28px;
  top: 32px;
  z-index: 1;
  max-width: 70%;
}

.category-showcase h2 {
  margin-bottom: 8px;
}

.home-spa-section {
  position: relative;
  min-height: 560px;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 254, 249, 0.96) 0%, rgba(255, 254, 249, 0.74) 43%, rgba(255, 254, 249, 0.06) 72%),
    url("Image/上门服务/generate-234-1280x720.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.home-spa-copy {
  max-width: 650px;
}

.mini-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 34px;
}

.mini-icons div {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 251, 0.75);
}

.mini-icons img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.mini-icons span {
  color: var(--green);
  font-weight: 800;
}

.reason-panel {
  position: absolute;
  right: 34px;
  top: 50%;
  width: min(300px, 24vw);
  padding: 28px;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.85);
  box-shadow: 0 18px 42px rgba(53, 91, 34, 0.1);
  transform: translateY(-50%);
}

.reason-panel h3 {
  color: var(--green);
}

.reason-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.reason-panel li {
  position: relative;
  padding-left: 24px;
}

.reason-panel li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
}

.process-section {
  margin-top: -45px;
  padding: 28px 34px;
}

.process-section h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-list div {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-list div:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: -20px;
  width: 36px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 10px;
}

.process-list strong {
  color: var(--green);
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
  padding: clamp(28px, 4.4vw, 52px);
}

.booking-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  align-self: center;
}

.booking-contact a {
  min-width: 156px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list div,
.contact-list a {
  display: grid;
  grid-template-columns: 58px 80px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 251, 0.76);
}

.contact-list a,
.contactpage-list a {
  color: inherit;
}

.contact-list a:hover,
.contactpage-list a:hover {
  border-color: rgba(95, 132, 47, 0.46);
  box-shadow: 0 12px 28px rgba(53, 91, 34, 0.1);
}

.contact-list img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 12px;
  border-radius: 50%;
  background: var(--soft);
}

.contact-list span {
  color: var(--green);
  font-weight: 800;
}

.contact-list strong {
  min-width: 0;
  color: #62665c;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-image {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(53, 91, 34, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: min(1510px, calc(100% - 64px));
  margin: 28px auto 36px;
  padding: 28px;
  color: var(--green);
}

.site-footer span {
  font-weight: 900;
}

.site-footer a {
  font-weight: 800;
}

.mobile-booking {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: block;
  }

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

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 254, 249, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: var(--cream);
  }

  .site-nav a::after {
    display: none;
  }

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

  .hero-panel {
    grid-template-columns: repeat(4, 1fr);
    border-left: 0;
    border-top: 1px solid rgba(232, 228, 213, 0.82);
  }

  .hero-panel div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-panel strong,
  .hero-panel span {
    grid-column: auto;
  }

  .service-strip,
  .trust-bar,
  .service-grid,
  .category-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar div:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .about-section,
  .contact-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .reason-panel {
    position: static;
    width: min(520px, 100%);
    margin-top: 34px;
    transform: none;
  }

  .process-section {
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 68px;
    gap: 12px;
    padding: 10px 14px;
  }

  .language-switcher {
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .brand img {
    width: 132px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    gap: 3px;
    padding: 3px;
    font-size: 11px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 28px;
    padding: 0 8px;
  }

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

  main,
  .site-footer {
    width: calc(100% - 24px);
  }

  main {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 254, 248, 0.97) 0%, rgba(255, 254, 248, 0.78) 48%, rgba(255, 254, 248, 0.18) 100%),
      url("Image/首页/generate-235-1280x720.png") 63% center / cover no-repeat;
  }

  .hero-copy {
    padding: 34px 22px 180px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn,
  .ghost-btn {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .hero-panel img,
  .trust-bar img,
  .about-features img {
    width: 52px;
    height: 52px;
    padding: 10px;
  }

  .hero-panel strong,
  .trust-bar strong {
    font-size: 16px;
  }

  .service-strip,
  .trust-bar,
  .service-grid,
  .category-showcase,
  .mini-icons,
  .process-list,
  .about-features {
    grid-template-columns: 1fr;
  }

  .service-strip {
    gap: 14px;
  }

  .trust-bar {
    padding: 16px;
  }

  .trust-bar div:last-child {
    grid-column: auto;
  }

  .section,
  .booking-section {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .booking-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-contact a {
    width: 100%;
  }

  .about-media img {
    height: auto;
    max-height: 520px;
  }

  .about-features article {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 16px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-features article:last-child {
    border-bottom: 0;
  }

  .about-features img {
    grid-row: span 2;
    margin: 0;
  }

  .program-card div {
    padding: 18px;
  }

  .category-showcase article,
  .category-showcase a {
    min-height: 250px;
  }

  .home-spa-section {
    min-height: auto;
    padding: 28px 18px 220px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 254, 249, 0.82) 54%, rgba(255, 254, 249, 0.12) 100%),
      url("Image/上门服务/generate-234-1280x720.png") 62% center / cover no-repeat;
  }

  .mini-icons div {
    grid-template-columns: 54px 1fr;
    justify-items: start;
    align-items: center;
    padding: 12px;
  }

  .reason-panel {
    padding: 20px;
  }

  .process-section {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .process-list {
    gap: 14px;
  }

  .process-list div {
    grid-template-columns: 48px 1fr;
    justify-items: start;
    column-gap: 12px;
    text-align: left;
  }

  .process-list div:not(:last-child)::after {
    display: none;
  }

  .process-list img {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .process-list strong,
  .process-list span {
    grid-column: 2;
  }

  .contact-list div,
  .contact-list a {
    grid-template-columns: 52px 1fr;
  }

  .contact-list img {
    grid-row: span 2;
    width: 52px;
    height: 52px;
  }

  .contact-list strong {
    font-size: 15px;
  }

  .contact-image {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    text-align: center;
  }

  .mobile-booking {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(232, 228, 213, 0.86);
    border-radius: 18px;
    background: rgba(255, 254, 249, 0.94);
    box-shadow: 0 18px 38px rgba(53, 91, 34, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-booking a {
    display: grid;
    min-height: 44px;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    font-weight: 800;
  }

  .mobile-booking a:last-child {
    color: var(--green);
    border: 1px solid rgba(53, 91, 34, 0.36);
    background: #fffefa;
  }
}

@media (max-width: 430px) {
  .hero-copy {
    padding-bottom: 150px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

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

  .service-strip article,
  .service-strip a {
    padding: 12px 12px 18px;
  }
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.82);
  box-shadow: var(--shadow);
}

.page-hero-copy {
  padding: clamp(34px, 6vw, 74px);
}

.page-hero-copy h1 {
  margin-bottom: 18px;
}

.page-hero-copy ul,
.detail-list,
.timeline-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-copy li {
  padding: 9px 16px;
  color: var(--green);
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
}

.page-hero-media {
  height: 100%;
  min-height: 480px;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  margin-top: 28px;
}

.detail-panel,
.info-panel,
.gallery-panel,
.timeline-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.82);
  box-shadow: var(--shadow);
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #fffefa;
}

.detail-list img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 12px;
  border-radius: 50%;
  background: var(--soft);
}

.detail-list strong,
.info-card strong,
.timeline-list strong {
  display: block;
  color: var(--green);
  font-size: 18px;
}

.detail-list span,
.info-card span,
.timeline-list span {
  color: var(--muted);
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffefa;
}

.info-card em {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
}

.wide-cta {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  border-radius: 14px;
}

.gallery-panel {
  margin-top: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(53, 91, 34, 0.08);
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline-list li {
  padding: 18px;
  text-align: center;
  border-radius: 14px;
  background: #fffefa;
}

.timeline-list img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.simple-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.simple-contact .contact-list {
  margin-top: 0;
}

.simple-contact .contact-list div {
  grid-template-columns: 58px 1fr;
}

.simple-contact .contact-list span,
.simple-contact .contact-list strong {
  grid-column: 2;
}

.simple-contact .contact-list img {
  grid-row: span 2;
}

.headcare-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: #f8f8ec;
  box-shadow: var(--shadow);
}

.headcare-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.82) 35%, rgba(250, 250, 239, 0.22) 68%);
  content: "";
}

.headcare-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.headcare-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: clamp(42px, 7vw, 92px) clamp(28px, 8vw, 170px);
}

.headcare-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 7vw, 92px);
}

.headcare-subtitle {
  color: var(--green);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
}

.headcare-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 22px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-weight: 800;
}

.headcare-benefits,
.headcare-services {
  border: 1px solid rgba(232, 228, 213, 0.86);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
}

.headcare-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
  padding: 28px 46px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.headcare-benefits article,
.headcare-summary div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
}

.headcare-benefits article:not(:last-child),
.headcare-summary div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.headcare-benefits img,
.headcare-service-grid img,
.headcare-summary img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 13px;
  border-radius: 50%;
  background: var(--soft);
}

.headcare-benefits strong,
.headcare-service-grid strong,
.headcare-summary strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.headcare-benefits span,
.headcare-service-grid span,
.headcare-summary span {
  color: var(--muted);
  line-height: 1.65;
}

.headcare-services {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
}

.headcare-services h2 {
  margin-bottom: 26px;
}

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

.headcare-service-grid article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffefa;
  box-shadow: 0 14px 26px rgba(53, 91, 34, 0.06);
}

.headcare-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffefa;
}

.facialcare-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: #f8f8ec;
  box-shadow: var(--shadow);
}

.facialcare-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.82) 37%, rgba(250, 250, 239, 0.18) 72%);
  content: "";
}

.facialcare-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facialcare-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(46px, 7vw, 96px) clamp(28px, 9vw, 190px);
}

.facialcare-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 6vw, 82px);
}

.facialcare-subtitle {
  color: #20261e;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
}

.facialcare-benefits,
.facialcare-services {
  border: 1px solid rgba(232, 228, 213, 0.86);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
}

.facialcare-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  padding: 30px 54px;
  border-radius: var(--radius);
}

.facialcare-benefits article,
.facialcare-service-grid article,
.facialcare-summary div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
}

.facialcare-benefits article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.facialcare-benefits img,
.facialcare-service-grid img,
.facialcare-summary img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 13px;
  border-radius: 50%;
  background: var(--soft);
}

.facialcare-benefits strong,
.facialcare-service-grid strong,
.facialcare-summary strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.facialcare-benefits span,
.facialcare-service-grid span,
.facialcare-summary span {
  color: var(--muted);
  line-height: 1.65;
}

.facialcare-services {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
}

.facialcare-title h2 {
  margin-bottom: 28px;
}

.facialcare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: stretch;
}

.facialcare-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facialcare-service-grid article {
  grid-template-columns: 64px 1fr;
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffefa;
  box-shadow: 0 14px 26px rgba(53, 91, 34, 0.06);
}

.facialcare-summary {
  display: grid;
  gap: 18px;
  padding-left: 28px;
  border-left: 1px dashed var(--line);
}

.facialcare-summary div {
  padding: 18px;
  border-radius: 14px;
  background: #fffefa;
}

.footcare-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: #f8f8ec;
  box-shadow: var(--shadow);
}

.footcare-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.84) 38%, rgba(250, 250, 239, 0.18) 72%);
  content: "";
}

.footcare-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footcare-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(54px, 8vw, 112px) clamp(28px, 7vw, 120px);
}

.footcare-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 94px);
}

.footcare-subtitle {
  color: var(--green);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
}

.footcare-benefits,
.footcare-services {
  border: 1px solid rgba(232, 228, 213, 0.86);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
}

.footcare-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  padding: 30px 54px;
  border-radius: var(--radius);
}

.footcare-benefits article,
.footcare-service-grid article,
.footcare-summary div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
}

.footcare-benefits article:not(:last-child),
.footcare-service-grid article:not(:last-child),
.footcare-summary div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.footcare-benefits img,
.footcare-service-grid img,
.footcare-summary img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 13px;
  border-radius: 50%;
  background: var(--soft);
}

.footcare-benefits strong,
.footcare-service-grid strong,
.footcare-summary strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.footcare-benefits span,
.footcare-service-grid span,
.footcare-summary span {
  color: var(--muted);
  line-height: 1.65;
}

.footcare-services {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
}

.footcare-services h2 {
  margin-bottom: 28px;
}

.footcare-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footcare-service-grid article {
  min-height: 130px;
  padding: 16px 24px;
}

.footcare-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  padding: 16px 0;
}

.footcare-summary div {
  justify-content: center;
}

.facemassage-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: #f8f8ec;
  box-shadow: var(--shadow);
}

.facemassage-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.82) 38%, rgba(250, 250, 239, 0.12) 72%);
  content: "";
}

.facemassage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facemassage-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  padding: clamp(44px, 7vw, 92px) clamp(28px, 7vw, 120px);
}

.facemassage-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 7vw, 90px);
}

.facemassage-subtitle {
  color: #20261e;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
}

.facemassage-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.facemassage-copy li {
  position: relative;
  padding-left: 26px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.facemassage-copy li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
}

.facemassage-benefits,
.facemassage-services {
  border: 1px solid rgba(232, 228, 213, 0.86);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
}

.facemassage-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  padding: 30px 54px;
  border-radius: var(--radius);
}

.facemassage-benefits article,
.facemassage-summary div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
}

.facemassage-benefits article:not(:last-child),
.facemassage-service-grid article:not(:last-child),
.facemassage-summary div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.facemassage-benefits img,
.facemassage-summary img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 13px;
  border-radius: 50%;
  background: var(--soft);
}

.facemassage-benefits strong,
.facemassage-service-grid strong,
.facemassage-summary strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.facemassage-benefits span,
.facemassage-service-grid span,
.facemassage-summary span {
  color: var(--muted);
  line-height: 1.65;
}

.facemassage-services {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
}

.facemassage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
}

.facemassage-projects h2 {
  margin-bottom: 26px;
  font-size: 28px;
}

.facemassage-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.facemassage-service-grid article {
  min-height: 150px;
  padding: 18px 24px;
}

.facemassage-service-grid article::after {
  display: block;
  width: 18px;
  height: 14px;
  margin-top: 20px;
  background: var(--green-2);
  border-radius: 50% 50% 50% 0;
  opacity: 0.8;
  content: "";
}

.facemassage-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-content: center;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.facemassage-summary div {
  justify-items: center;
  text-align: center;
}

.facemassage-summary div:not(:last-child) {
  padding-right: 28px;
}

.facemassage-summary div:last-child {
  padding-left: 28px;
}

.nailcare-page {
  display: grid;
  gap: 18px;
}

.nailcare-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.9);
  border-radius: var(--radius);
  background: #f8f8ec;
  box-shadow: var(--shadow);
}

.nailcare-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.78) 34%, rgba(250, 250, 239, 0.14) 72%);
  content: "";
}

.nailcare-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nailcare-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: clamp(54px, 8vw, 110px) clamp(28px, 7vw, 120px);
}

.nailcare-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(60px, 7vw, 96px);
}

.nailcare-subtitle {
  color: #20261e;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
}

.nailcare-benefits,
.nailcare-services {
  border: 1px solid rgba(232, 228, 213, 0.86);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
}

.nailcare-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 54px;
  border-radius: var(--radius);
}

.nailcare-benefits article {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 10px 0;
  text-align: center;
}

.nailcare-benefits article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.nailcare-benefits img {
  width: 82px;
  height: 82px;
  padding: 18px;
  border-radius: 50%;
  background: var(--soft);
  object-fit: contain;
}

.nailcare-benefits strong,
.nailcare-service-grid strong,
.nailcare-summary strong {
  color: var(--green);
  font-size: 22px;
}

.nailcare-services {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
}

.nailcare-services h2 {
  margin-bottom: 26px;
}

.nailcare-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.nailcare-service-grid article {
  padding: 0 18px;
}

.nailcare-service-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.nailcare-service-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.nailcare-service-grid span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.nailcare-summary {
  display: grid;
  grid-template-columns: 1fr;
  padding: 10px 0 6px;
}

.nailcare-summary div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.nailcare-summary span {
  color: #20261e;
  font-size: 28px;
  font-weight: 800;
}

.contactpage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 30px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.9);
  box-shadow: var(--shadow);
}

.contactpage-copy {
  padding-top: 8px;
}

.contactpage-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(60px, 7vw, 92px);
}

.contactpage-divider {
  position: relative;
  width: 170px;
  height: 26px;
  margin: 8px 0 28px;
  background: radial-gradient(circle at 50% 50%, #9eb18b 0 7px, transparent 8px);
}

.contactpage-divider::before,
.contactpage-divider::after {
  position: absolute;
  top: 50%;
  width: 66px;
  height: 1px;
  background: #b8c0a3;
  content: "";
}

.contactpage-divider::before {
  left: 0;
}

.contactpage-divider::after {
  right: 0;
}

.contactpage-copy > p:last-of-type {
  color: #8f8a7b;
  font-size: 18px;
  line-height: 1.8;
}

.contactpage-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.contactpage-list article,
.contactpage-list a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(232, 228, 213, 0.84);
  border-radius: 18px;
  background: #fffefa;
}

.contactpage-list img {
  width: 86px;
  height: 86px;
  padding: 16px;
  border-radius: 50%;
  background: #ecf1dd;
  object-fit: contain;
}

.contactpage-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 24px;
}

.contactpage-list span {
  color: #6d6d67;
  font-size: 20px;
  line-height: 1.6;
}

.contactpage-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(53, 91, 34, 0.12);
}

.contactpage-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.18) 0%, rgba(255, 249, 236, 0.06) 100%);
  content: "";
}

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

.aboutpage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 36px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px) clamp(28px, 5vw, 62px) 34px;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.92);
  box-shadow: var(--shadow);
}

.aboutpage-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 30px;
}

.aboutpage-watermark {
  position: absolute;
  left: 8px;
  top: -8px;
  z-index: -1;
  color: rgba(53, 91, 34, 0.08);
  font-family: Georgia, serif;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 1;
  white-space: nowrap;
}

.aboutpage-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(52px, 6vw, 76px);
}

.aboutpage-divider {
  position: relative;
  width: 118px;
  height: 22px;
  margin: 8px 0 26px;
  background: radial-gradient(circle at 80% 50%, #9eb18b 0 6px, transparent 7px);
}

.aboutpage-divider::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 76px;
  height: 1px;
  background: #b8c0a3;
  content: "";
}

.aboutpage-copy h2 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(24px, 2.3vw, 32px);
}

.aboutpage-copy p {
  color: #3d4039;
  font-size: 19px;
  line-height: 1.9;
}

.aboutpage-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border: 1px solid rgba(232, 228, 213, 0.84);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.88);
  box-shadow: 0 12px 28px rgba(53, 91, 34, 0.08);
}

.aboutpage-features article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 16px 24px;
  text-align: center;
}

.aboutpage-features article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.aboutpage-features img {
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 50%;
  background: var(--soft);
  object-fit: contain;
}

.aboutpage-features strong {
  color: var(--green);
  font-size: 20px;
}

.aboutpage-features span {
  color: #5f625a;
  font-size: 14px;
  line-height: 1.7;
}

.aboutpage-media {
  align-self: center;
  min-height: 660px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(53, 91, 34, 0.14);
}

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

.aboutpage-slogan {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 32px;
  color: var(--green);
  font-size: 20px;
}

.aboutpage-slogan span {
  width: 110px;
  height: 1px;
  background: #b8c0a3;
}

.homespa-main {
  width: 100%;
  margin-top: 0;
}

.homespa-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
  background: #f8f8ec;
}

.homespa-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.78) 40%, rgba(250, 250, 239, 0.16) 72%);
  content: "";
}

.homespa-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homespa-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 58vw);
  padding: clamp(54px, 7vw, 96px) clamp(24px, 10vw, 150px);
}

.homespa-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.homespa-copy > p {
  color: var(--green);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

.homespa-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.homespa-benefits article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.homespa-benefits img,
.homespa-flow-card img,
.homespa-guarantees img {
  width: 66px;
  height: 66px;
  padding: 14px;
  border-radius: 50%;
  background: var(--soft);
  object-fit: contain;
}

.homespa-benefits strong,
.homespa-flow-card strong,
.homespa-service-grid strong,
.homespa-guarantees strong {
  display: block;
  color: var(--green);
  font-size: 18px;
}

.homespa-benefits span,
.homespa-flow-card span,
.homespa-service-grid span,
.homespa-guarantees span {
  color: #5f625a;
  line-height: 1.65;
}

.homespa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.homespa-flow-card {
  position: absolute;
  right: clamp(28px, 4vw, 70px);
  top: 50%;
  z-index: 2;
  width: min(300px, 23vw);
  padding: 28px;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.88);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.homespa-flow-card h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.homespa-flow-card ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.homespa-flow-card li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
}

.homespa-flow-card img {
  width: 46px;
  height: 46px;
  padding: 10px;
}

.homespa-service-section {
  width: min(1510px, calc(100% - 64px));
  margin: 34px auto 0;
}

.homespa-service-section h2 {
  margin-bottom: 28px;
  text-align: center;
  font-size: 30px;
}

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

.homespa-service-grid article {
  overflow: hidden;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 251, 0.9);
  box-shadow: 0 14px 28px rgba(53, 91, 34, 0.08);
}

.homespa-service-grid article > img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.homespa-service-grid div {
  display: grid;
  gap: 8px;
  padding: 16px 18px 20px;
  text-align: center;
}

.homespa-service-grid em {
  color: #b2743e;
  font-style: normal;
  font-weight: 800;
}

.homespa-service-grid a {
  justify-self: center;
  min-width: 108px;
  padding: 8px 14px;
  color: var(--green);
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
}

.homespa-guarantees {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1510px, calc(100% - 64px));
  margin: 26px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(232, 228, 213, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.9);
  box-shadow: var(--shadow);
}

.homespa-guarantees article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
}

.homespa-guarantees article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.homespa-guarantees img {
  width: 50px;
  height: 50px;
  padding: 10px;
}

@media (max-width: 1180px) {
  .page-hero,
  .detail-layout,
  .simple-contact {
    grid-template-columns: 1fr;
  }

  .headcare-benefits,
  .headcare-service-grid,
  .headcare-summary,
  .facialcare-benefits,
  .facialcare-service-grid,
  .footcare-benefits,
  .footcare-service-grid,
  .footcare-summary,
  .facemassage-benefits,
  .facemassage-service-grid,
  .nailcare-benefits,
  .nailcare-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facemassage-layout {
    grid-template-columns: 1fr;
  }

  .facemassage-summary {
    padding-left: 0;
    border-left: 0;
  }

  .facialcare-layout {
    grid-template-columns: 1fr;
  }

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

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

  .homespa-copy {
    width: min(760px, 100%);
    padding-right: 320px;
  }

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

  .homespa-flow-card {
    right: 22px;
    width: 280px;
  }

  .homespa-guarantees article:not(:last-child) {
    border-right: 0;
  }

  .aboutpage-media {
    min-height: 520px;
  }

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

  .aboutpage-features article:not(:last-child) {
    border-right: 0;
  }

  .contactpage-media {
    min-height: 420px;
  }

  .facialcare-summary {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
    border-left: 0;
  }

  .headcare-benefits article:not(:last-child),
  .headcare-summary div:not(:last-child),
  .facialcare-benefits article:not(:last-child),
  .footcare-benefits article:not(:last-child),
  .footcare-service-grid article:not(:last-child),
  .footcare-summary div:not(:last-child),
  .facemassage-benefits article:not(:last-child),
  .facemassage-service-grid article:not(:last-child),
  .facemassage-summary div:not(:last-child) {
    border-right: 0;
  }

  .nailcare-benefits article:not(:last-child),
  .nailcare-service-grid article:not(:last-child) {
    border-right: 0;
  }

  .page-hero-media {
    min-height: 360px;
  }

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

  .timeline-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .page-hero {
    gap: 0;
    border-radius: 18px;
  }

  .page-hero-copy {
    padding: 30px 20px;
  }

  .page-hero-media {
    min-height: 260px;
  }

  .detail-panel,
  .info-panel,
  .gallery-panel,
  .timeline-panel {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .detail-list li,
  .simple-contact .contact-list div {
    grid-template-columns: 54px 1fr;
    padding: 14px;
  }

  .detail-list img {
    width: 54px;
    height: 54px;
  }

  .info-grid,
  .gallery-grid,
  .timeline-list,
  .headcare-benefits,
  .headcare-service-grid,
  .headcare-summary,
  .facialcare-benefits,
  .facialcare-service-grid,
  .facialcare-summary,
  .footcare-benefits,
  .footcare-service-grid,
  .footcare-summary,
  .facemassage-benefits,
  .facemassage-service-grid,
  .facemassage-summary,
  .nailcare-benefits,
  .nailcare-service-grid,
  .nailcare-summary {
    grid-template-columns: 1fr;
  }

  .headcare-hero {
    min-height: auto;
    border-radius: 18px 18px 0 0;
  }

  .headcare-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.8) 58%, rgba(250, 250, 239, 0.2) 100%);
  }

  .headcare-copy {
    width: 100%;
    padding: 34px 22px 210px;
  }

  .headcare-benefits {
    padding: 18px;
    border-radius: 0 0 18px 18px;
  }

  .headcare-benefits article,
  .headcare-service-grid article,
  .headcare-summary div {
    grid-template-columns: 58px 1fr;
  }

  .headcare-services {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .facialcare-hero {
    min-height: auto;
    border-radius: 18px;
  }

  .facialcare-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.8) 60%, rgba(250, 250, 239, 0.24) 100%);
  }

  .facialcare-copy {
    width: 100%;
    padding: 34px 22px 210px;
  }

  .facialcare-benefits,
  .facialcare-services {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .facialcare-benefits article,
  .facialcare-service-grid article,
  .facialcare-summary div {
    grid-template-columns: 58px 1fr;
  }

  .footcare-hero {
    min-height: auto;
    border-radius: 18px;
  }

  .footcare-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.78) 58%, rgba(250, 250, 239, 0.22) 100%);
  }

  .footcare-copy {
    width: 100%;
    padding: 38px 22px 210px;
  }

  .footcare-benefits,
  .footcare-services {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .footcare-service-grid {
    gap: 14px;
    padding-bottom: 20px;
  }

  .footcare-benefits article,
  .footcare-service-grid article,
  .footcare-summary div {
    grid-template-columns: 58px 1fr;
    justify-content: stretch;
  }

  .facemassage-hero {
    min-height: auto;
    border-radius: 18px;
  }

  .facemassage-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.78) 58%, rgba(250, 250, 239, 0.2) 100%);
  }

  .facemassage-copy {
    width: 100%;
    padding: 36px 22px 210px;
  }

  .facemassage-copy ul {
    gap: 12px;
  }

  .facemassage-benefits,
  .facemassage-services {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .facemassage-benefits article,
  .facemassage-summary div {
    grid-template-columns: 58px 1fr;
    justify-items: stretch;
    text-align: left;
  }

  .facemassage-summary div:not(:last-child),
  .facemassage-summary div:last-child {
    padding: 0;
  }

  .nailcare-hero {
    min-height: auto;
    border-radius: 18px;
  }

  .nailcare-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.78) 58%, rgba(250, 250, 239, 0.2) 100%);
  }

  .nailcare-copy {
    width: 100%;
    padding: 40px 22px 210px;
  }

  .nailcare-benefits,
  .nailcare-services {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .nailcare-benefits img {
    width: 70px;
    height: 70px;
  }

  .nailcare-service-grid {
    gap: 14px;
    padding-bottom: 20px;
  }

  .nailcare-service-grid strong {
    font-size: 24px;
  }

  .nailcare-summary span {
    font-size: 24px;
  }

  .contactpage {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .contactpage-copy h1 {
    font-size: 44px;
  }

  .contactpage-divider {
    margin: 6px 0 24px;
  }

  .contactpage-copy > p:last-of-type {
    font-size: 16px;
  }

  .contactpage-list article,
  .contactpage-list a {
    grid-template-columns: 64px 1fr;
    padding: 14px;
    border-radius: 16px;
  }

  .contactpage-list img {
    width: 64px;
    height: 64px;
    padding: 12px;
  }

  .contactpage-list strong {
    font-size: 20px;
  }

  .contactpage-list span {
    font-size: 16px;
  }

  .contactpage-media {
    min-height: 300px;
    border-radius: 18px;
  }

  .aboutpage {
    padding: 28px 16px;
    border-radius: 18px;
  }

  .aboutpage-copy {
    padding-top: 14px;
  }

  .aboutpage-watermark {
    font-size: 54px;
  }

  .aboutpage-copy h1 {
    font-size: 44px;
  }

  .aboutpage-copy p {
    font-size: 16px;
  }

  .aboutpage-features {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .aboutpage-media {
    min-height: 360px;
    border-radius: 18px;
  }

  .aboutpage-slogan {
    gap: 10px;
    font-size: 16px;
    text-align: center;
  }

  .aboutpage-slogan span {
    width: 42px;
  }

  .homespa-main {
    width: calc(100% - 24px);
    margin: 14px auto 0;
  }

  .homespa-hero {
    min-height: auto;
    border-radius: 18px;
  }

  .homespa-hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 239, 0.98) 0%, rgba(250, 250, 239, 0.8) 58%, rgba(250, 250, 239, 0.24) 100%);
  }

  .homespa-copy {
    width: 100%;
    padding: 34px 20px 250px;
  }

  .homespa-benefits,
  .homespa-service-grid,
  .homespa-guarantees {
    grid-template-columns: 1fr;
  }

  .homespa-benefits {
    gap: 16px;
  }

  .homespa-actions .primary-btn,
  .homespa-actions .ghost-btn {
    width: 100%;
  }

  .homespa-flow-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: -180px 14px 18px;
    transform: none;
  }

  .homespa-service-section,
  .homespa-guarantees {
    width: 100%;
  }

  .homespa-service-grid {
    gap: 16px;
  }

  .homespa-guarantees {
    gap: 18px;
    padding: 20px 16px;
  }

  .homespa-guarantees article {
    padding: 0;
  }
}
