:root {
  --ivory: #fbf5eb;
  --warm: #f2e4d1;
  --paper: #fffaf2;
  --red: #7b1824;
  --red-dark: #4f1018;
  --ink: #2d1b16;
  --muted: #7a6259;
  --wood: #6c3d28;
  --jade: #697d66;
  --line: rgba(79, 16, 24, 0.16);
  --shadow: 0 26px 80px rgba(79, 16, 24, 0.16);
  --radius: 8px;
  --header-height: 78px;
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
}

body.theme-porcelain {
  --ivory: #fffaf3;
  --warm: #f7eadb;
  --paper: #fffefb;
  --red: #b5262b;
  --red-dark: #4a2f26;
  --ink: #3e2c23;
  --muted: #8f735f;
  --wood: #946b49;
  --jade: #b68555;
  --line: rgba(148, 107, 73, 0.16);
  --shadow: 0 28px 88px rgba(148, 107, 73, 0.12);
  background:
    linear-gradient(120deg, rgba(255, 254, 251, 0.98), rgba(255, 250, 243, 0.9)),
    radial-gradient(circle at 86% 14%, rgba(246, 226, 205, 0.42), transparent 34%),
    var(--ivory);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.2);
  background: rgba(79, 16, 24, 0.88);
  color: #fffaf2;
  backdrop-filter: blur(18px);
}

body.theme-porcelain .site-header {
  border-bottom-color: rgba(148, 107, 73, 0.12);
  background: rgba(255, 254, 251, 0.82);
  color: var(--ink);
  box-shadow: 0 14px 44px rgba(148, 107, 73, 0.06);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 198px;
  font-family: Georgia, "Noto Serif SC", serif;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 250, 242, 0.65);
  border-radius: 50%;
  background: #fffaf2;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(30, 6, 9, 0.18);
}

body.theme-porcelain .brand-logo {
  border-color: rgba(91, 70, 62, 0.14);
  box-shadow: 0 10px 26px rgba(154, 120, 108, 0.1);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
  text-transform: uppercase;
}

body.theme-porcelain .brand small {
  color: rgba(61, 48, 43, 0.58);
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  justify-content: center;
  align-items: center;
  color: rgba(255, 250, 242, 0.84);
  font-size: 14px;
}

body.theme-porcelain .main-nav {
  color: rgba(61, 48, 43, 0.76);
  gap: clamp(10px, 1.4vw, 22px);
  padding: 6px 10px;
  border: 1px solid rgba(148, 107, 73, 0.08);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.36);
}

.main-nav a,
.footer-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: #fff;
}

body.theme-porcelain .main-nav a {
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(62, 44, 35, 0.78);
  font-weight: 700;
}

body.theme-porcelain .main-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: #b5262b;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.theme-porcelain .main-nav a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: #b5262b;
}

body.theme-porcelain .main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn,
.floating-whatsapp,
.theme-toggle,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  border-color: rgba(255, 250, 242, 0.38);
  background: #fffaf2;
  color: var(--red-dark);
}

.theme-toggle {
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(255, 250, 242, 0.1);
  color: #fffaf2;
  cursor: pointer;
}

.language-toggle {
  min-width: 46px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: #fffaf2;
  cursor: pointer;
}

body.theme-porcelain .header-cta {
  border-color: rgba(231, 186, 180, 0.4);
  background: #f6d9d5;
  color: var(--red-dark);
  box-shadow: 0 14px 34px rgba(231, 186, 180, 0.18);
}

body.theme-porcelain .theme-toggle {
  border-color: rgba(91, 70, 62, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-dark);
}

body.theme-porcelain .language-toggle {
  border-color: rgba(148, 107, 73, 0.18);
  background: rgba(255, 254, 251, 0.7);
  color: #b5262b;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.3);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fffaf2;
}

body.theme-porcelain .nav-toggle {
  border-color: rgba(74, 56, 50, 0.16);
}

body.theme-porcelain .nav-toggle span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf2;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 13, 17, 0.9) 0%, rgba(90, 24, 32, 0.68) 43%, rgba(90, 24, 32, 0.2) 72%),
    linear-gradient(0deg, rgba(45, 27, 22, 0.26), rgba(45, 27, 22, 0));
}

body:not(.theme-porcelain) .hero::before {
  background:
    linear-gradient(90deg, rgba(251, 245, 235, 0.99) 0%, rgba(251, 245, 235, 0.94) 42%, rgba(251, 245, 235, 0.46) 64%, rgba(20, 8, 6, 0.52) 100%),
    radial-gradient(circle at 4% 52%, rgba(123, 24, 36, 0.12), transparent 18%),
    linear-gradient(0deg, rgba(18, 9, 7, 0.3), rgba(18, 9, 7, 0));
}

body:not(.theme-porcelain) .hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(44vw, 640px);
  background:
    linear-gradient(180deg, transparent 0 14%, rgba(123, 24, 36, 0.08) 14% 15%, transparent 15% 100%),
    radial-gradient(circle at 20% 80%, rgba(108, 61, 40, 0.16), transparent 28%);
  pointer-events: none;
}

body:not(.theme-porcelain) .hero-content {
  color: #2d1b16;
  max-width: 720px;
}

body:not(.theme-porcelain) .hero .eyebrow {
  color: var(--red);
  font-weight: 900;
}

body:not(.theme-porcelain) .hero-copy {
  max-width: 560px;
  color: rgba(45, 27, 22, 0.9);
  font-weight: 600;
}

body:not(.theme-porcelain) h1 {
  color: #681721;
  text-shadow: 0 1px 0 rgba(255, 250, 242, 0.8);
}

body:not(.theme-porcelain) .hero h1 + .hero-copy {
  margin-top: 28px;
}

body.theme-porcelain .hero {
  color: var(--ink);
}

body.theme-porcelain .hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.84) 38%, rgba(255, 253, 247, 0.32) 70%, rgba(255, 253, 247, 0.08) 100%),
    radial-gradient(circle at 3% 50%, rgba(181, 38, 43, 0.08), transparent 18%),
    linear-gradient(0deg, rgba(255, 250, 243, 0.42), rgba(255, 250, 243, 0.08));
}

body.theme-porcelain .hero-media img {
  object-position: 64% center;
}

.hero-content {
  position: relative;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: clamp(56px, 10vw, 108px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c9b4;
}

body.theme-porcelain .hero .eyebrow {
  color: #b68555;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(48px, 8vw, 96px);
}

h2 {
  color: var(--red-dark);
  font-size: clamp(32px, 5vw, 58px);
}

h3 {
  color: var(--red-dark);
  font-size: 24px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

body.theme-porcelain .hero-copy {
  color: rgba(62, 44, 35, 0.82);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn.primary {
  background: var(--red);
  color: #fffaf2;
  box-shadow: 0 18px 40px rgba(30, 6, 9, 0.24);
}

.btn.secondary {
  border-color: rgba(123, 24, 36, 0.22);
  background: rgba(255, 250, 242, 0.88);
  color: var(--red-dark);
}

.hero .btn.secondary {
  border-color: rgba(255, 250, 242, 0.45);
  background: rgba(255, 250, 242, 0.12);
  color: #fffaf2;
}

body.theme-porcelain .btn.primary {
  background: #b5262b;
  color: #fffefb;
  box-shadow: 0 18px 42px rgba(181, 38, 43, 0.18);
}

body.theme-porcelain .hero .btn.secondary {
  border-color: rgba(148, 107, 73, 0.28);
  background: rgba(255, 254, 251, 0.76);
  color: var(--red-dark);
  backdrop-filter: blur(14px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

body:not(.theme-porcelain) .hero-stats {
  position: relative;
  width: min(1180px, calc(100vw - 36px));
  margin-top: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(30, 17, 12, 0.78);
  box-shadow: 0 22px 64px rgba(30, 6, 9, 0.24);
  backdrop-filter: blur(18px);
}

.hero-stats span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.1);
  color: rgba(255, 250, 242, 0.86);
}

body.theme-porcelain .hero-stats span {
  border-color: rgba(148, 107, 73, 0.14);
  background: rgba(255, 254, 251, 0.9);
  color: rgba(62, 44, 35, 0.72);
  backdrop-filter: blur(12px);
}

body.theme-porcelain .hero-stats {
  width: min(1100px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid rgba(148, 107, 73, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.78);
  box-shadow: 0 22px 66px rgba(148, 107, 73, 0.11);
  backdrop-filter: blur(18px);
}

body.theme-porcelain .hero-stats span {
  flex: 1 1 150px;
  text-align: center;
}

body.theme-porcelain .hero-stats strong {
  color: #946b49;
}

body:not(.theme-porcelain) .hero-stats span {
  flex: 1 1 160px;
  border: 0;
  border-right: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.68);
  text-align: center;
}

body:not(.theme-porcelain) .hero-stats span:last-child {
  border-right: 0;
}

body:not(.theme-porcelain) .hero-stats strong {
  display: block;
  color: #fff3df;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 18px;
}

.hero-stats strong {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 22px;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.service-showcase article {
  position: relative;
  grid-column: span 2;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--red-dark);
  box-shadow: var(--shadow);
}

.service-showcase article:nth-child(1),
.service-showcase article:nth-child(2) {
  grid-column: span 3;
  min-height: 500px;
}

.service-showcase img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  opacity: 0.86;
}

.service-showcase article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45, 27, 22, 0.9), rgba(45, 27, 22, 0.05) 62%);
}

.service-showcase div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #fffaf2;
}

.service-showcase span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f4c9b4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-showcase h3 {
  color: #fffaf2;
}

.service-showcase p {
  margin: 10px 0 0;
  color: rgba(255, 250, 242, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  max-width: 1140px;
  margin: 0 auto;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
}

.about-copy p {
  margin: 0 0 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.branch-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf2, #f8ead8);
  box-shadow: 0 12px 42px rgba(79, 16, 24, 0.08);
}

body.theme-porcelain .service-card,
body.theme-porcelain .branch-card,
body.theme-porcelain .ritual-feature,
body.theme-porcelain .package-card,
body.theme-porcelain .treatment-columns article,
body.theme-porcelain .price-table,
body.theme-porcelain blockquote {
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 20px 60px rgba(154, 120, 108, 0.09);
  backdrop-filter: blur(16px);
}

body.theme-porcelain .ritual-feature.deep-red {
  border-color: rgba(181, 38, 43, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 246, 240, 0.96), rgba(248, 224, 214, 0.9)),
    #fffefb;
  color: var(--ink);
}

body.theme-porcelain .ritual-feature.deep-red h3,
body.theme-porcelain .ritual-feature.deep-red .number {
  color: #b5262b;
}

body.theme-porcelain .ritual-feature.deep-red p {
  color: rgba(62, 44, 35, 0.82);
}

.service-card {
  min-height: 280px;
  padding: 30px 22px;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(123, 24, 36, 0.18);
  border-radius: 50%;
  background: #f1dfca;
  color: var(--red);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 24px;
}

.service-card p,
.branch-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.ritual-design {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(241, 223, 202, 0.68)),
    var(--ivory);
}

.ritual-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.ritual-feature,
.package-card,
.treatment-columns article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 18px 54px rgba(79, 16, 24, 0.1);
}

.ritual-feature {
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
}

.ritual-feature.deep-red {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fffaf2;
}

.ritual-feature.deep-red h3,
.ritual-feature.deep-red .number {
  color: #fffaf2;
}

.ritual-feature .number {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.ritual-feature p,
.package-card p,
.treatment-columns p,
.treatment-columns li {
  color: var(--muted);
}

.ritual-feature.deep-red p {
  color: rgba(255, 250, 242, 0.82);
}

.ritual-feature ul,
.treatment-columns ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ritual-feature li,
.treatment-columns li {
  position: relative;
  padding-left: 22px;
}

.ritual-feature li::before,
.treatment-columns li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.signature {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 228, 209, 0.16), transparent 32%),
    linear-gradient(135deg, var(--red-dark), #7b1824 52%, #3e0e14);
  color: #fffaf2;
}

body.theme-porcelain .signature {
  background:
    linear-gradient(135deg, rgba(74, 56, 50, 0.93), rgba(111, 79, 68, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(216, 167, 163, 0.32), transparent 34%);
}

.signature h2,
.signature h3,
.signature .section-kicker {
  color: #fffaf2;
}

.signature .section-heading p {
  color: rgba(255, 250, 242, 0.78);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.ritual-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
}

.ritual-grid span {
  color: #f4c9b4;
  font-family: Georgia, serif;
  font-size: 42px;
}

.ritual-grid p {
  color: rgba(255, 250, 242, 0.76);
}

.packages-section {
  background: #fffaf2;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.package-card {
  padding: clamp(22px, 4vw, 34px);
}

.package-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1dfca;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(79, 16, 24, 0.12);
}

.package-meta strong {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 30px;
}

.package-meta span {
  color: var(--muted);
  font-weight: 700;
}

.price-table {
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(79, 16, 24, 0.1);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.head {
  background: var(--red-dark);
  color: #fffaf2;
  font-weight: 800;
}

body.theme-porcelain .price-row.head {
  background: #4a3832;
}

.price-row strong {
  color: var(--red);
  font-size: 20px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.branch-card {
  padding: 26px;
}

.branch-card h3 {
  font-size: 21px;
}

.branch-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
}

.branch-phone {
  color: var(--red-dark) !important;
  font-weight: 800;
}

.treatment-menu-section {
  background: var(--ivory);
}

.treatment-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.treatment-columns article {
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
}

.treatment-columns img {
  width: calc(100% + clamp(48px, 8vw, 68px));
  height: 220px;
  margin: calc(clamp(24px, 4vw, 34px) * -1) calc(clamp(24px, 4vw, 34px) * -1) 26px;
  object-fit: cover;
}

.reviews {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background: #f1dfca;
}

body.theme-porcelain .reviews {
  background: #f5e7df;
}

.review-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.review-panel p {
  color: var(--muted);
}

.review-cards {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 30px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 18px 54px rgba(79, 16, 24, 0.11);
  color: var(--ink);
  font-size: 18px;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 48px clamp(18px, 5vw, 72px) 34px;
  background: var(--red-dark);
  color: #fffaf2;
}

body.theme-porcelain .site-footer {
  background: #4a3832;
}

.site-footer p {
  max-width: 560px;
  color: rgba(255, 250, 242, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: rgba(255, 250, 242, 0.8);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  background: #1f8f4d;
  color: white;
  box-shadow: 0 16px 42px rgba(31, 143, 77, 0.32);
}

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

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

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 22px;
    border-top: 1px solid rgba(255, 250, 242, 0.15);
    background: rgba(79, 16, 24, 0.98);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  body.theme-porcelain .main-nav {
    background: rgba(255, 250, 246, 0.98);
    border-radius: 0;
    padding: 14px 18px 22px;
  }

  body.theme-porcelain .main-nav a {
    border-bottom-color: rgba(74, 56, 50, 0.1);
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .language-toggle {
    display: none;
  }

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

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

  .service-showcase article,
  .service-showcase article:nth-child(1),
  .service-showcase article:nth-child(2) {
    grid-column: span 1;
  }

  .service-showcase article,
  .service-showcase img {
    min-height: 340px;
  }

  .ritual-board,
  .package-grid,
  .treatment-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

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

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

  .hero::before {
    background:
      linear-gradient(0deg, rgba(55, 13, 17, 0.95) 0%, rgba(79, 16, 24, 0.84) 48%, rgba(79, 16, 24, 0.28) 100%),
      linear-gradient(90deg, rgba(55, 13, 17, 0.45), rgba(55, 13, 17, 0.04));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 54px 0 74px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .service-showcase article,
  .service-showcase article:nth-child(1),
  .service-showcase article:nth-child(2),
  .service-showcase img {
    min-height: 300px;
  }

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

  .split,
  .ritual-grid,
  .review-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .price-table {
    box-shadow: 0 14px 40px rgba(79, 16, 24, 0.12);
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px;
  }

  .price-row.head {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}
