:root {
  --sa-ink: #221714;
  --sa-muted: #665a52;
  --sa-soft: #f2efeb;
  --sa-soft-green: #e8ebe4;
  --sa-green: #2f4033;
  --sa-green-dark: #243226;
  --sa-gold: #a6411c;
  --sa-cream: #f2efeb;
  --sa-nude: #e0c6ac;
  --sa-copper: #a6411c;
  --sa-brown: #221714;
  --sa-green-rgb: 47, 64, 51;
  --sa-copper-rgb: 166, 65, 28;
  --sa-nude-rgb: 224, 198, 172;
  --sa-line: rgba(47, 64, 51, 0.14);
  --sa-shadow: 0 24px 70px rgba(34, 23, 20, 0.1);
  --sa-radius: 8px;
  --sa-radius-lg: 18px;
  --sa-container: 1500px;
  --sa-header: 100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sa-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--sa-header);
  display: grid;
  grid-template-columns: minmax(190px, 0.22fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 2.6vw, 50px);
  padding: 0 clamp(26px, 4.2vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(var(--sa-green-rgb), 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(18px);
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(34, 23, 20, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 205px;
  position: relative;
  z-index: 2;
}

.brand img,
.footer-brand img {
  width: 205px;
  max-height: 66px;
  height: auto;
  object-fit: contain;
  filter: saturate(0.85);
}

.brand img {
  transition: transform 260ms ease, filter 260ms ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.015);
  filter: saturate(0.95);
}

.primary-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  font-size: 11.6px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.095em;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-link::before {
  display: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 28px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--sa-gold);
  transition: transform 220ms ease, margin 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sa-green-dark);
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  margin-left: -9px;
  transform: scaleX(1);
}

.submenu-caret {
  transform: translateY(-1px);
  font-size: 14px;
  line-height: 1;
  transition: transform 220ms ease;
}

.has-submenu:hover .submenu-caret,
.has-submenu:focus-within .submenu-caret {
  transform: translateY(-1px) rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 260px;
  padding: 14px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 242, 0.96)),
    #fff;
  box-shadow: 0 34px 90px rgba(34, 23, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px) scale(0.97);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-top: 1px solid rgba(var(--sa-green-rgb), 0.14);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.submenu a {
  display: block;
  padding: 13px 15px;
  border-radius: 14px;
  color: var(--sa-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.submenu a:hover {
  transform: translateX(4px);
  background: rgba(238, 241, 231, 0.72);
  color: var(--sa-green-dark);
  box-shadow: inset 3px 0 0 rgba(var(--sa-copper-rgb), 0.52);
}

.submenu.is-mega {
  width: min(92vw, 980px);
  padding: 16px;
}

.submenu.is-category-menu {
  width: min(92vw, 900px);
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 242, 0.95)),
    #fff;
  box-shadow: 0 40px 110px rgba(34, 23, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.submenu-all {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 17px 18px !important;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 20px !important;
  background:
    linear-gradient(135deg, rgba(238, 241, 231, 0.86), rgba(255, 255, 255, 0.78));
  color: var(--sa-green-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px !important;
  font-weight: 400 !important;
}

.submenu-all::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sa-green);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.submenu-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: service-category;
}

.submenu-category {
  display: grid !important;
  position: relative;
  min-height: 120px;
  align-content: center;
  gap: 8px;
  padding: 22px 22px 22px 70px !important;
  border: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(248, 247, 242, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.submenu-category::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--sa-copper-rgb), 0.54), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 200ms ease, transform 200ms ease;
}

.submenu-category:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.submenu-category::before {
  counter-increment: service-category;
  content: "0" counter(service-category);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 241, 231, 0.8));
  color: var(--sa-green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.submenu-category strong {
  color: var(--sa-ink);
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 400;
}

.submenu-category small {
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.45;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.submenu-group {
  display: grid;
  align-content: start;
  gap: 2px;
  min-width: 0;
}

.submenu-group strong {
  display: block;
  min-height: 34px;
  padding: 8px 10px 4px;
  color: var(--sa-green-dark);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 400;
}

.submenu-group a {
  padding: 9px 10px;
  font-size: 12px;
}

.nav-link.is-book-nav {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--sa-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(var(--sa-green-rgb), 0.18);
}

.nav-link.is-book-nav::after {
  display: none;
}

.nav-link.is-book-nav:hover,
.nav-link.is-book-nav.is-active {
  background: var(--sa-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-cta,
.sa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--sa-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(var(--sa-green-rgb), 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.sa-btn:hover {
  transform: translateY(-2px);
  background: var(--sa-copper);
  box-shadow: 0 18px 38px rgba(var(--sa-copper-rgb), 0.24);
}

.sa-btn.is-light {
  background: #fff;
  color: var(--sa-green-dark);
  box-shadow: none;
}

.sa-btn.is-outline {
  background: transparent;
  color: var(--sa-green-dark);
  border: 1px solid rgba(var(--sa-green-rgb), 0.34);
  box-shadow: none;
}

.phone-circle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--sa-green);
  border-radius: 999px;
  color: var(--sa-green-dark);
  overflow: visible;
}

.phone-circle svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
  overflow: visible;
}

.header-phone-circle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--sa-line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.82));
  box-shadow: 0 12px 30px rgba(34, 23, 20, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(34, 23, 20, 0.13);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--sa-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-rail {
  position: fixed;
  right: clamp(16px, 1.8vw, 30px);
  top: 50%;
  z-index: 75;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 72px;
  padding: 10px 8px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 242, 0.9)),
    #fff;
  box-shadow: 0 24px 64px rgba(34, 23, 20, 0.15);
  backdrop-filter: blur(18px);
  color: var(--sa-ink);
  transform: translateY(-50%);
}

.social-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--sa-green-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(var(--sa-green-rgb), 0.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-rail a:hover {
  transform: translateY(-2px);
  background: var(--sa-soft);
  box-shadow: inset 0 0 0 1px rgba(var(--sa-green-rgb), 0.22), 0 12px 26px rgba(34, 23, 20, 0.12);
}

.social-rail .rail-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--sa-green);
  border-radius: 50%;
  color: var(--sa-green-dark);
  fill: currentColor;
}

.social-rail .rail-icon svg {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.social-rail .rail-icon .sa-asset-icon {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.insta-mark {
  font-size: 23px;
  line-height: 1;
}

.social-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 4px 0 6px;
  color: var(--sa-green-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.rail-text {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  display: block;
  padding: 8px 11px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(34, 23, 20, 0.12);
  color: var(--sa-green-dark);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.social-rail a:hover .rail-text,
.social-rail a:focus-visible .rail-text {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.social-rail-book {
  width: 54px !important;
  height: 64px !important;
  min-height: 64px !important;
  background: var(--sa-copper) !important;
  color: #fff !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 34px rgba(var(--sa-copper-rgb), 0.28);
}

.social-rail .social-rail-book:hover,
.social-rail .social-rail-book:focus-visible {
  background: var(--sa-brown) !important;
  box-shadow: 0 20px 42px rgba(34, 23, 20, 0.28);
}

.social-rail-book .rail-icon {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(var(--sa-nude-rgb), 0.22);
  color: #fff;
}

.social-rail-book .rail-text {
  background: var(--sa-brown);
  color: #fff;
}

.site-main {
  min-height: 62vh;
}

.container {
  width: min(calc(100% - 96px), var(--sa-container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 96px), 1080px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(470px, 42vw, 550px);
  display: grid;
  align-items: center;
  background: #fbfaf7;
}

.hero.is-compact {
  min-height: 430px;
}

body:not(.home) .site-main > .hero {
  min-height: clamp(360px, 34vw, 430px);
}

body:not(.home) .site-main > .hero .hero-grid {
  align-items: center;
  min-height: inherit;
}

body:not(.home) .site-main > .hero .hero-copy {
  min-height: inherit;
  padding-top: clamp(34px, 4vw, 58px);
  padding-right: clamp(52px, 4.6vw, 70px);
  padding-bottom: clamp(34px, 4vw, 58px);
  padding-left: clamp(52px, 4.6vw, 70px);
}

body:not(.home) .site-main > .hero .hero-media {
  align-self: center;
  height: clamp(320px, 30vw, 390px);
  min-height: 0;
}

body:not(.home) .site-main > .hero .hero-actions {
  gap: 16px;
}

body:not(.home) .site-main > .hero .hero-actions .sa-btn {
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
}

body:not(.home) .site-main > .hero .hero-actions .play-link {
  gap: 8px;
  font-size: 12px;
}

body:not(.home) .site-main > .hero .hero-actions .play-link span:first-child {
  width: 40px;
  height: 40px;
}

.booking-hero {
  min-height: clamp(300px, 28vw, 360px) !important;
}

.booking-hero .hero-copy {
  padding-top: clamp(30px, 3.8vw, 50px) !important;
  padding-bottom: clamp(30px, 3.8vw, 50px) !important;
}

.booking-hero .hero-media {
  height: clamp(260px, 25vw, 330px) !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  min-height: inherit;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 92px) clamp(38px, 7vw, 136px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -14%;
  right: -30%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(246, 244, 238, 0.88);
  z-index: -1;
}

.hero-media {
  min-height: 430px;
  overflow: hidden;
}

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

.hero-media.is-soft img {
  filter: saturate(0.9) brightness(1.05);
}

.home-brand-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--sa-nude-rgb), 0.38), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(242, 239, 235, 0.9));
}

.home-brand-hero .hero-copy::before {
  background:
    radial-gradient(circle, rgba(var(--sa-nude-rgb), 0.5) 0%, rgba(242, 239, 235, 0.88) 58%, transparent 74%);
}

.home-brand-hero .hero-line {
  background: var(--sa-copper);
}

.home-brand-hero .hero-media {
  position: relative;
  isolation: isolate;
  background: var(--sa-nude);
}

.home-brand-hero .hero-media > img {
  object-position: center;
  filter: saturate(0.98) brightness(1.02) contrast(1.02);
}

.home-brand-hero .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 239, 235, 0.34), transparent 42%),
    linear-gradient(180deg, transparent 44%, rgba(34, 23, 20, 0.22));
}

.home-solae-card {
  position: absolute;
  left: clamp(28px, 4.2vw, 66px);
  top: clamp(86px, 11vw, 150px);
  z-index: 2;
  display: block;
  width: min(39%, 320px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  transition: transform 200ms ease, filter 200ms ease;
}

.home-solae-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.home-solae-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(34, 23, 20, 0.36));
}

.home-solae-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .home-brand-hero .hero-media,
  .home-brand-hero .hero-media > img {
    min-height: 280px;
    height: 280px;
  }

  .home-solae-card {
    top: 20px;
    bottom: auto;
    width: min(50%, 220px);
    left: 18px;
    padding: 0;
  }

  .home-solae-card img {
    min-height: 0 !important;
    height: auto !important;
  }
}

@media (max-width: 520px) {
  .home-solae-card {
    width: min(52%, 190px);
  }
}

.home-mockup-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(650px, 52vw, 760px);
  overflow: hidden;
  background: var(--sa-soft);
}

.home-mockup-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -17%;
  z-index: 3;
  height: 30%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.94);
  pointer-events: none;
}

.home-mockup-stage {
  position: relative;
  min-height: inherit;
}

.home-mockup-image {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 50%;
  overflow: hidden;
}

.home-mockup-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-mockup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mockup-image-dental {
  left: 0;
}

.home-mockup-image-dental img {
  object-position: center;
  filter: saturate(0.6) brightness(1.12);
}

.home-mockup-image-dental::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68) 60%, rgba(255, 255, 255, 0.36)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(242, 239, 235, 0.42));
}

.home-mockup-image-solae {
  right: 0;
}

.home-mockup-image-solae img {
  object-position: 58% center;
  filter: saturate(0.92) brightness(1.05);
}

.home-mockup-image-solae::after {
  background:
    linear-gradient(90deg, rgba(242, 239, 235, 0.28), rgba(224, 198, 172, 0.12) 48%, rgba(34, 23, 20, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(242, 239, 235, 0.18));
}

.home-mockup-center {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(540px, 46vw, 710px);
  aspect-ratio: 1;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78) 64%, rgba(255, 255, 255, 0.36));
  box-shadow: 0 34px 100px rgba(34, 23, 20, 0.1);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.home-mockup-center.reveal {
  transform: translate(-50%, -50%) translateY(20px);
}

.home-mockup-center.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.home-mockup-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  color: var(--sa-green);
}

.home-mockup-mark svg,
.home-mockup-mark .sa-asset-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.home-mockup-kicker,
.home-mockup-trust > strong {
  margin: 0 0 18px;
  color: var(--sa-green-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.home-mockup-center h1 {
  margin: 0;
  max-width: 620px;
  color: var(--sa-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-mockup-center h1 span {
  display: block;
  color: var(--sa-green);
}

.home-mockup-center h1 em {
  color: var(--sa-copper);
  font-style: normal;
}

.home-mockup-copy {
  max-width: 530px;
  margin: 24px auto 0;
  color: var(--sa-muted);
  font-size: 19px;
  line-height: 1.55;
}

.home-mockup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.sa-btn.is-copper {
  border-color: rgba(var(--sa-copper-rgb), 0.48);
  color: var(--sa-copper);
}

.home-side-note {
  position: absolute;
  z-index: 4;
  width: min(17vw, 260px);
  color: var(--sa-green-dark);
}

.home-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sa-green-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.home-side-note span {
  display: block;
  color: var(--sa-muted);
  font-size: 19px;
  line-height: 1.5;
}

.home-side-note::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin-top: 20px;
  background: var(--sa-copper);
}

.home-side-note-dental {
  left: clamp(34px, 5.3vw, 82px);
  top: 36%;
}

.home-side-note-solae {
  right: clamp(86px, 14vw, 220px);
  top: 59%;
  color: #fff;
  text-shadow: 0 2px 14px rgba(34, 23, 20, 0.42);
}

.home-side-note-solae strong {
  color: var(--sa-cream);
  text-shadow: 0 2px 14px rgba(34, 23, 20, 0.48);
}

.home-side-note-solae span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(34, 23, 20, 0.48);
}

.home-side-note-solae::after {
  background: var(--sa-nude);
  box-shadow: 0 0 18px rgba(var(--sa-nude-rgb), 0.42);
}

.home-mockup-overlap {
  position: relative;
  z-index: 6;
  margin-top: -70px;
  padding: 0 0 clamp(54px, 6vw, 88px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 28%),
    #fff;
}

.home-mockup-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 96px), 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(var(--sa-green-rgb), 0.1);
  border-radius: var(--sa-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(34, 23, 20, 0.13);
  backdrop-filter: blur(18px);
}

.home-benefit {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 24px 28px;
  border-left: 1px solid rgba(var(--sa-green-rgb), 0.12);
}

.home-benefit:first-child {
  border-left: 0;
}

.home-benefit-icon,
.home-booking-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(var(--sa-green-rgb), 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 236, 0.86));
  color: var(--sa-green);
  line-height: 0;
  box-shadow: inset 0 0 0 6px rgba(var(--sa-green-rgb), 0.045), 0 14px 30px rgba(34, 23, 20, 0.08);
}

.home-benefit.is-featured .home-benefit-icon {
  border-color: rgba(var(--sa-green-rgb), 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 236, 0.86));
  color: var(--sa-green);
  box-shadow: inset 0 0 0 6px rgba(var(--sa-green-rgb), 0.045), 0 14px 30px rgba(34, 23, 20, 0.08);
}

.home-benefit-icon svg,
.home-benefit-icon .sa-asset-icon,
.home-booking-icon svg,
.home-booking-icon .sa-asset-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  fill: currentColor;
  transform: translate(-50%, -50%);
}

.home-benefit-icon .sa-asset-icon,
.home-booking-icon .sa-asset-icon {
  object-fit: contain;
}

.home-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sa-green-dark);
  font-size: 15px;
  line-height: 1.2;
}

.home-benefit > div > span {
  display: block;
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.55;
}

.home-mockup-booking {
  display: grid;
  grid-template-columns: 78px minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 96px), 820px);
  margin: 30px auto 0;
  padding: 28px 30px;
  border-radius: var(--sa-radius);
  background:
    linear-gradient(110deg, rgba(var(--sa-green-rgb), 0.96), rgba(36, 50, 38, 0.96)),
    var(--sa-green);
  color: #fff;
  box-shadow: 0 30px 76px rgba(var(--sa-green-rgb), 0.22);
}

.home-booking-icon {
  width: 78px;
  height: 78px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sa-green);
}

.home-booking-copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.home-booking-copy p,
.home-booking-phone span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-booking-phone {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.home-booking-phone span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.home-booking-phone a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.home-mockup-booking .sa-btn {
  min-height: 46px;
  padding-inline: 24px;
  color: var(--sa-green-dark);
}

.home-mockup-trust {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(calc(100% - 96px), 940px);
  margin: 30px auto 0;
}

.home-mockup-trust > strong {
  margin-bottom: 0;
}

.home-trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  color: var(--sa-muted);
  font-size: 14px;
}

.home-trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.home-trust-items svg,
.home-trust-items .sa-asset-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: var(--sa-green-dark);
}

.home-trust-items img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.insurance-slider-section {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px) 0 clamp(42px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fff 0%, rgba(242, 239, 235, 0.56) 100%),
    #fff;
}

.insurance-slider-section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--sa-green-rgb), 0.12), transparent);
}

.insurance-slider-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(calc(100% - 96px), 980px);
  margin: 0 auto 24px;
  text-align: center;
}

.insurance-slider-head span {
  color: var(--sa-copper);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.insurance-slider-head h2 {
  margin: 0;
  color: var(--sa-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.insurance-marquee {
  position: relative;
  width: min(calc(100% - 64px), 1320px);
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.insurance-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 8px 0;
  animation: insuranceMarquee 36s linear infinite;
  will-change: transform;
}

.insurance-marquee:hover .insurance-marquee-track {
  animation-play-state: paused;
}

.insurance-logo-card {
  flex: 0 0 190px;
  display: grid;
  place-items: center;
  height: 102px;
  padding: 16px 22px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.1);
  border-radius: var(--sa-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.9));
  box-shadow: 0 18px 44px rgba(34, 23, 20, 0.08);
}

.insurance-logo-card img {
  width: 100%;
  max-width: 148px;
  height: 64px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.03);
}

@keyframes insuranceMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--sa-muted);
  font-size: 14px;
}

.section-label {
  margin-bottom: 14px;
  color: var(--sa-green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.page-title,
.section-title,
.card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(44px, 4.25vw, 64px);
}

.hero h1 em,
.section-title em,
.page-title em {
  color: var(--sa-green);
  font-style: normal;
}

.hero .script {
  display: block;
  margin-top: -8px;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  color: var(--sa-ink);
  font-size: 0.45em;
  line-height: 1.1;
}

.hero-line {
  width: 70px;
  height: 1px;
  margin: 24px 0 26px;
  background: var(--sa-green);
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--sa-muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--sa-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.play-link span:first-child {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--sa-green);
  border-radius: 50%;
  color: var(--sa-green-dark);
}

.play-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sa-asset-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  vertical-align: -0.12em;
  -webkit-mask: var(--sa-icon-url) center / contain no-repeat;
  mask: var(--sa-icon-url) center / contain no-repeat;
}

.stats-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 96px), 1080px);
  margin: -52px auto 0;
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: var(--sa-line);
  box-shadow: var(--sa-shadow);
}

.stats-panel.is-four {
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 96px), 1200px);
}

.stat {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 104px;
  padding: 22px 34px;
  background: rgba(255, 255, 255, 0.92);
}

.stat svg,
.stat .sa-asset-icon,
.icon-bubble svg,
.icon-bubble .sa-asset-icon,
.legal-icon svg,
.legal-icon .sa-asset-icon,
.booking-icon svg,
.booking-icon .sa-asset-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.stat svg,
.stat .sa-asset-icon {
  color: var(--sa-gold);
}

.stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.stat span {
  color: var(--sa-muted);
}

.is-doctify-stat {
  gap: 18px;
}

.doctify-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(37, 108, 198, 0.16));
}

.is-doctify-stat strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.service-stats {
  width: min(calc(100% - 96px), 1120px);
}

.service-stats.is-four {
  width: min(calc(100% - 96px), 1120px);
}

.service-stats .stat {
  min-height: 96px;
  padding: 22px 28px;
  gap: 18px;
}

.service-stats .stat svg,
.service-stats .stat .sa-asset-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.service-stats .stat strong {
  font-size: 18px;
  line-height: 1.14;
}

.service-stats .stat span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: clamp(56px, 6vw, 96px) 0;
}

.section.is-soft {
  background: linear-gradient(180deg, #fff 0%, var(--sa-soft) 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 4.2vw, 56px);
  overflow-wrap: anywhere;
}

.section-intro {
  max-width: 710px;
  margin: 14px 0 0;
  color: var(--sa-muted);
  font-size: 18px;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius-lg);
  background: #fff;
  box-shadow: var(--sa-shadow);
}

.split-card > div:first-child {
  padding: clamp(32px, 4.2vw, 58px);
}

.split-card img {
  width: calc(100% - clamp(32px, 4vw, 56px));
  height: clamp(280px, 29vw, 390px);
  min-height: 0;
  margin: clamp(16px, 2vw, 28px);
  border-radius: var(--sa-radius);
  object-fit: cover;
  object-position: center;
}

.service-detail-section {
  padding-top: clamp(48px, 5vw, 78px);
}

.service-detail-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
}

.service-detail-card > div:first-child {
  padding: clamp(30px, 4vw, 54px);
}

.service-detail-card .section-title {
  font-size: clamp(30px, 3.2vw, 44px);
}

.service-detail-card .single-content {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-card .feature-list {
  gap: 10px;
  margin: 20px 0 26px;
}

.service-detail-card .feature-list li {
  font-size: 15px;
  line-height: 1.45;
}

.service-detail-card img {
  height: clamp(260px, 28vw, 360px);
  max-height: 360px;
}

.service-detail-section .service-process-head {
  margin-top: clamp(46px, 5vw, 64px) !important;
}

.service-detail-section .feature-strip.is-process .feature-item {
  padding: 20px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sa-muted);
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sa-green);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.55);
}

.service-grid,
.doctor-grid,
.treatment-grid,
.legal-grid,
.blog-grid {
  display: grid;
  gap: 26px;
}

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

.service-grid.is-compact-grid .service-card img {
  height: 230px;
}

.service-grid.is-compact-grid .floating-icon {
  top: 195px;
}

.service-grid.is-compact-grid .card-title {
  font-size: clamp(24px, 2vw, 32px);
}

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

.service-accordion-grid {
  display: grid;
  gap: 18px;
}

.service-accordion {
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius-lg);
  background: #fff;
  box-shadow: 0 18px 52px rgba(34, 23, 20, 0.08);
}

.service-accordion summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  cursor: pointer;
  list-style: none;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary strong {
  display: block;
  color: var(--sa-ink);
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.02;
  font-weight: 400;
}

.service-accordion summary small {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  color: var(--sa-muted);
  font-size: 16px;
  line-height: 1.55;
}

.accordion-caret {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sa-soft);
  color: var(--sa-green-dark);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.service-accordion[open] .accordion-caret {
  transform: rotate(45deg);
  background: var(--sa-green);
  color: #fff;
}

.service-level-three {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px);
}

.service-accordion[open] .service-level-three {
  display: grid;
}

.service-level-three a {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid var(--sa-line);
  border-radius: 14px;
  color: inherit;
  background: var(--sa-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-level-three a:hover {
  transform: translateX(4px);
  border-color: rgba(var(--sa-green-rgb), 0.34);
  background: #fff;
}

.service-level-three span {
  color: var(--sa-ink);
  font-weight: 900;
}

.service-level-three small {
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-category-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius-lg);
  background: #fff;
  box-shadow: 0 18px 52px rgba(34, 23, 20, 0.08);
}

.service-category-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.05;
  font-weight: 400;
}

.service-category-card p {
  margin: 0;
  color: var(--sa-muted);
}

.service-category-links {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.service-category-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--sa-line);
  border-radius: 14px;
  color: inherit;
  background: var(--sa-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-category-links a:hover {
  transform: translateX(4px);
  border-color: rgba(var(--sa-green-rgb), 0.34);
  background: #fff;
}

.service-category-links span {
  color: var(--sa-ink);
  font-weight: 900;
}

.service-category-links small {
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-card,
.doctor-card,
.treatment-card,
.blog-card,
.legal-card,
.sidebar-card,
.contact-card,
.booking-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius-lg);
  background: #fff;
  box-shadow: 0 18px 52px rgba(34, 23, 20, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

a.service-card,
a.doctor-card,
a.treatment-card,
a.blog-card,
a.legal-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card:hover,
.doctor-card:hover,
.treatment-card:hover,
.blog-card:hover,
.legal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--sa-green-rgb), 0.32);
  box-shadow: 0 24px 68px rgba(34, 23, 20, 0.13);
}

.service-card img,
.blog-card img,
.treatment-card img {
  width: 100%;
  height: clamp(210px, 22vw, 260px);
  object-fit: cover;
  object-position: center;
}

.service-card-body,
.blog-card-body,
.treatment-card-body {
  padding: 34px;
}

.card-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.5vw, 42px);
}

.service-card p,
.doctor-card p,
.blog-card p,
.treatment-card p,
.legal-card p {
  color: var(--sa-muted);
}

.floating-icon {
  position: absolute;
  top: 245px;
  left: 34px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--sa-green);
  box-shadow: 0 14px 35px rgba(34, 23, 20, 0.14);
}

.floating-icon svg,
.floating-icon .sa-asset-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--sa-green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius-lg);
  background: var(--sa-line);
}

.feature-strip.is-process {
  grid-template-columns: repeat(5, 1fr);
}

.feature-strip.is-process .feature-item {
  align-items: flex-start;
  padding: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
}

.icon-bubble,
.legal-icon,
.booking-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--sa-soft-green);
  color: var(--sa-green-dark);
}

.feature-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.feature-item p {
  margin: 0;
  color: var(--sa-muted);
  font-size: 14px;
}

.cta-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 48px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-radius: var(--sa-radius-lg);
  background:
    radial-gradient(circle at 8% 20%, rgba(234, 240, 229, 0.78), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 244, 238, 0.92) 58%, rgba(234, 240, 229, 0.82) 100%);
  color: var(--sa-green-dark);
  box-shadow: 0 28px 78px rgba(34, 23, 20, 0.1);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(var(--sa-green-rgb), 0.1), transparent 42%, rgba(var(--sa-copper-rgb), 0.12));
}

.cta-band::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -110px;
  z-index: -1;
  width: clamp(230px, 24vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--sa-copper-rgb), 0.14), transparent 68%);
}

.cta-band h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.3vw, 48px);
}

.cta-band p {
  margin: 6px 0 0;
  max-width: 720px;
  color: var(--sa-muted);
}

.cta-band .icon-bubble {
  background: rgba(255, 255, 255, 0.76);
  color: var(--sa-green-dark);
  box-shadow: inset 0 0 0 1px rgba(var(--sa-green-rgb), 0.09), 0 16px 34px rgba(34, 23, 20, 0.09);
}

.cta-band .sa-btn,
.cta-band .sa-btn.is-light {
  background: var(--sa-green);
  color: #fff;
  box-shadow: 0 16px 36px rgba(var(--sa-green-rgb), 0.2);
}

.cta-band .sa-btn:hover,
.cta-band .sa-btn.is-light:hover {
  background: var(--sa-copper);
  box-shadow: 0 20px 42px rgba(var(--sa-copper-rgb), 0.24);
}

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

.doctor-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
}

.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.doctor-info {
  padding: 42px 34px;
}

.doctor-info h2,
.doctor-info h3 {
  margin: 18px 0 6px;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
}

.doctor-info strong {
  color: var(--sa-green);
}

.aesthetic-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  padding: clamp(44px, 6vw, 74px);
  border-radius: var(--sa-radius-lg);
  background: linear-gradient(135deg, #eef2ea, #dfe6d7);
}

.aesthetic-panel img {
  width: 100%;
  height: clamp(280px, 31vw, 360px);
  border-radius: var(--sa-radius);
  object-fit: cover;
  object-position: center;
}

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

.mini-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.mini-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--sa-green-dark);
  fill: currentColor;
}

.treatment-grid {
  grid-template-columns: repeat(4, 1fr);
}

.treatment-card img {
  height: clamp(190px, 18vw, 220px);
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(246, 244, 238, 0.9), rgba(234, 240, 229, 0.86));
  object-fit: contain;
  object-position: center;
}

.treatment-card-body {
  padding: 26px;
}

.treatment-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.solae-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(var(--sa-nude-rgb), 0.34), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--sa-cream) 100%);
}

.solae-page .hero {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 239, 235, 0.94) 48%, rgba(var(--sa-nude-rgb), 0.5) 100%);
}

.solae-page .solae-mockup-hero {
  position: relative;
  min-height: clamp(650px, calc(100vh - var(--sa-header)), 850px);
  overflow: hidden;
  background: #f7f2ec;
  isolation: isolate;
}

.solae-page .solae-mockup-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(61vw, 930px);
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(247, 239, 229, 0.94) 62%, rgba(247, 239, 229, 0.72) 100%);
  border-radius: 0 54% 54% 0 / 0 100% 100% 0;
  box-shadow: 34px 0 72px rgba(112, 77, 46, 0.14);
  pointer-events: none;
}

.solae-page .solae-mockup-hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(56vw, 860px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    url("../img/solae-hero-glow.webp") center / cover no-repeat;
  border-radius: 0 54% 54% 0 / 0 100% 100% 0;
  opacity: 0.12;
  filter: grayscale(0.18) blur(0.2px);
  pointer-events: none;
}

.solae-page .solae-mockup-hero .hero-grid {
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(490px, 0.52fr) minmax(0, 0.48fr);
  align-items: stretch;
  min-height: inherit;
}

.solae-page .solae-mockup-hero .hero-copy {
  z-index: 4;
  justify-content: center;
  min-height: inherit;
  padding: clamp(76px, 8vh, 112px) clamp(44px, 5.8vw, 84px) clamp(138px, 17vh, 190px);
  background: transparent;
}

.solae-page .solae-mockup-hero .hero-copy::before {
  display: none;
}

.solae-hero-wordmark {
  display: grid;
  gap: 18px;
  margin: 0 0 34px;
  color: #c19a68;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
}

.solae-hero-wordmark span {
  display: block;
  font-size: clamp(104px, 11.8vw, 178px);
  font-weight: 400;
}

.solae-hero-wordmark small {
  display: block;
  color: rgba(166, 65, 28, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(13px, 1.25vw, 19px);
  font-weight: 900;
  letter-spacing: 0.42em;
  line-height: 1.4;
  text-transform: uppercase;
}

.solae-page .solae-mockup-hero .breadcrumb {
  margin-bottom: clamp(38px, 5vw, 64px);
  color: var(--sa-copper);
  font-size: 15px;
}

.solae-page .solae-mockup-hero .section-label {
  margin-bottom: 18px;
  color: var(--sa-copper);
  font-size: 18px;
  letter-spacing: 0.18em;
}

.solae-page .solae-mockup-hero .hero-copy > p {
  max-width: 500px;
  margin-bottom: 34px;
  color: #4f4640;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.58;
}

.solae-page .solae-mockup-hero .hero-actions {
  align-items: center;
  gap: 18px;
}

.solae-page .solae-mockup-hero .sa-btn {
  min-height: 58px;
  padding-inline: 30px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.solae-page .solae-mockup-hero .hero-actions > .sa-btn:first-child {
  background: linear-gradient(135deg, #b67532, #a45d22);
  color: #fff;
  box-shadow: 0 18px 38px rgba(166, 93, 34, 0.24);
}

.solae-page .solae-mockup-hero .solae-contact-link {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(166, 93, 34, 0.18);
  color: #5b4b3d;
  box-shadow: 0 14px 30px rgba(67, 49, 35, 0.08);
}

.solae-page .solae-mockup-hero .solae-instagram-link {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(166, 93, 34, 0.62);
  color: var(--sa-copper);
  box-shadow: none;
}

.solae-page .solae-mockup-hero .solae-hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  height: auto;
  min-height: inherit;
  margin: 0;
  background: #161812;
}

body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media,
body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img {
  align-self: stretch;
  min-height: inherit;
  height: 100%;
}

.solae-page .solae-mockup-hero .solae-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(1.03) brightness(1.01) contrast(1.04);
}

.solae-page .solae-mockup-hero .solae-hero-media::after {
  background:
    linear-gradient(90deg, rgba(248, 240, 230, 0.18), rgba(20, 19, 15, 0) 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(22, 16, 12, 0.16));
}

.solae-hero-benefits {
  position: absolute;
  right: clamp(32px, 3.5vw, 58px);
  bottom: clamp(22px, 3vw, 40px);
  left: clamp(32px, 3.5vw, 58px);
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px 30px;
  border: 1px solid rgba(193, 154, 104, 0.24);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 28px 90px rgba(44, 32, 24, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.solae-hero-benefit {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 0 26px;
  border-right: 1px solid rgba(193, 154, 104, 0.18);
}

.solae-hero-benefit:first-child {
  padding-left: 0;
}

.solae-hero-benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.solae-hero-benefit-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(193, 154, 104, 0.6);
  border-radius: 50%;
  color: #c19a68;
  background: rgba(255, 255, 255, 0.32);
}

.solae-hero-benefit-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solae-hero-benefit strong,
.solae-hero-benefit small {
  display: block;
}

.solae-hero-benefit strong {
  color: #3f372f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.solae-hero-benefit small {
  margin-top: 8px;
  color: #6b625b;
  font-size: 14px;
  line-height: 1.45;
}

.solae-page .solae-mockup-hero .hero-grid {
  display: block;
  grid-template-columns: none;
}

.solae-page .solae-mockup-hero .hero-grid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: min(62vw, 930px);
  border-right: 1px solid rgba(193, 154, 104, 0.28);
  border-radius: 0 52% 52% 0 / 0 100% 100% 0;
  box-shadow: 28px 0 62px rgba(112, 77, 46, 0.12);
  pointer-events: none;
}

.solae-page .solae-mockup-hero::before {
  width: min(62vw, 930px);
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(90deg, rgba(255, 252, 247, 0.99) 0%, rgba(248, 241, 232, 0.96) 62%, rgba(247, 239, 229, 0.8) 100%);
  border-radius: 0 52% 52% 0 / 0 100% 100% 0;
}

.solae-page .solae-mockup-hero::after {
  width: min(58vw, 875px);
  border-radius: 0 52% 52% 0 / 0 100% 100% 0;
  opacity: 0.14;
}

.solae-page .solae-mockup-hero .hero-copy {
  width: min(58vw, 760px);
  max-width: 760px;
  position: relative;
  isolation: isolate;
}

.solae-page .solae-mockup-hero .hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 -170px 0 0;
  z-index: -1;
  display: block;
  border-right: 1px solid rgba(193, 154, 104, 0.3);
  border-radius: 0 52% 52% 0 / 0 100% 100% 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(248, 241, 232, 0.95) 68%, rgba(248, 241, 232, 0.72) 100%);
  box-shadow: 36px 0 76px rgba(112, 77, 46, 0.16);
  pointer-events: none;
}

.solae-hero-wordmark {
  width: min(100%, 520px);
  margin-bottom: 32px;
  line-height: 1;
}

.solae-hero-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 12px 26px rgba(77, 50, 30, 0.08));
}

.solae-page .solae-mockup-hero .solae-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
}

body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media,
body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img,
.solae-page .solae-mockup-hero .solae-hero-media img {
  min-height: 100%;
  height: 100%;
}

.solae-page .solae-mockup-hero .solae-hero-media img {
  object-position: 53% center;
  transform: scale(1.08) translateX(4%);
  transform-origin: center;
}

.solae-page .solae-mockup-hero .solae-hero-media::after {
  background:
    linear-gradient(90deg, rgba(248, 240, 230, 0.08), rgba(20, 19, 15, 0) 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(22, 16, 12, 0.2));
}

.solae-page .hero-copy::before {
  background:
    radial-gradient(circle, rgba(var(--sa-nude-rgb), 0.56) 0%, rgba(242, 239, 235, 0.88) 58%, transparent 72%);
}

.solae-hero-logo-heading {
  display: block;
  width: min(100%, 430px);
  max-width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solae-hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    sepia(0.72)
    saturate(0.82)
    brightness(0.72)
    contrast(1.16)
    drop-shadow(0 12px 24px rgba(34, 23, 20, 0.12));
}

@media (max-width: 680px) {
  .solae-hero-logo-heading {
    width: min(100%, 300px);
    margin-bottom: 16px;
  }
}

.solae-page .breadcrumb,
.solae-page .section-label,
.solae-page .text-link {
  color: var(--sa-copper);
}

.solae-page .hero h1 em,
.solae-page .section-title em,
.solae-page .page-title em {
  color: var(--sa-green);
}

.solae-page .hero .script {
  color: var(--sa-copper);
}

.solae-page .hero-line,
.solae-page .sa-btn {
  background: var(--sa-copper);
}

.solae-page .sa-btn:hover {
  background: var(--sa-brown);
}

.solae-page .hero-media {
  background: var(--sa-nude);
}

.solae-page .hero-media::after {
  background:
    linear-gradient(90deg, rgba(242, 239, 235, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(34, 23, 20, 0), rgba(34, 23, 20, 0.12));
}

.solae-page .hero-media.is-soft img {
  filter: saturate(0.94) brightness(1.02) contrast(1.02);
}

.solae-page .aesthetic-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--sa-nude-rgb), 0.72);
  background:
    linear-gradient(135deg, rgba(242, 239, 235, 0.96), rgba(var(--sa-nude-rgb), 0.78));
  box-shadow: 0 28px 82px rgba(34, 23, 20, 0.1);
}

.solae-page .aesthetic-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--sa-green), var(--sa-copper));
}

.solae-page .aesthetic-panel img,
.solae-page .treatment-card img {
  background:
    linear-gradient(145deg, rgba(242, 239, 235, 0.96), rgba(var(--sa-nude-rgb), 0.78));
}

.solae-page .mini-benefits span {
  color: var(--sa-brown);
}

.solae-page .mini-benefits svg,
.solae-page .mini-benefits .sa-asset-icon {
  color: var(--sa-copper);
}

.solae-page .treatment-card {
  border-color: rgba(var(--sa-nude-rgb), 0.72);
  background:
    linear-gradient(180deg, #fff 0%, rgba(242, 239, 235, 0.72) 100%);
}

.solae-page .treatment-card:hover {
  border-color: rgba(var(--sa-copper-rgb), 0.28);
  box-shadow: 0 30px 84px rgba(34, 23, 20, 0.13);
}

.solae-page .treatment-card h3 {
  color: var(--sa-brown);
}

.solae-page .solae-cta {
  grid-template-columns: minmax(132px, 192px) minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(50px, 6vw, 72px);
  padding: clamp(30px, 4.4vw, 52px);
  border-color: rgba(var(--sa-copper-rgb), 0.22);
  background:
    radial-gradient(circle at 12% 50%, rgba(var(--sa-nude-rgb), 0.94), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 242, 0.96) 52%, rgba(242, 239, 235, 0.88) 100%);
  color: var(--sa-brown);
  box-shadow: 0 30px 86px rgba(34, 23, 20, 0.11);
}

.solae-page .solae-cta::before {
  background:
    linear-gradient(90deg, rgba(var(--sa-copper-rgb), 0.12), transparent 44%, rgba(var(--sa-nude-rgb), 0.36));
}

.solae-page .solae-cta::after {
  top: auto;
  right: 16%;
  bottom: -150px;
  width: clamp(220px, 25vw, 360px);
  background: radial-gradient(circle, rgba(var(--sa-copper-rgb), 0.16), transparent 68%);
}

.solae-cta-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(132px, 14vw, 192px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solae-cta-mark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.82;
  filter:
    sepia(0.72)
    saturate(0.82)
    brightness(0.72)
    contrast(1.12)
    drop-shadow(0 12px 26px rgba(34, 23, 20, 0.1));
}

.solae-cta-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--sa-copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.solae-page .solae-cta h2 {
  color: var(--sa-brown);
  font-size: clamp(34px, 3.7vw, 54px);
}

.solae-page .solae-cta p {
  max-width: 640px;
  color: #6f625a;
  font-size: 17px;
  line-height: 1.64;
}

.solae-page .solae-cta .sa-btn,
.solae-page .solae-cta .sa-btn.is-light {
  background: var(--sa-copper);
  color: #fff;
  box-shadow: 0 18px 40px rgba(var(--sa-copper-rgb), 0.22);
}

.solae-page .solae-cta .sa-btn:hover,
.solae-page .solae-cta .sa-btn.is-light:hover {
  background: var(--sa-brown);
}

.solae-instagram-wall {
  position: relative;
  display: block;
  margin-top: clamp(56px, 7vw, 92px);
  padding: clamp(34px, 4.6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(var(--sa-copper-rgb), 0.16);
  border-radius: var(--sa-radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--sa-copper-rgb), 0.1), transparent 28%),
    radial-gradient(circle at 8% 26%, rgba(var(--sa-nude-rgb), 0.76), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 242, 235, 0.92));
  box-shadow: 0 30px 90px rgba(34, 23, 20, 0.1);
}

.solae-instagram-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(34px, 4.2vw, 54px);
}

.solae-instagram-heading {
  grid-column: 2;
  max-width: 760px;
  text-align: center;
}

.solae-instagram-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--sa-brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.solae-instagram-heading h2 {
  margin: 0;
  color: #211814;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.solae-instagram-heading h2::first-letter {
  color: var(--sa-copper);
}

.solae-instagram-heading i {
  display: block;
  width: 86px;
  height: 1px;
  margin: 22px auto;
  background: rgba(var(--sa-copper-rgb), 0.42);
}

.solae-instagram-heading i::after {
  content: "*";
  position: relative;
  top: -10px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  margin-left: 29px;
  background: #fbf8f3;
  color: var(--sa-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.solae-instagram-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #6f625a;
  font-size: 17px;
  line-height: 1.55;
}

.solae-instagram-follow {
  justify-self: end;
  align-self: end;
  display: grid;
  gap: 12px;
  color: var(--sa-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.solae-instagram-follow div {
  display: flex;
  gap: 12px;
}

.solae-instagram-follow a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sa-brown);
  box-shadow: 0 14px 34px rgba(34, 23, 20, 0.06);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.solae-instagram-follow a:hover,
.solae-instagram-follow a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--sa-copper-rgb), 0.4);
  color: var(--sa-copper);
}

.solae-instagram-follow svg,
.solae-instagram-follow .sa-asset-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.solae-instagram-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3.5vw, 42px);
}

.solae-instagram-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 10px;
}

.solae-instagram-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sa-copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.solae-instagram-kicker::before {
  content: "*";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--sa-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.solae-instagram-copy h3 {
  margin: 0;
  color: #211814;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 2.8vw, 43px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.solae-instagram-copy > p {
  position: relative;
  max-width: 255px;
  margin: 0;
  padding-top: 22px;
  color: #6f625a;
  font-size: 15px;
  line-height: 1.65;
}

.solae-instagram-copy > p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 1px;
  background: rgba(var(--sa-copper-rgb), 0.52);
}

.solae-instagram-main-link {
  width: fit-content;
  gap: 12px;
  min-height: 50px;
  padding-inline: 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.solae-page .solae-instagram-main-link {
  border: 0;
  background: var(--sa-green-dark);
  color: #fff;
  box-shadow: 0 16px 36px rgba(var(--sa-green-rgb), 0.18);
}

.solae-page .solae-instagram-main-link:hover,
.solae-page .solae-instagram-main-link:focus-visible {
  background: var(--sa-copper);
  color: #fff;
}

.solae-instagram-main-link svg,
.solae-instagram-main-link .sa-asset-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.solae-instagram-stats {
  display: grid;
  margin-top: 6px;
  border-top: 1px solid rgba(var(--sa-green-rgb), 0.12);
}

.solae-instagram-stats div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(var(--sa-green-rgb), 0.12);
}

.solae-instagram-stats span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.12);
  border-radius: 999px;
  color: var(--sa-green-dark);
}

.solae-instagram-stats svg,
.solae-instagram-stats .sa-asset-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.solae-instagram-stats strong {
  grid-column: 2;
  display: block;
  color: #211814;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.solae-instagram-stats small {
  grid-column: 2;
  display: block;
  margin-top: 8px;
  color: #6f625a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solae-instagram-grid {
  align-self: start;
  align-content: start;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solae-instagram-tile {
  position: relative;
  display: block;
  min-height: 0;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background: var(--sa-nude);
  color: #fff;
  box-shadow: 0 22px 54px rgba(34, 23, 20, 0.13);
  isolation: isolate;
}

.solae-instagram-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(34, 23, 20, 0.04) 16%, rgba(34, 23, 20, 0.76) 100%),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.18), transparent 30%);
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.solae-instagram-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.005);
  transition: transform 520ms ease, filter 520ms ease;
}

.solae-instagram-tile:hover img,
.solae-instagram-tile:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.solae-instagram-tile:hover::before,
.solae-instagram-tile:focus-visible::before {
  opacity: 1;
}

.solae-instagram-tile-2,
.solae-instagram-tile-6 {
  transform: translateY(26px);
}

.solae-instagram-tile-4,
.solae-instagram-tile-8 {
  transform: translateY(-10px);
}

.solae-instagram-tile-2 img,
.solae-instagram-tile-5 img,
.solae-instagram-tile-7 img {
  object-position: center center;
}

.solae-instagram-type {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 64px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #231b17;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.solae-instagram-reel,
.solae-instagram-play {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(12px);
}

.solae-instagram-reel {
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
}

.solae-instagram-play {
  right: 14px;
  bottom: 16px;
  background: rgba(34, 23, 20, 0.18);
}

.solae-instagram-reel svg,
.solae-instagram-reel .sa-asset-icon,
.solae-instagram-play svg,
.solae-instagram-play .sa-asset-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.solae-instagram-meta {
  position: absolute;
  z-index: 2;
  right: 56px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  line-height: 1.1;
}

.solae-instagram-meta small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solae-instagram-meta strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.58vw, 25px);
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.page-band {
  padding: clamp(46px, 5vw, 78px) 0;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, rgba(246,244,238,.8) 42%, rgba(246,244,238,.8) 100%);
}

.page-band-grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(40px, 7vw, 120px);
}

.page-band img {
  width: 100%;
  height: clamp(280px, 29vw, 370px);
  border-radius: var(--sa-radius-lg);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 60px rgba(34, 23, 20, 0.12);
}

.about-hero {
  padding: clamp(52px, 5.8vw, 94px) 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 41%, rgba(244, 242, 236, 0.92) 41%, rgba(244, 242, 236, 0.92) 100%);
}

.about-hero .page-band-grid {
  align-items: center;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--sa-green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-stat {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(34, 23, 20, 0.08);
}

.about-stat > div {
  min-width: 0;
}

.about-stat svg {
  width: 52px;
  height: 52px;
  padding: 15px;
  border-radius: 50%;
  background: var(--sa-soft-green);
  color: var(--sa-green-dark);
  fill: currentColor;
}

.about-stat strong {
  display: block;
  color: var(--sa-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1;
  font-weight: 400;
}

.about-stat span {
  display: block;
  margin-top: 6px;
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.about-hero-media {
  position: relative;
}

.about-hero-media::before {
  content: "";
  position: absolute;
  inset: -20px 22px 22px -20px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.18);
  border-radius: calc(var(--sa-radius-lg) + 8px);
  z-index: 0;
}

.about-hero-media img {
  position: relative;
  z-index: 1;
  height: clamp(430px, 42vw, 610px);
  min-height: 430px;
  object-position: center;
}

.page-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 4.2vw, 60px);
  overflow-wrap: anywhere;
}

.page-band .stats-panel {
  border-radius: 16px;
}

.page-band .stats-panel .stat {
  min-height: 86px;
  padding: 18px 22px;
}

.page-band .stats-panel .stat strong {
  font-size: 28px;
}

.blog-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: start;
}

.blog-layout > *,
.contact-layout > * {
  min-width: 0;
}

.blog-grid {
  gap: 26px;
}

.blog-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
}

.blog-card img {
  height: 100%;
  min-height: 250px;
}

.post-date {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 82px;
  margin-bottom: 18px;
  border-radius: var(--sa-radius);
  background: var(--sa-green);
  color: #fff;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

.post-date strong {
  display: block;
  font-size: 30px;
}

.post-date span {
  display: block;
  font-size: 12px;
}

.sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
  position: sticky;
  top: calc(var(--sa-header) + 24px);
}

.sidebar-card {
  padding: 28px;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.search-field button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--sa-green);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.search-field button:hover {
  transform: translateY(-1px);
  background: var(--sa-green-dark);
}

.search-field button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.sidebar-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.sidebar-card-head h2,
.sidebar-card h2,
.sidebar-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 400;
}

.sidebar-card-head a {
  color: var(--sa-green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-author-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 241, 0.94));
}

.blog-author {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.blog-author img {
  width: 88px;
  height: 104px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.blog-author h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.blog-author span {
  display: block;
  color: var(--sa-green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-author p {
  margin: 10px 0 16px;
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sa-btn.is-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
}

.latest-post {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
}

.latest-post img {
  width: 92px;
  height: 72px;
  border-radius: var(--sa-radius);
  object-fit: cover;
}

.latest-post h3 {
  margin: 0;
  font-size: 16px;
}

.latest-post span {
  color: var(--sa-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.latest-post small {
  display: block;
  margin-bottom: 4px;
  color: var(--sa-green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-tax-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.blog-tax-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(var(--sa-green-rgb), 0.12);
  color: var(--sa-muted);
}

.blog-tax-list li:last-child {
  border-bottom: 0;
}

.blog-tax-list a {
  color: var(--sa-ink);
  font-weight: 800;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.tag-cloud a {
  padding: 9px 12px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 999px;
  background: rgba(238, 242, 234, 0.55);
  color: var(--sa-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.sidebar-cta {
  padding: 30px;
  border-radius: var(--sa-radius-lg);
  background:
    linear-gradient(145deg, rgba(76, 91, 71, 0.94), rgba(44, 58, 48, 0.96)),
    var(--sa-green-dark);
  color: #fff;
  box-shadow: 0 24px 64px rgba(34, 23, 20, 0.18);
}

.sidebar-cta .icon-bubble {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.single-content {
  color: var(--sa-muted);
  font-size: 18px;
}

.single-lead-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 34px;
  box-shadow: var(--sa-shadow);
}

.single-content > :first-child {
  margin-top: 0;
}

.single-content h2,
.single-content h3 {
  color: var(--sa-ink);
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.14;
}

.single-content h2 {
  font-size: 36px;
}

.single-content img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--sa-radius);
  margin: 18px 0 28px;
}

.share-row,
.post-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.share-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sa-line);
  border-radius: 50%;
  font-weight: 800;
}

.post-nav {
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
}

.legal-grid {
  grid-template-columns: repeat(4, 1fr);
}

.legal-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px;
}

.legal-card h2 {
  margin: 0 0 4px;
  font-size: 19px;
}

.legal-card p {
  margin: 0;
  font-size: 14px;
}

.contact-layout {
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-info {
  position: relative;
  min-height: 620px;
  padding: clamp(42px, 5vw, 70px);
  overflow: hidden;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 72%;
  height: 70%;
  background: url("../img/contact-faint.jpg") center/cover;
  opacity: 0.06;
  z-index: -1;
}

.contact-methods {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-width: 0;
}

.contact-method > div:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-method h3 {
  margin: 0 0 3px;
  font-size: 18px;
}

.contact-method p {
  margin: 0;
  color: var(--sa-muted);
}

.contact-card {
  padding: clamp(28px, 4vw, 44px);
}

.contact-section {
  padding: clamp(46px, 5.5vw, 82px) 0;
  background:
    linear-gradient(180deg, rgba(248, 247, 242, 0.92), rgba(255, 255, 255, 0.98));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(28px, 4.2vw, 58px);
  align-items: start;
}

.contact-section .contact-info {
  min-height: auto;
  padding: 0;
  overflow: visible;
}

.contact-section .contact-info::after {
  display: none;
}

.contact-section .section-intro {
  max-width: 640px;
  margin-bottom: 26px;
}

.contact-quick-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0 20px;
}

.contact-quick {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  min-height: 74px;
  padding: 13px 16px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(34, 23, 20, 0.06);
}

.contact-quick > span:first-child {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sa-soft-green);
  color: var(--sa-green-dark);
}

.contact-quick svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-quick strong {
  display: block;
  grid-column: 2;
  overflow-wrap: anywhere;
}

.contact-quick small {
  display: block;
  grid-column: 2;
  margin-top: 3px;
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(34, 23, 20, 0.1);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: saturate(0.72) contrast(1.02);
}

.contact-form-card {
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(var(--sa-green-rgb), 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 245, 0.96));
  box-shadow: 0 28px 72px rgba(34, 23, 20, 0.12);
}

.contact-form-head {
  margin-bottom: 22px;
}

.contact-form-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 400;
}

.contact-form-head p {
  margin: 10px 0 0;
  color: var(--sa-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 26px;
}

.form-grid.is-compact-form {
  gap: 15px 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.is-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  padding: 0 16px;
  color: var(--sa-ink);
  outline: 0;
}

.field textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.is-compact-form .field input,
.is-compact-form .field select {
  min-height: 50px;
}

.is-compact-form .field textarea {
  min-height: 104px;
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 8px 0 6px;
}

.checks-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.checks-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  color: var(--sa-muted);
  font-size: 14px;
}

.checks-grid input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--sa-green);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.form-note {
  color: var(--sa-muted);
  font-size: 13px;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--sa-radius);
  border: 1px solid var(--sa-line);
  background: var(--sa-soft);
  color: var(--sa-green-dark);
  font-weight: 700;
}

.form-alert.is-success {
  border-color: rgba(var(--sa-green-rgb), 0.45);
  background: #eef3ea;
}

.form-alert.is-error {
  border-color: rgba(145, 72, 72, 0.35);
  background: #f8eeee;
  color: #7a3535;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 34px 0 28px;
}

.booking-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-step span:first-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ecebe7;
  color: var(--sa-ink);
  font-weight: 900;
}

.booking-step.is-active span:first-child {
  background: var(--sa-green);
  color: #fff;
}

.booking-step.is-complete span:first-child {
  background: var(--sa-green-dark);
  color: #fff;
}

.booking-step strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-step small {
  color: var(--sa-muted);
}

.booking-configurator {
  --booking-progress: 0;
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 10%, rgba(238, 241, 231, 0.9), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.98));
  box-shadow: 0 34px 90px rgba(34, 23, 20, 0.12);
}

.booking-section {
  padding-top: clamp(28px, 3.2vw, 44px);
}

.booking-configurator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% * var(--booking-progress));
  height: 4px;
  background: linear-gradient(90deg, var(--sa-green), var(--sa-green-dark));
  transition: width 320ms ease;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.booking-live-summary {
  position: sticky;
  top: calc(var(--sa-header) + 26px);
  align-self: start;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(79, 93, 75, 0.95), rgba(48, 61, 50, 0.96)),
    var(--sa-green-dark);
  color: #fff;
  box-shadow: 0 22px 58px rgba(34, 23, 20, 0.18);
}

.summary-kicker {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.booking-live-summary > strong {
  display: block;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 400;
}

.booking-live-summary dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.booking-live-summary dl div {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-live-summary dt,
.booking-review span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-live-summary dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.booking-stage {
  min-width: 0;
}

.booking-stage > .field {
  margin-bottom: 18px;
}

.booking-panel {
  min-height: 560px;
  animation: bookingPanelIn 260ms ease both;
}

@keyframes bookingPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.booking-panel-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}

.booking-panel-head .section-label {
  margin-bottom: 8px;
  font-size: 12px;
}

.booking-panel-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 400;
}

.booking-panel-head p:last-child {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--sa-muted);
  font-size: 17px;
}

.booking-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--sa-green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.booking-card {
  padding: 22px;
}

.booking-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 20px;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-group-title {
  margin: 16px 0 2px;
  color: var(--sa-green-dark);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.05;
}

.choice-group-title:first-child {
  margin-top: 0;
}

.choice {
  display: grid;
  grid-template-columns: 22px auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.choice:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--sa-green-rgb), 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.choice.is-selected {
  border-color: var(--sa-green);
  box-shadow: inset 0 0 0 1px var(--sa-green);
}

.is-service-list {
  max-height: 580px;
  overflow: auto;
  padding-right: 8px;
}

.is-service-list .choice {
  min-height: 86px;
  padding: 16px;
  border-radius: 20px;
}

.is-doctor-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.is-doctor-list .choice {
  grid-template-columns: 22px 1fr;
  align-content: start;
  min-height: 310px;
  padding: 16px;
  border-radius: 24px;
}

.is-doctor-list .choice img {
  grid-column: 1 / -1;
  width: 100%;
  height: 190px;
  border-radius: 18px;
  object-position: top center;
}

.choice-radio {
  width: 18px;
  height: 18px;
  border: 1px solid var(--sa-line);
  border-radius: 50%;
}

.choice.is-selected .choice-radio {
  border: 5px solid var(--sa-green);
}

.choice img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.choice strong {
  display: block;
  font-size: 14px;
}

.choice small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--sa-muted);
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}

.calendar-card {
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 18px 0 20px;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 50%;
  color: var(--sa-muted);
  font-size: 13px;
}

.calendar-grid .is-day {
  color: var(--sa-ink);
}

.calendar-grid .is-picked {
  background: var(--sa-green);
  color: #fff;
}

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

.time-grid button {
  min-height: 38px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.time-grid .is-active {
  background: var(--sa-green);
  color: #fff;
}

.schedule-picker {
  display: grid;
  gap: 30px;
}

.schedule-picker > div > strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.date-choice {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 112px;
  padding: 14px 8px;
  border: 1px solid var(--sa-line);
  border-radius: 22px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.date-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--sa-green-rgb), 0.34);
}

.date-choice span,
.date-choice small {
  color: var(--sa-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.date-choice strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.date-choice.is-selected,
.time-grid .is-selected {
  border-color: var(--sa-green);
  background: var(--sa-green);
  color: #fff;
}

.date-choice.is-selected span,
.date-choice.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

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

.booking-review div {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--sa-line);
  border-radius: 22px;
  background: #fff;
}

.booking-review span {
  color: var(--sa-green-dark);
}

.booking-review strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  font-weight: 400;
}

.site-footer {
  background: linear-gradient(135deg, #53624e, #2f3c31);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.2fr) 0.7fr 0.8fr minmax(320px, 1.6fr);
  gap: clamp(22px, 3.4vw, 46px);
  width: min(calc(100% - 96px), var(--sa-container));
  margin-inline: auto;
  padding: clamp(34px, 4vw, 50px) 0;
}

.site-footer {
  font-size: 14px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p,
.site-footer a,
.site-footer span,
.footer-links,
.contact-list {
  color: rgba(255,255,255,.82);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.contact-list,
.footer-links {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.contact-list svg,
.contact-list .sa-asset-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 28px;
}

.footer-social svg,
.footer-social .sa-asset-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-solae {
  align-self: start;
  max-width: 420px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-solae h2 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-solae p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  line-height: 1.75;
}

.footer-solae .footer-solae-signature {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 96px), var(--sa-container));
  margin-inline: auto;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes menuVeilIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1320px) {
  :root {
    --sa-header: 86px;
  }

  .site-header {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 34px);
    padding-inline: clamp(22px, 3.2vw, 42px);
  }

  .brand {
    width: 205px;
  }

  .brand img {
    width: 190px;
    max-height: 58px;
  }

  .brand span {
    padding-left: 32px;
    font-size: 9px;
  }

  .primary-nav {
    justify-content: center;
    gap: 3px;
    padding: 7px;
  }

  .submenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-link {
    min-height: 40px;
    padding-inline: clamp(10px, 0.9vw, 14px);
    font-size: 10.8px;
    letter-spacing: 0.078em;
  }

  .header-actions {
    display: none;
  }

  .phone-circle {
    width: 44px;
    height: 44px;
  }

  .section-title {
    max-width: 760px;
    font-size: clamp(32px, 3.4vw, 46px);
  }

  .page-title {
    max-width: 760px;
    font-size: clamp(40px, 4.2vw, 62px);
  }

  .hero h1 {
    font-size: clamp(40px, 4vw, 58px);
  }

  .social-rail {
    right: 10px;
    width: 66px;
    padding: 9px 7px;
  }

  .social-rail a {
    width: 50px;
    height: 50px;
    min-height: 50px;
    font-size: 7.5px;
  }

  .social-rail .rail-icon {
    width: 28px;
    height: 28px;
  }

  .social-rail-book {
    height: 60px !important;
    min-height: 60px !important;
  }

  .container,
  .narrow {
    width: min(calc(100% - 152px), var(--sa-container));
  }

  .service-grid,
  .doctor-grid,
  .service-category-grid,
  .treatment-grid,
  .legal-grid,
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 78px 0 0;
    z-index: 78;
    background: rgba(36, 37, 34, 0.18);
    backdrop-filter: blur(4px);
    animation: menuVeilIn 220ms ease both;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 78px;
    background: rgba(255, 255, 255, 0.94);
  }

  .brand img {
    width: 170px;
  }

  .brand span,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 88px;
    right: 14px;
    bottom: auto;
    left: 14px;
    z-index: 85;
    display: flex;
    grid-column: 1 / -1;
    justify-self: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: auto;
    height: min(560px, calc(100vh - 250px - env(safe-area-inset-bottom, 0px)));
    min-height: 320px;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(var(--sa-green-rgb), 0.14);
    border-radius: 26px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 242, 0.95)),
      #fff;
    box-shadow: 0 26px 72px rgba(34, 23, 20, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-item {
    display: block;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(var(--sa-green-rgb), 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.64);
    font-size: 13px;
  }

  .nav-link::after {
    bottom: 9px;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin: 8px 0 6px;
    padding: 10px;
    border: 1px solid rgba(var(--sa-green-rgb), 0.1);
    border-radius: 20px;
    background: rgba(248, 247, 242, 0.68);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu.is-mega {
    width: auto;
    padding: 10px;
  }

  .submenu.is-category-menu {
    width: auto;
    padding: 10px;
  }

  .submenu-all {
    margin-bottom: 8px;
    padding: 13px 14px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
  }

  .submenu-category-list {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .submenu-category {
    min-height: 0;
    padding: 16px 16px 16px 56px !important;
    border-radius: 16px !important;
  }

  .submenu-category::before {
    left: 14px;
    top: 15px;
    width: 28px;
    height: 28px;
  }

  .submenu-category strong {
    font-size: 16px;
  }

  .submenu-category small {
    font-size: 12px;
  }

  .submenu-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .submenu-group strong {
    min-height: 0;
    padding: 12px 0 2px;
    font-size: 16px;
  }

  .submenu-group a {
    padding: 9px 0;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    transform: none;
  }

  .submenu a {
    padding: 11px 12px;
    border-radius: 14px;
    color: var(--sa-muted);
    font-size: 13px;
  }

  .social-rail {
    top: auto;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    width: auto;
    padding: 8px;
    border-radius: 24px;
    gap: 6px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.94)),
      #fff;
    box-shadow: 0 16px 42px rgba(34, 23, 20, 0.2);
    transform: none;
  }

  .social-rail-label {
    display: none;
  }

  .social-rail a,
  .social-rail-book {
    display: grid;
    grid-template-rows: 28px auto;
    place-items: center;
    gap: 4px;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 6px 4px;
    border-radius: 18px !important;
  }

  .social-rail .rail-icon {
    width: 28px;
    height: 28px;
    border: 0;
    background: rgba(var(--sa-green-rgb), 0.12);
  }

  .social-rail .rail-icon svg {
    padding: 6px;
  }

  .social-rail .rail-text,
  .social-rail-book .rail-text {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: currentColor;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .social-rail a:hover .rail-text,
  .social-rail a:focus-visible .rail-text {
    transform: none;
  }

  .social-rail-book {
    background: var(--sa-copper) !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(var(--sa-copper-rgb), 0.28);
  }

  .social-rail-book .rail-icon {
    background: rgba(var(--sa-nude-rgb), 0.24);
  }

  .container,
  .narrow,
  .footer-grid,
  .footer-bottom,
  .stats-panel {
    width: min(calc(100% - 40px), var(--sa-container));
  }

  .hero,
  .hero.is-compact {
    min-height: auto;
  }

  .hero-grid,
  .page-band-grid,
  .split-card,
  .aesthetic-panel,
  .blog-card,
  .blog-layout,
  .contact-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    top: auto;
  }

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

  .hero-copy::before {
    right: -40%;
    width: 110%;
  }

  .breadcrumb {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .section-label {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-line {
    width: 54px;
    margin: 16px 0 18px;
  }

  .hero p {
    margin-bottom: 20px;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-media,
  .hero-media img,
  .hero-media video,
  .page-band img {
    min-height: 220px;
    height: 220px;
  }

  .about-hero-media img {
    min-height: 320px;
    height: 320px;
  }

  .about-hero-media::before {
    inset: -12px 14px 14px -12px;
  }

  .contact-shell {
    gap: 30px;
  }

  .contact-map-card iframe {
    height: 290px;
  }

  body:not(.home) .site-main > .hero,
  body:not(.home) .site-main > .hero .hero-grid {
    min-height: auto;
  }

  body:not(.home) .site-main > .hero .hero-copy {
    min-height: 0;
    padding: 28px 20px 22px;
  }

  body:not(.home) .site-main > .hero .hero-media,
  body:not(.home) .site-main > .hero .hero-media img,
  body:not(.home) .site-main > .hero .hero-media video {
    min-height: 200px;
    height: 200px;
  }

  .booking-hero .hero-media,
  .booking-hero .hero-media img,
  .booking-hero .hero-media video {
    min-height: 200px !important;
    height: 200px !important;
  }

  .stats-panel {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .stats-panel.is-four {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--sa-container));
  }

  .stat {
    min-height: auto;
    padding: 22px;
  }

  .feature-strip,
  .mini-benefits,
  .checks-grid,
  .booking-steps {
    grid-template-columns: 1fr 1fr;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-stage {
    order: 1;
  }

  .booking-live-summary {
    order: 2;
    position: relative;
    top: auto;
    min-height: auto;
  }

  .is-doctor-list {
    grid-template-columns: 1fr;
  }

  .is-doctor-list .choice {
    min-height: auto;
  }

  .is-doctor-list .choice img {
    height: 260px;
  }

  .date-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-strip.is-process {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .footer-solae {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0 18px;
  }

  .section {
    padding: 54px 0;
  }

  .hero-copy {
    padding: 26px 18px 22px;
  }

  body:not(.home) .site-main > .hero .hero-copy {
    padding: 24px 18px 20px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(33px, 10.5vw, 44px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-media,
  .hero-media img,
  .hero-media video,
  .page-band img,
  body:not(.home) .site-main > .hero .hero-media,
  body:not(.home) .site-main > .hero .hero-media img,
  body:not(.home) .site-main > .hero .hero-media video {
    min-height: 190px;
    height: 190px;
  }

  .about-hero-media img {
    min-height: 250px;
    height: 250px;
  }

  .section-head {
    display: block;
  }

  .hero-actions,
  .form-footer,
  .post-nav,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .sa-btn,
  .header-cta {
    width: 100%;
  }

  .service-grid,
  .doctor-grid,
  .service-category-grid,
  .treatment-grid,
  .legal-grid,
  .booking-grid,
  .about-stats,
  .contact-quick-grid,
  .feature-strip,
  .feature-strip.is-process,
  .mini-benefits,
  .checks-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .service-accordion summary {
    gap: 16px;
  }

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

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

  .doctor-card img {
    min-height: 310px;
  }

  .doctor-info {
    padding: 32px 26px;
  }

  .doctor-card p {
    overflow: visible;
  }

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

  .legal-card .text-link {
    grid-column: 2;
    margin-top: 0;
  }

  .booking-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin: 18px 0 22px;
  }

  .booking-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    min-height: 44px;
  }

  .booking-step span:first-child {
    width: 42px;
    height: 42px;
  }

  .booking-step div {
    display: none;
  }

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

  .booking-panel {
    min-height: auto;
  }

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

  .booking-panel-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .booking-panel-actions .sa-btn,
  .booking-panel-actions .ghost-btn,
  .booking-panel-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .is-service-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .is-service-list .choice small {
    display: block;
    overflow: visible;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

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

  .booking-review {
    grid-template-columns: 1fr;
  }

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

  .footer-solae {
    grid-column: auto;
  }

  .contact-info {
    min-height: auto;
    padding-inline: 0;
  }

  .contact-info::after {
    opacity: 0.08;
    width: 100%;
  }

  .contact-method {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-map-card iframe {
    height: 240px;
  }

  .service-card img,
  .blog-card img,
  .treatment-card img {
    height: 240px;
  }

  .floating-icon {
    top: 205px;
  }
}

/* Premium refinement pass: preserves the existing composition while tightening hierarchy, touch ergonomics, and conversion surfaces. */
@media (min-width: 981px) {
  .site-header {
    grid-template-columns: minmax(190px, 0.22fr) minmax(0, 1fr) auto;
    gap: clamp(18px, 2vw, 34px);
  }

  .primary-nav {
    grid-column: 2;
    justify-self: center;
  }

  .brand {
    grid-column: 1;
  }

  .header-actions {
    grid-column: 3;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .site-header {
    grid-template-columns: 205px minmax(0, 1fr);
    padding-inline: clamp(22px, 3vw, 40px);
  }

  .header-actions {
    display: none;
  }
}

body {
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, rgba(248, 247, 242, 0.64) 100%);
}

.site-header {
  border-bottom-color: rgba(var(--sa-green-rgb), 0.09);
}

.primary-nav {
  max-width: calc(100vw - 420px);
}

.nav-link {
  min-height: 44px;
}

.nav-link:focus-visible,
.submenu a:focus-visible,
.sa-btn:focus-visible,
.ghost-btn:focus-visible,
.text-link:focus-visible,
.social-rail a:focus-visible,
.booking-step:focus-visible,
.choice:focus-visible,
.date-choice:focus-visible,
.time-grid button:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(var(--sa-copper-rgb), 0.78);
  outline-offset: 3px;
}

.submenu.is-category-menu {
  border-color: rgba(var(--sa-green-rgb), 0.16);
}

.submenu-category {
  isolation: isolate;
}

.submenu-category:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 238, 0.9));
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.86));
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(36, 37, 34, 0.02), rgba(36, 37, 34, 0.08));
}

.hero-media img,
.hero-media video,
.service-card img,
.blog-card img,
.treatment-card img,
.doctor-card img,
.single-lead-image,
.single-content img,
.contact-map-card iframe {
  transform: translateZ(0);
}

.stats-panel {
  border-radius: 18px;
  background: rgba(var(--sa-green-rgb), 0.12);
  box-shadow: 0 30px 84px rgba(34, 23, 20, 0.13);
  backdrop-filter: blur(20px);
}

.stat {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 246, 0.9));
}

.is-doctify-stat {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.92));
}

.doctify-mark {
  width: 64px;
  height: 64px;
}

.service-card,
.doctor-card,
.treatment-card,
.blog-card,
.legal-card,
.sidebar-card,
.contact-card,
.booking-card,
.service-accordion,
.service-category-card,
.contact-map-card {
  border-color: rgba(var(--sa-green-rgb), 0.13);
}

.service-card::after,
.doctor-card::after,
.treatment-card::after,
.blog-card::after,
.contact-card::after,
.booking-card::after,
.service-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-card img,
.blog-card img,
.treatment-card img,
.doctor-card img {
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover img,
.blog-card:hover img,
.treatment-card:hover img,
.doctor-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.service-card:hover,
.doctor-card:hover,
.treatment-card:hover,
.blog-card:hover,
.legal-card:hover,
.service-category-card:hover {
  box-shadow: 0 28px 78px rgba(34, 23, 20, 0.15);
}

.service-detail-card {
  box-shadow: 0 28px 78px rgba(34, 23, 20, 0.11);
}

.service-detail-card img {
  object-position: center;
}

.feature-strip {
  box-shadow: 0 18px 54px rgba(34, 23, 20, 0.07);
}

.feature-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 249, 246, 0.86));
}

.icon-bubble,
.legal-icon,
.booking-icon,
.contact-quick > span:first-child {
  box-shadow: inset 0 0 0 1px rgba(var(--sa-green-rgb), 0.06), 0 10px 24px rgba(34, 23, 20, 0.07);
}

.about-stat {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--sa-green-rgb), 0.28);
  box-shadow: 0 24px 62px rgba(34, 23, 20, 0.12);
}

.blog-layout {
  gap: clamp(34px, 4.4vw, 58px);
}

.sidebar-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 248, 244, 0.95));
}

.tag-cloud a,
.blog-tax-list a,
.latest-post {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.tag-cloud a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.latest-post:hover {
  transform: translateX(3px);
}

.contact-shell {
  align-items: stretch;
}

.contact-section .contact-info {
  padding-top: clamp(10px, 1.5vw, 22px);
}

.contact-quick {
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.contact-quick:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--sa-green-rgb), 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(34, 23, 20, 0.1);
}

.contact-map-card iframe {
  height: 330px;
}

.field input,
.field select,
.field textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(var(--sa-green-rgb), 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--sa-green-rgb), 0.1);
}

.booking-configurator {
  box-shadow: 0 38px 98px rgba(34, 23, 20, 0.13);
}

.booking-steps {
  position: relative;
  isolation: isolate;
}

@media (min-width: 681px) {
  .booking-steps::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 24px;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--sa-green-rgb), 0.25), rgba(var(--sa-copper-rgb), 0.24), rgba(var(--sa-green-rgb), 0.25));
  }
}

.booking-step span:first-child {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.82);
}

.booking-step.is-active span:first-child {
  box-shadow: 0 0 0 8px rgba(var(--sa-green-rgb), 0.16), 0 14px 28px rgba(var(--sa-green-rgb), 0.2);
}

.booking-stage {
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(var(--sa-green-rgb), 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(250, 249, 246, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.booking-panel {
  min-height: auto;
}

.choice,
.date-choice,
.time-grid button,
.booking-review div {
  border-color: rgba(var(--sa-green-rgb), 0.13);
}

.choice.is-selected,
.date-choice.is-selected,
.time-grid .is-selected {
  box-shadow: 0 16px 38px rgba(var(--sa-green-rgb), 0.13), inset 0 0 0 1px var(--sa-green);
}

.time-grid button {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.time-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--sa-green-rgb), 0.34);
}

.social-rail {
  border-color: rgba(var(--sa-green-rgb), 0.16);
}

.social-rail a {
  overflow: hidden;
}

.social-rail .social-rail-book {
  box-shadow: 0 16px 34px rgba(var(--sa-copper-rgb), 0.28);
}

.solae-page .field input:focus,
.solae-page .field select:focus,
.solae-page .field textarea:focus {
  border-color: rgba(var(--sa-copper-rgb), 0.48);
  box-shadow: 0 0 0 4px rgba(var(--sa-copper-rgb), 0.1);
}

.solae-page .choice.is-selected,
.solae-page .date-choice.is-selected,
.solae-page .time-grid .is-selected {
  border-color: rgba(var(--sa-copper-rgb), 0.38);
  box-shadow: 0 16px 38px rgba(34, 23, 20, 0.13), inset 0 0 0 1px var(--sa-copper);
}

@media (max-width: 1320px) and (min-width: 981px) {
  .primary-nav {
    max-width: calc(100vw - 380px);
  }
}

@media (max-width: 980px) {
  .primary-nav {
    max-width: none;
  }

  .nav-link {
    min-height: 54px;
  }

  .contact-map-card iframe {
    height: 300px;
  }

  .booking-stage {
    padding: clamp(20px, 4vw, 30px);
  }

  .stats-panel {
    border-radius: 22px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 156px;
  }

  .social-rail {
    border-radius: 22px;
  }

  .social-rail a,
  .social-rail-book {
    min-height: 60px !important;
  }

  .booking-stage {
    padding: 18px;
    border-radius: 22px;
  }

  .service-accordion summary {
    position: relative;
    grid-template-columns: 48px minmax(0, 1fr);
    padding-right: 58px;
  }

  .service-accordion summary .icon-bubble {
    width: 48px;
    height: 48px;
  }

  .service-accordion summary .icon-bubble svg,
  .service-accordion summary .icon-bubble .sa-asset-icon {
    width: 26px;
    height: 26px;
  }

  .service-accordion summary .accordion-caret {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .contact-map-card iframe {
    height: 260px;
  }

  .stats-panel .stat {
    min-height: 96px;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .home-mockup-hero {
    min-height: 660px;
  }

  .home-mockup-center {
    width: 600px;
    padding: 46px;
  }

  .home-mockup-center h1 {
    font-size: 50px;
  }

  .home-mockup-copy {
    font-size: 18px;
  }

  .home-side-note {
    display: none;
  }

  .home-mockup-benefits {
    width: min(calc(100% - 72px), 1120px);
  }

  .home-benefit {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .home-benefit-icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 980px) {
  .home-mockup-hero {
    min-height: auto;
  }

  .home-mockup-hero::after {
    display: none;
  }

  .home-mockup-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .home-mockup-image {
    position: relative;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 280px;
    height: 280px;
  }

  .home-mockup-image-dental,
  .home-mockup-image-solae {
    left: auto;
    right: auto;
  }

  .home-mockup-image-dental img {
    object-position: center;
  }

  .home-mockup-image-solae img {
    object-position: 62% center;
  }

  .home-side-note {
    display: none;
  }

  .home-mockup-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: auto;
    aspect-ratio: auto;
    padding: 34px 22px 40px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    transform: none;
  }

  .home-mockup-center.reveal,
  .home-mockup-center.reveal.is-visible {
    transform: none;
  }

  .home-mockup-mark {
    margin-bottom: 8px;
  }

  .home-mockup-kicker {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .home-mockup-center h1 {
    max-width: 620px;
    font-size: 44px;
    line-height: 1.04;
  }

  .home-mockup-copy {
    max-width: 580px;
    margin-top: 18px;
    font-size: 16px;
  }

  .home-mockup-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .home-mockup-actions .sa-btn {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .home-mockup-overlap {
    margin-top: 0;
    padding-top: 22px;
  }

  .home-mockup-benefits,
  .home-mockup-booking,
  .home-mockup-trust {
    width: min(calc(100% - 40px), var(--sa-container));
  }

  .home-mockup-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefit {
    min-height: 112px;
    padding: 22px;
    border-top: 1px solid rgba(var(--sa-green-rgb), 0.12);
    border-left: 0;
  }

  .home-benefit:nth-child(-n + 2) {
    border-top: 0;
  }

  .home-benefit:nth-child(even) {
    border-left: 1px solid rgba(var(--sa-green-rgb), 0.12);
  }

  .home-mockup-booking {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
  }

  .home-booking-icon {
    width: 70px;
    height: 70px;
  }

  .home-booking-copy h2 {
    font-size: 22px;
  }

  .home-booking-phone {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .home-mockup-booking .sa-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .home-mockup-stage {
    grid-template-columns: 1fr;
  }

  .home-mockup-image {
    min-height: 150px;
    height: 150px;
  }

  .home-mockup-image-dental {
    display: none;
  }

  .home-mockup-center {
    padding: 20px 18px 22px;
  }

  .home-mockup-mark {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .home-mockup-mark svg,
  .home-mockup-mark .sa-asset-icon {
    width: 28px;
    height: 28px;
  }

  .home-mockup-center h1 {
    font-size: 32px;
  }

  .home-mockup-copy {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.52;
  }

  .home-mockup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 342px);
    gap: 10px;
    margin-top: 16px;
    margin-inline: auto;
  }

  .home-mockup-actions .sa-btn {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 10.5px;
    letter-spacing: 0.07em;
    text-transform: none;
    gap: 7px;
  }

  .home-mockup-benefits {
    grid-template-columns: 1fr;
  }

  .home-benefit,
  .home-benefit:nth-child(even) {
    border-left: 0;
  }

  .home-benefit:nth-child(2) {
    border-top: 1px solid rgba(var(--sa-green-rgb), 0.12);
  }

  .home-mockup-booking {
    grid-template-columns: 1fr;
  }

  .home-booking-icon {
    width: 64px;
    height: 64px;
  }

  .home-booking-phone a {
    font-size: 18px;
  }

  .home-trust-items {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .home-mockup-center h1 {
    font-size: 32px;
  }

  .home-mockup-copy {
    font-size: 15px;
  }

  .home-mockup-actions {
    width: min(100%, 326px);
  }

  .home-mockup-actions .sa-btn {
    font-size: 10px;
  }

  .home-benefit {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .home-benefit-icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .home-mockup-image {
    min-height: 120px;
    height: 120px;
  }

  .home-mockup-center {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .home-mockup-copy {
    margin-top: 10px;
  }

  .home-mockup-actions {
    margin-top: 14px;
  }
}

@media (min-width: 1180px) and (max-width: 1320px) {
  .site-header {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 22px;
    padding-inline: 30px;
  }

  .brand,
  .brand img {
    width: 176px;
  }

  .primary-nav {
    gap: 18px;
    max-width: none;
    padding: 0;
  }

  .nav-link {
    min-height: 42px;
    padding-inline: 0;
    font-size: 10.4px;
    letter-spacing: 0.072em;
  }

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

  .header-cta {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 12px;
  }

  .phone-circle {
    width: 48px;
    height: 48px;
  }

  .home-mockup-center {
    width: 580px;
    padding: 36px;
  }

  .home-mockup-center h1 {
    font-size: 44px;
    line-height: 1.03;
  }

  .home-mockup-copy {
    max-width: 500px;
    font-size: 17px;
  }

  .home-side-note {
    display: block;
    width: 190px;
  }

  .home-side-note strong {
    font-size: 12px;
    letter-spacing: 0.13em;
  }

  .home-side-note span {
    font-size: 16px;
  }

  .home-side-note-dental {
    left: 58px;
    top: 39%;
  }

  .home-side-note-solae {
    right: 118px;
    top: 56%;
  }

  .home-mockup-actions {
    gap: 16px;
    margin-top: 26px;
  }

  .home-mockup-actions .sa-btn {
    min-height: 46px;
    padding-inline: 22px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .insurance-slider-section {
    padding: 34px 0 48px;
  }

  .insurance-slider-head {
    width: min(calc(100% - 40px), 680px);
  }

  .insurance-slider-head h2 {
    font-size: 24px;
  }

  .insurance-marquee {
    width: min(calc(100% - 24px), 760px);
  }

  .insurance-marquee-track {
    gap: 12px;
    animation-duration: 30s;
  }

  .insurance-logo-card {
    flex-basis: 164px;
    height: 88px;
    padding: 14px 18px;
  }

  .insurance-logo-card img {
    max-width: 130px;
    height: 56px;
  }
}

@media (max-width: 520px) {
  .insurance-slider-head h2 {
    font-size: 21px;
  }

  .insurance-slider-head span {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .insurance-logo-card {
    flex-basis: 146px;
    height: 82px;
    padding: 12px 15px;
  }

  .insurance-logo-card img {
    max-width: 118px;
    height: 52px;
  }
}

.payment-methods-strip {
  display: grid;
  gap: 18px;
  margin-top: clamp(44px, 5vw, 66px);
  padding: clamp(24px, 3.2vw, 34px) 0 clamp(8px, 1.6vw, 14px);
  border-top: 1px solid rgba(var(--sa-green-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--sa-green-rgb), 0.08);
}

.payment-methods-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.payment-methods-head span {
  color: var(--sa-copper);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.payment-methods-head h2 {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--sa-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.payment-methods-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.payment-methods-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 8px 0 14px;
  animation: paymentMethodsMarquee 26s linear infinite;
  will-change: transform;
}

.payment-methods-marquee:hover .payment-methods-track {
  animation-play-state: paused;
}

.payment-logo-card {
  flex: 0 0 clamp(156px, 15vw, 202px);
  display: grid;
  place-items: center;
  height: clamp(76px, 7.6vw, 96px);
  padding: 14px 20px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.1);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 242, 0.9));
  box-shadow: 0 14px 36px rgba(34, 23, 20, 0.07);
}

.payment-logo-card img {
  width: 100%;
  max-width: 158px;
  height: 62px;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.04);
}

@keyframes paymentMethodsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.google-reviews-section {
  position: relative;
  margin-top: clamp(54px, 6vw, 82px);
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(var(--sa-green-rgb), 0.12);
  border-radius: var(--sa-radius-lg);
  background:
    radial-gradient(circle at 9% 18%, rgba(234, 240, 229, 0.86), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 238, 0.86));
  box-shadow: 0 26px 78px rgba(34, 23, 20, 0.08);
}

.google-reviews-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: clamp(220px, 24vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--sa-copper-rgb), 0.12), transparent 68%);
  pointer-events: none;
}

.google-reviews-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 4vw, 54px);
  margin-bottom: 26px;
}

.google-reviews-head > div:first-child span {
  color: var(--sa-copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.google-reviews-head h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--sa-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.google-rating-card {
  display: grid;
  justify-items: center;
  min-width: 172px;
  padding: 18px 22px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(34, 23, 20, 0.08);
}

.google-rating-card strong {
  color: var(--sa-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.google-rating-card span,
.google-review-stars {
  color: var(--sa-copper);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.google-rating-card small {
  margin-top: 5px;
  color: var(--sa-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-reviews-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 32%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--sa-copper-rgb), 0.45) rgba(34, 23, 20, 0.08);
}

.google-reviews-track::-webkit-scrollbar {
  height: 9px;
}

.google-reviews-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(34, 23, 20, 0.08);
}

.google-reviews-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(var(--sa-copper-rgb), 0.45);
}

.google-review-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 300px;
  padding: clamp(24px, 2.7vw, 32px);
  border: 1px solid rgba(var(--sa-green-rgb), 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 246, 0.88));
  box-shadow: 0 18px 48px rgba(34, 23, 20, 0.07);
  scroll-snap-align: start;
}

.google-review-card blockquote {
  margin: 0;
  color: var(--sa-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.google-review-card footer {
  display: grid;
  gap: 5px;
}

.google-review-card footer strong {
  color: var(--sa-brown);
  font-size: 15px;
}

.google-review-card footer span {
  color: var(--sa-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-single > .hero .hero-media,
.doctor-single .split-card img {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96), rgba(242, 239, 235, 0.74) 72%);
}

.doctor-single > .hero .hero-media img,
.doctor-single .split-card img {
  object-fit: contain;
  object-position: center bottom;
}

.doctor-single .split-card img {
  padding: clamp(10px, 1.3vw, 18px);
}

.services-page > .hero .hero-media img,
.services-page .service-card img,
.service-single > .hero .hero-media img,
.service-single .service-detail-card img {
  object-position: center 38%;
}

.service-card .service-card-body {
  padding-top: 58px;
}

.service-grid.is-compact-grid .service-card .service-card-body {
  padding-top: 54px;
}

@media (max-width: 980px) {
  .payment-methods-strip {
    margin-top: 38px;
    padding-top: 24px;
  }

  .payment-methods-head {
    display: block;
  }

  .payment-logo-card {
    flex-basis: 164px;
    height: 84px;
    padding: 13px 17px;
  }

  .payment-logo-card img {
    max-width: 132px;
    height: 54px;
  }

  .doctor-single > .hero .hero-media,
  .doctor-single > .hero .hero-media img {
    min-height: 260px;
    height: 260px;
  }

  .google-reviews-section {
    padding: 26px 20px;
  }

  .google-reviews-head {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    justify-self: start;
  }

  .google-reviews-track {
    grid-auto-columns: minmax(286px, 78%);
    margin-inline: -8px;
    padding-inline: 8px;
  }

  .solae-instagram-wall {
    padding: 34px;
  }

  .solae-instagram-top {
    grid-template-columns: 1fr;
  }

  .solae-instagram-heading {
    grid-column: auto;
  }

  .solae-instagram-follow {
    justify-self: center;
    text-align: center;
  }

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

  .solae-instagram-copy {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .solae-instagram-copy > p {
    max-width: 620px;
  }

  .solae-instagram-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border-top: 0;
  }

  .solae-instagram-stats div {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 16px;
    border: 1px solid rgba(var(--sa-green-rgb), 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
  }

  .solae-instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .solae-instagram-tile-2,
  .solae-instagram-tile-6 {
    transform: translateY(16px);
  }

  .solae-instagram-tile-4,
  .solae-instagram-tile-8 {
    transform: none;
  }

  .solae-page .solae-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .solae-cta-mark {
    width: 154px;
  }

  .solae-page .solae-cta .sa-btn {
    justify-self: start;
  }

  .solae-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .payment-methods-head h2 {
    font-size: 22px;
  }

  .payment-methods-head span {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .payment-methods-track {
    gap: 11px;
    animation-duration: 22s;
  }

  .payment-logo-card {
    flex-basis: 142px;
    height: 76px;
    padding: 11px 14px;
  }

  .payment-logo-card img {
    max-width: 116px;
    height: 48px;
  }

  .service-card .service-card-body {
    padding-top: 52px;
  }

  .google-reviews-section {
    margin-top: 42px;
    padding: 24px 18px;
  }

  .google-reviews-head h2 {
    font-size: 29px;
  }

  .google-rating-card {
    min-width: 0;
    width: 100%;
  }

  .google-reviews-track {
    grid-auto-columns: minmax(268px, 88%);
  }

  .solae-instagram-wall {
    margin-top: 48px;
    padding: 24px 18px 28px;
    border-radius: 24px;
  }

  .solae-instagram-top {
    gap: 16px;
    margin-bottom: 26px;
  }

  .solae-instagram-heading h2 {
    font-size: 38px;
  }

  .solae-instagram-heading p {
    font-size: 15px;
  }

  .solae-instagram-follow {
    font-size: 19px;
  }

  .solae-instagram-layout {
    gap: 20px;
  }

  .solae-instagram-copy {
    gap: 14px;
  }

  .solae-instagram-copy h3 {
    font-size: 28px;
  }

  .solae-instagram-copy > p {
    display: none;
  }

  .solae-instagram-main-link {
    width: 100%;
    padding-inline: 14px;
    font-size: 11px;
  }

  .solae-instagram-stats {
    display: none;
  }

  .solae-instagram-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
    grid-auto-rows: minmax(300px, 48vh);
    gap: 12px;
    margin-inline: -18px;
    padding: 4px 18px 74px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .solae-instagram-grid::-webkit-scrollbar {
    display: none;
  }

  .solae-instagram-tile,
  .solae-instagram-tile-1,
  .solae-instagram-tile-2,
  .solae-instagram-tile-3,
  .solae-instagram-tile-4,
  .solae-instagram-tile-5,
  .solae-instagram-tile-6,
  .solae-instagram-tile-7,
  .solae-instagram-tile-8 {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    transform: none;
    scroll-snap-align: center;
  }

  .solae-instagram-tile {
    border-radius: 20px;
  }

  .google-review-card {
    min-height: 284px;
  }

  .solae-page .solae-cta {
    padding: 26px;
  }

  .solae-cta-mark {
    width: 142px;
  }

  .solae-page .solae-cta h2 {
    font-size: 34px;
  }

  .solae-page .solae-cta .sa-btn {
    width: 100%;
  }
}

.google-reviews-section {
  border-color: rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 249, 246, 0.94) 58%, rgba(234, 240, 229, 0.46));
}

.google-reviews-section::after {
  display: none;
}

.google-reviews-head {
  align-items: center;
  margin-bottom: 24px;
}

.google-reviews-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.google-rating-card {
  min-width: 158px;
  padding: 15px 18px;
  border-color: rgba(var(--sa-copper-rgb), 0.16);
  border-radius: 16px;
}

.google-rating-card strong {
  font-size: 40px;
}

.google-review-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-review-control {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  border: 1px solid rgba(var(--sa-green-rgb), 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--sa-green-dark);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(34, 23, 20, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.google-review-control:hover,
.google-review-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--sa-copper-rgb), 0.46);
  background: var(--sa-copper);
  color: #fff;
  box-shadow: 0 18px 34px rgba(var(--sa-copper-rgb), 0.2);
}

.google-reviews-viewport {
  position: relative;
  z-index: 1;
  margin-inline: -12px;
  overflow-x: auto;
  padding: 8px 12px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.google-reviews-viewport::-webkit-scrollbar {
  display: none;
}

.google-reviews-track {
  display: flex;
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  gap: 18px;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.google-reviews-track::-webkit-scrollbar,
.google-reviews-track::-webkit-scrollbar-track,
.google-reviews-track::-webkit-scrollbar-thumb {
  display: none;
}

.google-review-card {
  flex: 0 0 clamp(292px, 31%, 384px);
  min-height: 286px;
  border-radius: 20px;
  opacity: 0.72;
  scroll-snap-align: center;
  transform: scale(0.965);
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.google-review-card.is-active {
  border-color: rgba(var(--sa-copper-rgb), 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 250, 246, 0.96));
  box-shadow: 0 24px 58px rgba(34, 23, 20, 0.1);
  opacity: 1;
  transform: scale(1);
}

.google-review-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.google-review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--sa-green-rgb), 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.google-review-dot.is-active {
  width: 28px;
  background: var(--sa-copper);
}

.google-review-dot:hover,
.google-review-dot:focus-visible {
  transform: translateY(-1px);
  background: var(--sa-green);
  outline: none;
}

.footer-solae-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-solae-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-solae-contact svg,
.footer-solae-contact .sa-asset-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-solae-whatsapp {
  border-color: rgba(var(--sa-nude-rgb), 0.42);
  background: rgba(var(--sa-nude-rgb), 0.12);
  color: #fff;
}

.footer-solae-instagram {
  color: rgba(255, 255, 255, 0.88);
}

.footer-solae-contact:hover,
.footer-solae-contact:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--sa-copper-rgb), 0.62);
  background: rgba(var(--sa-copper-rgb), 0.2);
  color: #fff;
}

.solae-hero-actions {
  gap: 12px;
  margin-top: 2px;
}

.solae-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.solae-page .solae-contact-link,
.solae-page .solae-cta .solae-contact-link {
  gap: 10px;
  border-color: rgba(var(--sa-copper-rgb), 0.42);
  background: rgba(255, 255, 255, 0.76);
  color: var(--sa-copper);
  box-shadow: none;
}

.solae-page .solae-whatsapp-link,
.solae-page .solae-cta .solae-whatsapp-link {
  border-color: rgba(var(--sa-green-rgb), 0.2);
  color: var(--sa-green-dark);
}

.solae-page .solae-contact-link svg,
.solae-page .solae-contact-link .sa-asset-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.solae-page .solae-contact-link:hover,
.solae-page .solae-contact-link:focus-visible,
.solae-page .solae-cta .solae-contact-link:hover,
.solae-page .solae-cta .solae-contact-link:focus-visible {
  border-color: transparent;
  background: var(--sa-brown);
  color: #fff;
  box-shadow: 0 18px 38px rgba(69, 43, 31, 0.18);
}

@media (max-width: 980px) {
  .solae-page .solae-mockup-hero {
    min-height: auto;
    overflow: hidden;
  }

  .solae-page .solae-mockup-hero::before,
  .solae-page .solae-mockup-hero::after {
    width: 100%;
    border-radius: 0;
  }

  .solae-page .solae-mockup-hero::before {
    height: 58%;
    bottom: auto;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 229, 0.94));
    box-shadow: 0 28px 70px rgba(112, 77, 46, 0.12);
  }

  .solae-page .solae-mockup-hero::after {
    height: 58%;
    bottom: auto;
    opacity: 0.08;
  }

  .solae-page .solae-mockup-hero .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solae-page .solae-mockup-hero .hero-copy,
  body:not(.home) .site-main > .solae-mockup-hero .hero-copy {
    min-height: 0;
    padding: 44px 24px 34px;
  }

  .solae-page .solae-mockup-hero .breadcrumb {
    margin-bottom: 32px;
  }

  .solae-hero-wordmark span {
    font-size: clamp(72px, 18vw, 128px);
  }

  .solae-page .solae-mockup-hero .hero-copy > p {
    max-width: 640px;
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  .solae-page .solae-mockup-hero .solae-hero-media img,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img {
    min-height: clamp(360px, 62vw, 520px);
    height: clamp(360px, 62vw, 520px);
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .solae-page .solae-mockup-hero .solae-hero-media img {
    object-position: center 34%;
    transform: none;
  }

  .solae-hero-benefits {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: -34px 24px 34px;
    padding: 22px;
  }

  .solae-hero-benefit,
  .solae-hero-benefit:first-child,
  .solae-hero-benefit:last-child {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 0;
    border-right: 0;
  }

  .solae-hero-benefit-icon {
    width: 58px;
    height: 58px;
  }

  .solae-hero-benefit-icon svg {
    width: 30px;
    height: 30px;
  }

  .google-reviews-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .google-reviews-viewport {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .google-review-card {
    flex-basis: min(78vw, 360px);
  }
}

@media (max-width: 520px) {
  .solae-page .solae-mockup-hero .hero-copy,
  body:not(.home) .site-main > .solae-mockup-hero .hero-copy {
    padding: 32px 18px 28px;
  }

  .solae-page .solae-mockup-hero .breadcrumb {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .solae-hero-wordmark {
    gap: 12px;
    margin-bottom: 24px;
  }

  .solae-hero-wordmark span {
    font-size: clamp(58px, 21vw, 84px);
  }

  .solae-hero-wordmark small {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .solae-page .solae-mockup-hero .section-label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .solae-page .solae-mockup-hero .hero-copy > p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .solae-page .solae-mockup-hero .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .solae-page .solae-mockup-hero .sa-btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  .solae-page .solae-mockup-hero .solae-hero-media img,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img {
    min-height: 320px;
    height: 320px;
  }

  .solae-hero-benefits {
    grid-template-columns: 1fr;
    margin: -26px 18px 26px;
    padding: 20px;
  }

  .solae-hero-benefit strong {
    font-size: 12px;
  }

  .solae-hero-benefit small {
    font-size: 13px;
  }

  .google-reviews-head {
    gap: 18px;
  }

  .google-reviews-actions,
  .google-review-controls {
    width: 100%;
  }

  .google-review-controls {
    justify-content: center;
  }

  .google-review-control {
    flex: 0 0 46px;
    width: 46px;
    height: 42px;
  }

  .google-review-card {
    flex-basis: min(86vw, 326px);
    min-height: 268px;
    padding: 24px;
  }

  .google-review-card blockquote {
    font-size: 22px;
  }

  .footer-solae-contact,
  .solae-page .solae-cta .solae-contact-link {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insurance-marquee-track,
  .payment-methods-track {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* SOLAE hero final: full-bleed image with organic brand panel */
.solae-page .solae-mockup-hero {
  --solae-cream: #f8f4ee;
  --solae-ivory: #fffdf8;
  --solae-olive: #2f4737;
  --solae-bronze: #a95432;
  --solae-gold: #c3a36b;
  --solae-dark: #231f1d;
  --solae-muted: #6f6862;
  min-height: clamp(760px, calc(100vh - var(--sa-header)), 900px);
  overflow: hidden;
  background: var(--solae-cream);
}

.solae-page .solae-mockup-hero .hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: inherit;
}

.solae-page .solae-mockup-hero .solae-hero-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  background: #151812;
}

.solae-page .solae-mockup-hero .solae-hero-media img,
body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img {
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(1.03) brightness(1.02) contrast(1.04);
  transform: none;
}

.solae-page .solae-mockup-hero .solae-hero-media::after {
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.36) 0%, rgba(248, 244, 238, 0.08) 30%, rgba(22, 20, 16, 0.04) 54%, rgba(22, 20, 16, 0.14) 100%),
    radial-gradient(circle at 56% 10%, rgba(255, 244, 210, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(22, 16, 12, 0.2));
}

.solae-page .solae-mockup-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(66vw, 940px);
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.99) 0%, rgba(248, 244, 238, 0.97) 66%, rgba(248, 244, 238, 0.8) 100%);
  clip-path: polygon(0 0, 84% 0, 88% 7%, 91% 15%, 92% 25%, 91% 35%, 87% 46%, 82% 56%, 79% 66%, 80% 75%, 85% 86%, 91% 100%, 0 100%);
  box-shadow: 42px 0 90px rgba(80, 54, 34, 0.18);
  pointer-events: none;
}

.solae-page .solae-mockup-hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: min(66vw, 940px);
  border-right: 1px solid rgba(195, 163, 107, 0.42);
  clip-path: polygon(84% 0, 88% 7%, 91% 15%, 92% 25%, 91% 35%, 87% 46%, 82% 56%, 79% 66%, 80% 75%, 85% 86%, 91% 100%, 100% 100%, 100% 0);
  opacity: 0.9;
  pointer-events: none;
}

.solae-page .solae-mockup-hero .hero-copy {
  position: relative;
  z-index: 4;
  justify-content: flex-start;
  width: min(54vw, 700px);
  max-width: 700px;
  min-height: 0;
  padding: clamp(72px, 8vh, 105px) clamp(42px, 4.6vw, 78px) 255px;
  isolation: auto;
  background: transparent;
}

.solae-page .solae-mockup-hero .hero-copy::before,
.solae-page .solae-mockup-hero .hero-grid::before {
  display: none !important;
}

.solae-page .solae-mockup-hero .breadcrumb {
  margin: 0 0 clamp(36px, 4.8vw, 56px);
  color: var(--solae-bronze);
  font-size: 15px;
}

.solae-page .solae-mockup-hero .solae-hero-wordmark {
  display: block;
  width: min(100%, 540px);
  margin: 0 0 30px;
}

.solae-page .solae-mockup-hero .solae-hero-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter:
    sepia(0.16)
    saturate(1.04)
    brightness(0.94)
    contrast(1.03)
    drop-shadow(0 16px 30px rgba(72, 48, 30, 0.08));
}

.solae-page .solae-mockup-hero .section-label {
  margin: 0 0 16px;
  color: var(--solae-bronze);
  font-size: clamp(15px, 1.22vw, 18px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.solae-page .solae-mockup-hero .hero-copy > p {
  max-width: 500px;
  margin: 0 0 32px;
  color: var(--solae-dark);
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.58;
}

.solae-page .solae-mockup-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.solae-page .solae-mockup-hero .hero-actions .sa-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.solae-page .solae-mockup-hero .hero-actions > .sa-btn:first-child {
  border: 0;
  background: linear-gradient(135deg, #bd7a39, #a95432);
  color: #fff;
  box-shadow: 0 18px 36px rgba(169, 84, 50, 0.24);
}

.solae-page .solae-mockup-hero .solae-whatsapp-link {
  border-color: rgba(47, 71, 55, 0.13);
  background: rgba(255, 255, 255, 0.92);
  color: #4f463e;
  box-shadow: 0 16px 32px rgba(38, 28, 21, 0.08);
}

.solae-page .solae-mockup-hero .solae-instagram-link {
  border-color: rgba(169, 84, 50, 0.58);
  background: rgba(255, 253, 248, 0.54);
  color: var(--solae-bronze);
  box-shadow: none;
}

.solae-page .solae-mockup-hero .solae-contact-link:hover,
.solae-page .solae-mockup-hero .solae-contact-link:focus-visible,
.solae-page .solae-mockup-hero .hero-actions > .sa-btn:first-child:hover,
.solae-page .solae-mockup-hero .hero-actions > .sa-btn:first-child:focus-visible {
  transform: translateY(-2px);
  background: var(--solae-olive);
  color: #fff;
}

.solae-page .solae-hero-benefits {
  position: absolute;
  right: clamp(32px, 3.5vw, 58px);
  bottom: clamp(26px, 3.2vw, 44px);
  left: clamp(32px, 3.5vw, 58px);
  z-index: 6;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 30px;
  border: 1px solid rgba(195, 163, 107, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 28px 90px rgba(44, 32, 24, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.solae-page .solae-hero-benefit-icon {
  border-color: rgba(195, 163, 107, 0.62);
  color: var(--solae-gold);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .solae-page .solae-mockup-hero {
    min-height: 780px;
  }

  .solae-page .solae-mockup-hero .hero-copy {
    width: min(58vw, 670px);
    padding-top: 62px;
  }

  .solae-page .solae-mockup-hero .solae-hero-wordmark {
    width: min(100%, 480px);
  }

  .solae-page .solae-mockup-hero .hero-actions {
    gap: 12px;
  }

  .solae-page .solae-mockup-hero .hero-actions .sa-btn {
    min-height: 52px;
    padding-inline: 20px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .solae-page .solae-mockup-hero {
    min-height: auto;
  }

  .solae-page .solae-mockup-hero::before,
  .solae-page .solae-mockup-hero::after {
    display: none;
  }

  .solae-page .solae-mockup-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solae-page .solae-mockup-hero .hero-copy,
  body:not(.home) .site-main > .solae-mockup-hero .hero-copy {
    width: 100%;
    max-width: none;
    padding: 44px 24px 36px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 244, 238, 0.96));
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: clamp(360px, 62vw, 520px) !important;
    height: clamp(360px, 62vw, 520px) !important;
  }

  .solae-page .solae-mockup-hero .solae-hero-media img,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media img {
    object-position: center 34%;
    transform: none;
  }

  .solae-page .solae-hero-benefits {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: -34px 24px 34px;
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .solae-page .solae-mockup-hero .hero-copy,
  body:not(.home) .site-main > .solae-mockup-hero .hero-copy {
    padding: 32px 18px 28px;
  }

  .solae-page .solae-mockup-hero .breadcrumb {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .solae-page .solae-mockup-hero .solae-hero-wordmark {
    width: min(100%, 310px);
    margin-bottom: 22px;
  }

  .solae-page .solae-mockup-hero .section-label {
    font-size: 14px;
  }

  .solae-page .solae-mockup-hero .hero-copy > p {
    font-size: 16px;
  }

  .solae-page .solae-mockup-hero .hero-actions {
    display: grid;
    gap: 12px;
  }

  .solae-page .solae-mockup-hero .hero-actions .sa-btn {
    width: 100%;
    min-height: 54px;
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media {
    min-height: 320px !important;
    height: 320px !important;
  }

  .solae-page .solae-hero-benefits {
    grid-template-columns: 1fr;
    margin: -26px 18px 26px;
    padding: 20px;
  }
}

@media (min-width: 981px) {
  body:not(.home) .site-main > .solae-mockup-hero,
  .solae-page .solae-mockup-hero {
    min-height: clamp(930px, calc(100vh - var(--sa-header) + 90px), 1040px) !important;
    display: block;
  }

  .solae-page .solae-mockup-hero::before,
  .solae-page .solae-mockup-hero::after,
  .solae-page .solae-mockup-hero .hero-grid::before {
    display: none !important;
  }

  body:not(.home) .site-main > .solae-mockup-hero .hero-copy,
  .solae-page .solae-mockup-hero .hero-copy {
    width: min(66vw, 940px);
    max-width: 940px;
    min-height: inherit !important;
    padding: clamp(118px, 9.5vh, 136px) clamp(42px, 4.8vw, 78px) 285px !important;
    background:
      radial-gradient(circle at 80% 38%, rgba(255, 255, 255, 0.76), transparent 28%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.995) 0%, rgba(248, 244, 238, 0.985) 67%, rgba(248, 244, 238, 0.86) 100%);
    clip-path: polygon(0 0, 84% 0, 88% 7%, 91% 15%, 92% 25%, 91% 35%, 87% 46%, 82% 56%, 79% 66%, 80% 75%, 85% 86%, 91% 100%, 0 100%);
    box-shadow: 42px 0 90px rgba(80, 54, 34, 0.2);
  }

  .solae-page .solae-mockup-hero .hero-copy::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 22%;
    border-right: 1px solid rgba(195, 163, 107, 0.44);
    clip-path: polygon(27% 0, 45% 7%, 59% 15%, 64% 25%, 59% 35%, 41% 46%, 18% 56%, 5% 66%, 9% 75%, 32% 86%, 59% 100%, 100% 100%, 100% 0);
    pointer-events: none;
  }

  .solae-page .solae-mockup-hero .solae-hero-wordmark {
    width: clamp(420px, 35vw, 540px);
  }

  .solae-page .solae-mockup-hero .breadcrumb,
  .solae-page .solae-mockup-hero .solae-hero-wordmark,
  .solae-page .solae-mockup-hero .section-label,
  .solae-page .solae-mockup-hero .hero-copy > p,
  .solae-page .solae-mockup-hero .hero-actions {
    position: relative;
    z-index: 2;
  }

  .solae-page .solae-mockup-hero .hero-copy > p {
    color: var(--solae-dark);
  }

  body:not(.home) .site-main > .solae-mockup-hero .hero-actions .sa-btn {
    min-height: 56px;
    padding: 0 28px;
  }

  .solae-page .solae-mockup-hero .hero-actions {
    max-width: 575px;
  }

  .solae-page .solae-mockup-hero .solae-hero-media,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .solae-page .solae-mockup-hero .solae-hero-media img {
    object-position: 50% center;
    transform: scale(1.08) translateX(12%) !important;
  }

  .solae-page .solae-hero-benefits {
    bottom: clamp(34px, 4vw, 54px);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 28px 90px rgba(44, 32, 24, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  body:not(.home) .site-main > .solae-mockup-hero,
  .solae-page .solae-mockup-hero {
    min-height: 860px !important;
  }

  body:not(.home) .site-main > .solae-mockup-hero .hero-copy,
  .solae-page .solae-mockup-hero .hero-copy {
    padding: 76px clamp(42px, 4.8vw, 78px) 230px !important;
  }

  .solae-page .solae-mockup-hero .breadcrumb {
    margin-bottom: 28px !important;
  }

  .solae-page .solae-mockup-hero .solae-hero-wordmark {
    width: 380px;
    margin-bottom: 18px;
  }

  .solae-page .solae-mockup-hero .section-label {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .solae-page .solae-mockup-hero .hero-copy > p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.55;
  }
}

.solae-treatment-single .hero-media img {
  object-fit: cover;
  object-position: center;
}

.solae-treatment-single .solae-treatment-overview {
  align-items: stretch;
}

.solae-treatment-single .solae-treatment-overview > img {
  min-height: 100%;
  object-fit: cover;
}

.solae-treatment-process {
  margin-top: 0;
}

.solae-treatment-faq {
  margin-top: clamp(54px, 6vw, 82px);
}

.solae-faq-list {
  display: grid;
  gap: 14px;
}

.solae-treatment-single .service-accordion summary {
  align-items: start;
}

.solae-treatment-single .service-accordion summary strong {
  font-size: clamp(22px, 2vw, 30px);
}

.solae-treatment-single .service-accordion summary small {
  max-width: 860px;
}

.solae-treatment-single .solae-cta {
  margin-top: clamp(48px, 6vw, 72px);
}

.solae-ai-analysis {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  margin-top: clamp(68px, 7vw, 98px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 236, 0.9)),
    var(--sa-cream);
  box-shadow: 0 28px 90px rgba(44, 32, 24, 0.1);
}

.solae-ai-copy p:not(.section-intro) {
  margin: 0;
  max-width: 560px;
  color: var(--sa-muted);
  line-height: 1.7;
}

.solae-ai-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(280px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.solae-ai-visual > img,
.solae-ai-visual > video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border-radius: 24px;
  background: var(--sa-ink);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 62px rgba(44, 32, 24, 0.14);
}

.solae-ai-points {
  display: grid;
  gap: 12px;
}

.solae-ai-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(var(--sa-copper-rgb), 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.solae-ai-points article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--sa-copper-rgb), 0.12);
  color: var(--sa-copper);
}

.solae-ai-points svg {
  width: 22px;
  height: 22px;
}

.solae-ai-points h3 {
  margin: 0 0 6px;
  color: var(--sa-ink);
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.05;
}

.solae-ai-points p {
  margin: 0;
  color: var(--sa-muted);
  line-height: 1.55;
}

.solae-facial-menu {
  margin-top: clamp(68px, 7vw, 98px);
}

@media (min-width: 981px) {
  .solae-facial-menu,
  .solae-aesthetic-menu {
    padding-right: 76px;
  }
}

.solae-facial-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.solae-facial-photo {
  position: sticky;
  top: 118px;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  border: 1px solid rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 28px;
  background: var(--sa-cream);
  box-shadow: 0 24px 70px rgba(44, 32, 24, 0.13);
}

.solae-facial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.solae-facial-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 45px rgba(44, 32, 24, 0.18);
  backdrop-filter: blur(14px);
}

.solae-facial-photo figcaption strong {
  color: var(--sa-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solae-facial-photo figcaption span {
  color: var(--sa-muted);
  line-height: 1.55;
}

.solae-facial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.solae-facial-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 186px;
  padding: 20px;
  border: 1px solid rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(44, 32, 24, 0.08);
}

.solae-facial-card:first-child {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(var(--sa-copper-rgb), 0.12), rgba(255, 255, 255, 0.95)),
    #fff;
}

.solae-facial-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--sa-copper-rgb), 0.12);
  color: var(--sa-copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.solae-facial-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--sa-copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.solae-facial-card h3 {
  margin: 0 0 8px;
  color: var(--sa-ink);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.02;
}

.solae-facial-card p {
  margin: 0;
  color: var(--sa-muted);
  line-height: 1.58;
}

.solae-aesthetic-menu {
  margin-top: clamp(68px, 7vw, 98px);
}

.solae-aesthetic-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solae-aesthetic-menu-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  align-content: start;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.92)),
    #fff;
  box-shadow: 0 18px 54px rgba(44, 32, 24, 0.08);
}

.solae-aesthetic-menu-card-media {
  grid-column: 1 / -1;
  overflow: hidden;
  height: clamp(156px, 16vw, 214px);
  margin: 0 0 4px;
  border-radius: 18px;
  background: #f8f2ed;
}

.solae-aesthetic-menu-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--solae-card-image-position, center);
  filter: saturate(1.02) contrast(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.solae-aesthetic-menu-card:hover .solae-aesthetic-menu-card-media img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.solae-aesthetic-menu-card .icon-bubble {
  margin-top: 4px;
}

.solae-aesthetic-menu-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(var(--sa-green-rgb), 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
}

.solae-aesthetic-menu-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--sa-copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.solae-aesthetic-menu-card h3 {
  margin: 0 0 10px;
  color: var(--sa-ink);
  font-family: var(--font-heading);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.02;
}

.solae-aesthetic-menu-card p {
  margin: 0 0 14px;
  color: var(--sa-muted);
  line-height: 1.6;
}

.solae-aesthetic-menu-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solae-aesthetic-menu-card li {
  position: relative;
  padding-left: 18px;
  color: var(--sa-muted);
  line-height: 1.45;
}

.solae-aesthetic-menu-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sa-copper);
  transform: translateY(-50%);
}

.solae-difference-note {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(var(--sa-copper-rgb), 0.18);
  border-radius: 22px;
  background: rgba(var(--sa-copper-rgb), 0.08);
}

.solae-difference-note strong {
  flex: 0 0 auto;
  color: var(--sa-copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solae-difference-note span {
  max-width: 860px;
  color: var(--sa-muted);
  line-height: 1.6;
}

.solae-before-after {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(68px, 7vw, 98px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(var(--sa-copper-rgb), 0.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 243, 235, 0.88)),
    var(--sa-cream);
  box-shadow: 0 28px 90px rgba(44, 32, 24, 0.1);
}

.solae-before-after-copy .section-intro {
  max-width: 520px;
}

.solae-compare {
  --position: 50%;
  min-width: 0;
}

.solae-compare-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  background: #f3ece4;
  box-shadow: 0 24px 70px rgba(44, 32, 24, 0.16);
  isolation: isolate;
  cursor: ew-resize;
  touch-action: none;
}

.solae-compare-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  user-select: none;
  pointer-events: none;
}

.solae-compare-before-img {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.solae-compare-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sa-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(44, 32, 24, 0.12);
}

.solae-compare-label.is-before {
  left: 18px;
}

.solae-compare-label.is-after {
  right: 18px;
}

.solae-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 5;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(var(--sa-copper-rgb), 0.22), 0 0 24px rgba(44, 32, 24, 0.24);
  transform: translateX(-50%);
  pointer-events: none;
}

.solae-compare-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--sa-copper);
  box-shadow: 0 18px 38px rgba(var(--sa-copper-rgb), 0.38);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.solae-compare-handle i {
  position: relative;
  display: block;
  width: 24px;
  height: 12px;
}

.solae-compare-handle i::before,
.solae-compare-handle i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.solae-compare-handle i::before {
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.solae-compare-handle i::after {
  right: 0;
  transform: translateY(-50%) rotate(135deg);
}

.solae-compare-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

@media (max-width: 720px) {
  .solae-treatment-single {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .solae-treatment-single .hero-actions {
    align-items: stretch;
  }

  .solae-treatment-single .hero-actions .sa-btn {
    width: 100%;
    justify-content: center;
  }

  .solae-treatment-single .service-accordion summary {
    grid-template-columns: auto 1fr;
  }

  .solae-treatment-single .service-accordion summary .accordion-caret {
    display: none;
  }

  .solae-ai-analysis {
    grid-template-columns: 1fr;
    margin-top: 54px;
    padding: 20px;
    border-radius: 24px;
  }

  .solae-ai-visual {
    grid-template-columns: 1fr;
  }

  .solae-ai-visual > img,
  .solae-ai-visual > video {
    min-height: 280px;
    border-radius: 20px;
  }

  .solae-ai-points article {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .solae-ai-points article > span {
    width: 42px;
    height: 42px;
  }

  .solae-facial-menu {
    margin-top: 54px;
  }

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

  .solae-facial-photo {
    position: relative;
    top: auto;
    min-height: 300px;
    border-radius: 22px;
  }

  .solae-facial-photo img {
    min-height: 300px;
  }

  .solae-facial-photo figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -72px 14px 14px;
  }

  .solae-facial-list {
    grid-template-columns: 1fr;
  }

  .solae-facial-card,
  .solae-facial-card:first-child {
    grid-column: auto;
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .solae-facial-number {
    width: 42px;
    height: 42px;
  }

  .solae-facial-card h3 {
    font-size: 24px;
  }

  .solae-aesthetic-menu {
    margin-top: 54px;
  }

  .solae-aesthetic-menu-grid {
    grid-template-columns: 1fr;
  }

  .solae-aesthetic-menu-card {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .solae-aesthetic-menu-card .icon-bubble {
    width: 46px;
    height: 46px;
  }

  .solae-aesthetic-menu-card h3 {
    font-size: 24px;
  }

  .solae-difference-note {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
  }

  .solae-before-after {
    grid-template-columns: 1fr;
    margin-top: 54px;
    padding: 20px;
    border-radius: 24px;
  }

  .solae-compare-media {
    min-height: 430px;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
  }

  .solae-compare-label {
    top: 14px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .solae-compare-label.is-before {
    left: 14px;
  }

  .solae-compare-label.is-after {
    right: 14px;
  }

  .solae-compare-handle {
    width: 52px;
    height: 52px;
  }
}

.solae-page .treatment-card {
  display: flex;
  flex-direction: column;
}

.solae-page .treatment-card > img {
  display: block;
  width: 100%;
  height: clamp(280px, 26vw, 360px);
  padding: 0;
  background: #f8f2ed;
  object-fit: cover;
  object-position: center;
}

.solae-page .treatment-card:hover > img {
  transform: translateZ(0);
  filter: saturate(1.03) contrast(1.01);
}

.solae-page .treatment-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.solae-page .treatment-card-body .text-link {
  margin-top: auto;
}

.solae-treatment-single .solae-treatment-overview.has-before-after {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.58fr);
}

.solae-treatment-single .solae-treatment-overview > .solae-treatment-compare {
  align-self: stretch;
  margin: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.solae-treatment-single .solae-treatment-compare .solae-compare-media {
  height: 100%;
  min-height: clamp(500px, 42vw, 660px);
  border-radius: var(--sa-radius);
  aspect-ratio: 540 / 860;
}

.solae-treatment-single .solae-treatment-compare .solae-compare-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.solae-treatment-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 18px);
  overflow: visible;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solae-treatment-process .feature-item {
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(var(--sa-copper-rgb), 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 235, 0.82));
  box-shadow: 0 18px 54px rgba(34, 23, 20, 0.07);
}

.solae-treatment-process .icon-bubble {
  width: 54px;
  height: 54px;
  background: rgba(var(--sa-copper-rgb), 0.12);
  color: var(--sa-copper);
}

.solae-treatment-process .feature-item h3 {
  margin-bottom: 8px;
  color: var(--sa-brown);
}

.solae-treatment-process .feature-item p {
  line-height: 1.55;
}

.solae-treatment-single .feature-strip.is-process.solae-treatment-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .solae-treatment-single .solae-treatment-overview.has-before-after {
    grid-template-columns: 1fr;
  }

  .solae-treatment-single .feature-strip.is-process.solae-treatment-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .solae-page .treatment-card > img {
    height: clamp(260px, 76vw, 360px);
  }

  .solae-treatment-single .solae-treatment-overview > .solae-treatment-compare {
    margin: 16px;
  }

  .solae-treatment-single .solae-treatment-compare .solae-compare-media {
    min-height: clamp(430px, 134vw, 620px);
    aspect-ratio: 540 / 860;
  }

  .solae-treatment-single .feature-strip.is-process.solae-treatment-process {
    grid-template-columns: 1fr;
  }
}

.solae-page .solae-mockup-hero .solae-hero-media video.solae-hero-video,
body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media video.solae-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.08) translateX(12%);
  transform-origin: center;
  filter: saturate(1.03) brightness(1.01) contrast(1.04);
  background: #161812;
}

@media (max-width: 980px) {
  .solae-page .solae-mockup-hero .solae-hero-media video.solae-hero-video,
  body:not(.home) .site-main > .solae-mockup-hero .solae-hero-media video.solae-hero-video {
    object-position: center 34%;
    transform: none;
  }
}
