:root {
  --forest: #343225;
  --forest-deep: #2b2a21;
  --sage: #a98b4a;
  --sage-soft: #d9be78;
  --sage-pale: #f1e7d2;
  --cream: #f6f1e7;
  --paper: #ffffff;
  --ink: #2b2a21;
  --muted: #6f6a5c;
  --line: rgba(52, 50, 37, 0.16);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 70px rgba(52, 50, 37, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #e5b95d;
  outline-offset: 3px;
}

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

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

h1,
h2,
h3 {
  font-family: "Onest", "Manrope", "Noto Sans Arabic", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.1vw, 4.35rem);
  line-height: 1.02;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.topline {
  position: relative;
  z-index: 31;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topline__inner {
  display: flex;
  align-items: center;
  min-height: 36px;
  gap: 22px;
}

.topline__inner a {
  margin-left: auto;
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 254, 250, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(15, 47, 42, 0.06);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 42px;
  height: 42px;
  fill: var(--forest);
}

.brand__spark {
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: "Onest", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
  margin-right: clamp(18px, 3vw, 42px);
  color: #3f5853;
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch__button {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
}

.lang-switch__button.is-active {
  background: var(--forest);
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #215249;
  box-shadow: 0 12px 26px rgba(24, 63, 56, 0.2);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding: 0 20px;
}

.button--large {
  min-height: 58px;
  padding: 0 26px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 0;
  background:
    radial-gradient(circle at 7% 14%, rgba(127, 159, 143, 0.11), transparent 30%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 48px;
  left: max(20px, calc((100vw - 1180px) / 2 - 110px));
  width: 90px;
  height: 90px;
  border: 1px solid rgba(24, 63, 56, 0.1);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  min-height: 616px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 42px 0 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #82a893;
  box-shadow: 0 0 0 5px rgba(130, 168, 147, 0.16);
}

.hero h1 {
  max-width: 620px;
  margin: 29px 0 24px;
  font-size: clamp(3.2rem, 6.3vw, 6rem);
  line-height: 0.92;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 8px;
  height: 8px;
  border-top: 2px solid #d9ae5b;
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 555px;
  margin-bottom: 30px;
  color: #576b67;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition: background 0.25s ease, color 0.25s ease;
}

.text-link:hover .text-link__icon {
  background: var(--sage-pale);
}

.text-link span:last-child {
  display: grid;
}

.text-link small {
  color: var(--muted);
  font-size: 0.68rem;
}

.text-link strong {
  margin-top: 1px;
  font-size: 0.92rem;
}

.hero__note {
  margin: 20px 0 0;
  color: #81908c;
  font-size: 0.71rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
  border-radius: 3px 3px 0 var(--radius-lg);
  background: var(--sage-pale);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(22, 48, 44, 0.06), transparent 35%, rgba(14, 47, 42, 0.08));
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 155px;
  min-height: 80px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 12px 32px rgba(24, 63, 56, 0.12);
  backdrop-filter: blur(14px);
}

.hero__badge strong {
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero__badge span {
  color: #5d706c;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__availability {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bce5ca;
}

.pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid #bce5ca;
  border-radius: inherit;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.6); }
}

.trust-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 20px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 2.15rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.trust-item span {
  max-width: 105px;
  color: #667773;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.section {
  padding: clamp(92px, 10vw, 148px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 760px;
  margin-top: 20px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 345px;
  padding: 30px 30px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--sage-pale);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card--accent {
  background: var(--forest);
  color: #fff;
}

.service-card--accent:hover {
  background: #215249;
}

.service-card__number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #95a29f;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card__icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
}

.service-card--accent .service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.33rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.65;
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card > a {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.71rem;
  font-weight: 700;
}

.service-card--accent > a {
  border-color: var(--white-line);
}

.service-card > a b {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.service-card > a:hover b {
  transform: translate(2px, -2px);
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.approach::before {
  position: absolute;
  top: -210px;
  left: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.013);
}

.approach__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  gap: clamp(70px, 10vw, 150px);
}

.section-kicker--light {
  color: #bfd6c9;
}

.approach h2 {
  max-width: 620px;
  margin-top: 22px;
}

.approach__intro > p {
  max-width: 520px;
  margin: 30px 0 52px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.8;
}

.approach__quote {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  max-width: 480px;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
}

.approach__quote > span {
  color: #dcb766;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: 0.9;
}

.approach__quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, serif;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.6;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 23px;
  padding: 33px 0;
  border-bottom: 1px solid var(--white-line);
}

.steps li:first-child {
  padding-top: 7px;
}

.steps > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #c8d9d0;
  font-size: 0.66rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.65;
}

.specialists {
  background: var(--cream);
}

.specialists__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.68fr);
  align-items: stretch;
  gap: clamp(50px, 8vw, 112px);
}

.specialists__content h2 {
  max-width: 740px;
  margin-top: 22px;
}

.specialists__content > p {
  max-width: 650px;
  margin: 27px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.specialist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.specialist-tags li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  font-weight: 600;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.arrow-link b {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.arrow-link:hover b {
  transform: translateX(4px);
}

.finance-card {
  min-height: 500px;
  border-radius: 2px 2px var(--radius-lg) 2px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(24, 63, 56, 0.08);
}

.finance-card__top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 255px;
  padding: 32px;
  overflow: hidden;
  background: var(--sage-soft);
}

.finance-card__top::after {
  position: absolute;
  top: -75px;
  right: -45px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(24, 63, 56, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(24, 63, 56, 0.025), 0 0 0 90px rgba(24, 63, 56, 0.018);
}

.finance-card__top > span {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 32px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finance-card__top strong {
  position: relative;
  z-index: 1;
  font-family: "Onest", sans-serif;
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.finance-card__top small {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
}

.finance-card__bottom {
  padding: 33px 32px 36px;
}

.finance-card__bottom h3 {
  margin-bottom: 12px;
  font-size: 1.33rem;
}

.finance-card__bottom p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.67;
}

.finance-card__bottom a {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(450px, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq__heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq__heading h2 {
  margin-top: 20px;
}

.faq__heading p {
  max-width: 340px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.faq__heading > a {
  display: inline-flex;
  gap: 18px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 700;
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, #f6f1e7 0%, #efe2c5 100%);
  isolation: isolate;
}

.reviews > .shell {
  position: relative;
  z-index: 2;
}

.reviews__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  margin-bottom: 34px;
}

.reviews__heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.reviews__heading h2 {
  max-width: 820px;
}

.reviews__heading p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.reviews__summary {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(190px, auto) minmax(110px, auto) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(169, 139, 74, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(52, 50, 37, 0.09);
  backdrop-filter: blur(16px);
}

.reviews__summary span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews__summary strong {
  display: block;
  color: var(--forest-deep);
  font-family: "Onest", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.reviews__stars,
.review-card__rating {
  color: #e8ad20;
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.reviews__stars span {
  display: inline;
  color: rgba(52, 50, 37, 0.22);
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.reviews__summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.reviews__summary p b {
  color: var(--forest-deep);
  font-family: "Onest", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.reviews__summary a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.review-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(169, 139, 74, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.9));
  box-shadow: 0 24px 58px rgba(52, 50, 37, 0.08);
}

.reviews .review-card.reveal {
  opacity: 1;
  transform: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card--compact {
  grid-column: span 2;
  min-height: 230px;
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-card__avatar {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), #595239);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.review-card h3 {
  margin: 0 0 2px;
  color: var(--forest-deep);
  font-size: 1.05rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.review-card header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.review-card__rating {
  margin-bottom: 14px;
  font-size: 1rem;
}

.review-card > p {
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.96rem;
  line-height: 1.68;
}

.installment {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 241, 231, 0.96) 48%, rgba(241, 231, 210, 0.8) 100%);
}

.installment::before {
  content: "";
  position: absolute;
  inset: 9% -12% auto auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 190, 120, 0.3), rgba(217, 190, 120, 0));
  pointer-events: none;
}

.installment__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.installment__photo {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--sage-pale);
  box-shadow: 0 28px 80px rgba(52, 50, 37, 0.13);
}

.installment__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(52, 50, 37, 0), rgba(52, 50, 37, 0.11)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(169, 139, 74, 0));
  pointer-events: none;
}

.installment__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: 47% 45%;
}

.installment__content {
  max-width: 620px;
}

.installment__content h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.installment__content > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.installment__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 18px;
}

.installment__steps div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(169, 139, 74, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(52, 50, 37, 0.07);
}

.installment__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(169, 139, 74, 0.14);
  color: var(--sage);
  font-family: "Onest", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.installment__steps p {
  margin: 0;
  color: var(--forest-deep);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.42;
}

.installment__note {
  max-width: 560px;
  padding-left: 18px;
  border-left: 3px solid var(--sage-soft);
  font-size: 1.05rem !important;
  line-height: 1.68 !important;
}

.installment__button {
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .reviews__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reviews__heading .section-kicker {
    margin-bottom: -5px;
  }

  .reviews__summary {
    grid-template-columns: minmax(160px, 1fr) auto;
  }

  .reviews__summary a {
    justify-self: start;
  }

  .review-card,
  .review-card--compact {
    grid-column: span 6;
  }

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

  .installment__content {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .reviews {
    padding-top: 84px;
  }

  .reviews__heading {
    margin-bottom: 24px;
  }

  .reviews__heading p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .reviews__summary {
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    margin-bottom: 16px;
    padding: 18px 20px;
    border-radius: 22px;
  }

  .reviews__summary > div:first-child {
    grid-row: 1 / 3;
  }

  .reviews__summary strong {
    font-size: 3.1rem;
  }

  .reviews__stars {
    align-self: end;
  }

  .reviews__summary p {
    align-self: start;
  }

  .reviews__summary a {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    min-height: 46px;
    margin-top: 4px;
  }

  .reviews__list {
    display: grid;
    grid-auto-columns: minmax(284px, 84vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reviews__list::-webkit-scrollbar {
    display: none;
  }

  .review-card,
  .review-card--compact {
    grid-column: auto;
    min-height: 360px;
    padding: 21px;
    scroll-snap-align: start;
  }

  .review-card > p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .installment {
    padding-top: 40px;
    padding-bottom: 112px;
  }

  .installment__grid {
    gap: 24px;
  }

  .installment__photo {
    border-radius: 22px;
  }

  .installment__photo img {
    aspect-ratio: 4 / 5;
    object-position: 50% 40%;
  }

  .installment__content h2 {
    margin-bottom: 14px;
  }

  .installment__content > p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .installment__steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0 16px;
  }

  .installment__steps div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 14px;
    border-radius: 16px;
  }

  .installment__steps span {
    margin-bottom: 0;
  }

  .installment__note {
    padding-left: 14px;
    font-size: 0.98rem !important;
    line-height: 1.58 !important;
  }

  .installment__button {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 90px;
  cursor: pointer;
  font-family: "Onest", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  list-style: none;
}

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

.accordion summary i {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
  max-width: 680px;
  margin: -5px 60px 28px 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.contact-section {
  padding-top: 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.7fr);
  min-height: 540px;
  background: var(--cream);
}

.contact-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(0.55) sepia(0.08) hue-rotate(92deg) contrast(0.92);
}

.map-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 200px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(24, 63, 56, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-info {
  padding: 58px clamp(32px, 5vw, 70px);
}

.contact-info h2 {
  margin: 19px 0 38px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-row > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-row strong {
  font-size: 0.81rem;
  font-weight: 600;
  line-height: 1.65;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  justify-content: space-between;
  min-width: 180px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(52, 50, 37, 0.14);
  border-bottom: 1px solid rgba(52, 50, 37, 0.14);
  border-radius: 999px;
  background: #343225;
  color: #fffaf0;
  box-shadow: 0 18px 38px rgba(52, 50, 37, 0.14);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.social-links a:first-child {
  background: #cda64c;
  color: #2f2a1f;
}

.social-links a span {
  font-size: 1.05rem;
  line-height: 1;
}

.app-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 190, 120, 0.22), transparent 31%),
    linear-gradient(145deg, var(--sage-pale), var(--paper) 58%, var(--cream));
}

.app-section::before,
.app-section::after {
  position: absolute;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.app-section::before {
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
}

.app-section::after {
  top: -110px;
  right: -50px;
  width: 300px;
  height: 300px;
}

.app-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.app-section__copy h2 {
  max-width: 760px;
  margin: 20px 0 28px;
}

.app-section__copy h2 em {
  color: var(--forest);
  font-style: normal;
}

.app-section__copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.app-section__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 36px;
}

.button--app {
  min-height: 56px;
  border: 0;
  cursor: pointer;
}

.button--app:disabled {
  cursor: default;
  opacity: 0.72;
}

.app-section__download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
}

.app-section__hint {
  min-height: 24px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.qr-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(140px, 0.72fr);
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.qr-card__image {
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(52, 50, 37, 0.1);
}

.qr-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card figcaption {
  display: grid;
  gap: 8px;
}

.qr-card figcaption span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-card figcaption strong {
  font-family: "Onest", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.qr-card figcaption small {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 700;
}

.booking {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 138px) 0;
  background: var(--forest-deep);
  color: #fff;
}

.booking::after {
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.012), 0 0 0 160px rgba(255, 255, 255, 0.009);
}

.booking__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.booking__copy h2 {
  max-width: 600px;
  margin: 22px 0 25px;
}

.booking__copy > p {
  max-width: 480px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.91rem;
  line-height: 1.75;
}

.booking__phone {
  display: block;
  font-family: "Onest", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.booking__phone span {
  color: #8fb39f;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 22px;
  padding-top: 7px;
}

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

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  color: white;
  outline: 0;
  transition: border-color 0.2s ease;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.field select:focus {
  border-color: #c9e1d3;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 15px) 26px, calc(100% - 10px) 26px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: var(--forest-deep);
}

.field__error {
  min-height: 15px;
  color: #f2b9a8;
  font-size: 0.64rem;
}

.field.has-error input {
  border-color: #f2b9a8;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 0.66rem;
  line-height: 1.55;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #a9c8b6;
}

.button--light {
  background: var(--cream);
  color: var(--forest);
}

.button--light:hover {
  background: #fff;
}

.button--form {
  width: 100%;
  min-height: 58px;
  margin-top: 3px;
}

.form-note {
  margin: -13px 0 0;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.62rem;
}

.footer {
  padding: 60px 0 28px;
  background: var(--paper);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
}

.footer__nav {
  display: flex;
  gap: 27px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer__phone {
  justify-self: end;
  font-family: "Onest", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #899692;
  font-size: 0.62rem;
}

.floating-action {
  position: fixed;
  z-index: 50;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(5, 75, 116, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(5, 63, 98, 0.16);
  font-family: "Onest", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-action:hover {
  box-shadow: 0 16px 34px rgba(5, 63, 98, 0.22);
  transform: translateY(-3px);
}

.floating-whatsapp {
  left: 18px;
  background: #21b66f;
  color: #fff;
}

.floating-top {
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #343225;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 34px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--forest);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 1;
    inset: 100% 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(24, 63, 56, 0.09);
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.25s ease;
  }

  .mobile-nav.is-open {
    max-height: 460px;
    opacity: 1;
  }

  .mobile-nav a {
    width: var(--shell);
    margin-inline: auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    min-height: 570px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .approach__grid,
  .specialists__grid,
  .booking__grid {
    gap: 65px;
  }

  .approach__grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .contact-section__grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .app-section__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: 44px;
  }

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

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

  .footer__nav {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 0;
  }

  .topline__inner {
    min-height: 32px;
  }

  .topline__hours {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header .button--small {
    display: none;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .hero {
    padding-top: 25px;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  .hero__content {
    padding: 26px 0 44px;
  }

  .hero h1 {
    margin: 23px 0 22px;
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button--large {
    width: 100%;
  }

  .text-link {
    width: 100%;
  }

  .hero__note {
    margin-top: 18px;
  }

  .hero__visual {
    width: 100%;
    min-height: 480px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

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

  .hero__badge {
    top: 17px;
    right: 17px;
  }

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

  .trust-item {
    min-height: 92px;
    padding: 15px 16px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item strong {
    font-size: 1.75rem;
  }

  .trust-item span {
    font-size: 0.63rem;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .approach__grid,
  .specialists__grid,
  .faq__grid,
  .contact-section__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

  .section-heading > p {
    max-width: 590px;
  }

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

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

  .service-card__icon {
    margin-bottom: 38px;
  }

  .approach__grid {
    gap: 65px;
  }

  .approach__intro > p {
    margin-bottom: 38px;
  }

  .specialists__grid {
    gap: 55px;
  }

  .finance-card {
    min-height: 0;
  }

  .faq__grid {
    gap: 45px;
  }

  .faq__heading {
    position: static;
  }

  .accordion summary {
    min-height: 78px;
  }

  .contact-section {
    padding-top: 0;
  }

  .contact-section__grid {
    width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 400px;
  }

  .contact-info {
    padding: 55px 24px;
  }

  .app-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-section__copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.5rem);
  }

  .app-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button--app {
    width: 100%;
  }

  .app-section__download {
    align-self: flex-start;
  }

  .qr-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(130px, 0.6fr);
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .qr-card__image {
    border-width: 7px;
    border-radius: 16px;
  }

  .booking__grid {
    gap: 58px;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 40px;
  }

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

  .footer__phone {
    justify-self: start;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .toast {
    right: 14px;
    bottom: 78px;
    left: 14px;
    max-width: none;
  }
}

/* ---------- Dental line art across every content section ---------- */

.faq,
.reviews,
.contact-section,
.booking {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.faq > .shell,
.reviews > .shell,
.contact-section > .shell,
.booking > .shell {
  position: relative;
  z-index: 2;
}

.specialists::before,
.reviews::before,
.faq::before,
.contact-section::before,
.booking::before {
  position: absolute;
  z-index: 1;
  width: min(690px, 49vw);
  aspect-ratio: 1400 / 300;
  background: url("assets/dental-line-art.svg") center / contain no-repeat;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.specialists::before {
  top: 22px;
  right: -80px;
}

.reviews::before {
  right: -96px;
  bottom: 34px;
  opacity: 0.16;
  transform: rotate(180deg);
}

.faq::before {
  top: 24px;
  left: -100px;
  opacity: 0.17;
  transform: scaleX(-1);
}

.contact-section::before {
  right: -90px;
  bottom: 24px;
  opacity: 0.18;
  transform: rotate(180deg);
}

.booking::before {
  top: 20px;
  left: -80px;
  opacity: 0.16;
  filter: brightness(1.16);
}

@media (max-width: 780px) {
  .services::after,
  .reasons::before,
  .approach::after,
  .specialists::before,
  .reviews::before,
  .faq::before,
  .contact-section::before,
  .booking::before {
    width: 470px;
    opacity: 0.22;
  }

  .services::after {
    right: -205px;
    bottom: -2px;
  }

  .reasons::before {
    top: 12px;
    left: -210px;
  }

  .approach::after {
    right: -205px;
    bottom: 10px;
  }

  .specialists::before {
    top: 18px;
    right: -210px;
  }

  .reviews::before {
    right: -205px;
    bottom: 18px;
    opacity: 0.2;
  }

  .faq::before {
    top: 14px;
    left: -210px;
    opacity: 0.2;
  }

  .contact-section::before {
    right: -205px;
    bottom: 12px;
    opacity: 0.2;
  }

  .booking::before {
    top: 14px;
    left: -200px;
    opacity: 0.19;
  }
}

/* ---------- Reversible hero-to-services transition ---------- */

.hero .trust-bar {
  border-bottom-color: rgba(169, 139, 74, 0.22);
  box-shadow: 0 22px 52px rgba(74, 55, 24, 0.18);
}

.services {
  padding-top: clamp(72px, 5.8vw, 90px);
  background:
    linear-gradient(
      180deg,
      rgba(169, 139, 74, 0.72) 0,
      rgba(217, 190, 120, 0.42) 42px,
      rgba(241, 231, 210, 0.78) 96px,
      rgba(251, 247, 238, 0.98) 164px,
      #fbf7ee 230px
    );
}

.services::before {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: max(-90px, calc((100vw - 1460px) / 2));
  width: min(640px, 46vw);
  aspect-ratio: 1400 / 300;
  background: url("assets/dental-line-art.svg") center / contain no-repeat;
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

@media (max-width: 780px) {
  .hero .trust-bar {
    box-shadow: 0 16px 34px rgba(74, 55, 24, 0.14);
  }

  .services {
    padding-top: 64px;
    background:
      linear-gradient(
        180deg,
        rgba(169, 139, 74, 0.62) 0,
        rgba(217, 190, 120, 0.36) 32px,
        rgba(241, 231, 210, 0.76) 70px,
        #fbf7ee 124px
      );
  }

  .services::before {
    top: 9px;
    right: -220px;
    width: 440px;
    opacity: 0.1;
  }
}

/* ---------- Real Sanufi wall hero: lamps removed, text between signs ---------- */

.hero {
  background: #a98b4a url("assets/hero-sig-wall-clean-v1.webp") center center / cover no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero__content {
  position: relative;
  z-index: 4;
  justify-items: center;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero__content::before {
  display: none;
}

.hero .eyebrow {
  color: rgba(43, 42, 33, 0.76);
  text-shadow: 0 1px 14px rgba(246, 241, 231, 0.34);
}

.hero .eyebrow__dot {
  background: #f6f1e7;
  box-shadow: 0 0 0 5px rgba(246, 241, 231, 0.36);
}

.hero h1 {
  max-width: 650px;
  color: #2b2a21;
  text-shadow: 0 2px 18px rgba(246, 241, 231, 0.22);
}

.hero h1 em {
  color: #fff;
  text-shadow: 0 2px 16px rgba(43, 42, 33, 0.24);
}

.hero__lead {
  max-width: 570px;
  color: rgba(43, 42, 33, 0.78);
  text-shadow: 0 1px 12px rgba(246, 241, 231, 0.18);
}

.hero__actions {
  justify-content: center;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  min-height: 0;
  background: none;
  transform: none;
  pointer-events: none;
}

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

.hero__visual::before,
.hero__visual::after {
  display: none;
  content: none;
}

.hero__badge,
.hero__availability {
  pointer-events: auto;
}

.hero__badge {
  top: 154px;
  right: max(24px, calc((100vw - 1180px) / 2));
}

.hero__availability {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 126px;
}

@media (max-width: 780px) {
  .hero {
    background-position: 50% center;
  }

  .hero__grid {
    justify-items: start;
    padding-top: 122px;
    padding-bottom: 132px;
  }

  .hero__content {
    justify-items: start;
    max-width: min(100%, 350px);
    margin: 0;
    text-align: left;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: stretch;
  }

  .hero__badge {
    top: auto;
    right: 14px;
    bottom: 92px;
  }

  .hero__availability {
    right: 14px;
    bottom: 28px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .topline__inner {
    gap: 8px;
    font-size: 0.64rem;
  }

  .topline__inner a {
    font-size: 0.62rem;
  }

  .hero__visual {
    min-height: 420px;
  }

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

  .qr-card__image {
    width: min(100%, 270px);
    margin-inline: auto;
  }

  .qr-card figcaption {
    text-align: center;
  }

  .hero__badge {
    width: 140px;
  }

  .hero__availability {
    right: 14px;
    bottom: 14px;
  }

  .trust-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-row {
    grid-template-columns: 80px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Sanufi gold visual redesign ---------- */

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline-color: #d9be78;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(52, 50, 37, 0.08);
}

.desktop-nav {
  color: #4c473a;
}

.button:hover {
  background: #a98b4a;
  color: #fffdf8;
}

.hero {
  background:
    radial-gradient(circle at 9% 13%, rgba(217, 190, 120, 0.24), transparent 30%),
    linear-gradient(145deg, #fffdf8 0%, #f8f1e2 56%, #efe2c6 100%);
}

.hero::before {
  border-color: rgba(169, 139, 74, 0.28);
  box-shadow: 0 0 0 28px rgba(169, 139, 74, 0.045);
}

.eyebrow__dot {
  background: #d9be78;
  box-shadow: 0 0 0 5px rgba(217, 190, 120, 0.24);
}

.hero h1 em::after {
  border-color: #d9be78;
}

.hero__lead {
  color: #6f6a5c;
}

.hero__note {
  color: #81786a;
}

.hero__visual {
  border-radius: 34px 34px 0 34px;
  background: #efe3cb;
  box-shadow: 0 30px 70px rgba(52, 50, 37, 0.14);
}

.hero__visual::after {
  background: linear-gradient(110deg, rgba(169, 139, 74, 0.12), transparent 42%, rgba(43, 42, 33, 0.1));
}

.hero__badge {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(52, 50, 37, 0.12);
}

.hero__badge span {
  color: #6f6a5c;
}

.pulse {
  background: #d9be78;
}

.pulse::after {
  border-color: #d9be78;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.trust-item span {
  color: #6f6a5c;
}

.services {
  overflow: hidden;
  background: #fbf7ee;
}

.mobile-section-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: -17px 0 16px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-section-hint b {
  font-size: 1.2rem;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 16px;
}

.service-showcase .service-card {
  position: relative;
  display: flex;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(52, 50, 37, 0.08);
  isolation: isolate;
  transform: translateZ(0);
}

.service-showcase .service-card:hover {
  background: inherit;
  box-shadow: 0 28px 60px rgba(52, 50, 37, 0.14);
  transform: translateY(-5px);
}

.service-showcase .service-card--photo {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  color: #fff;
}

.service-showcase .service-card--sky {
  grid-column: 8 / 13;
  grid-row: 1;
  background: linear-gradient(135deg, #efe2c6 0%, #fff8e8 100%);
}

.service-showcase .service-card--aqua {
  grid-column: 8 / 13;
  grid-row: 2;
  background: linear-gradient(135deg, #ddd1bd 0%, #f6f1e7 100%);
}

.service-showcase .service-card--ice {
  grid-column: 1 / 5;
  grid-row: 3;
  background: linear-gradient(145deg, #f1e7d2, #fffdf8);
}

.service-showcase .service-card--white {
  grid-column: 5 / 9;
  grid-row: 3;
  background: #fff;
}

.service-showcase .service-card--kids {
  grid-column: 9 / 13;
  grid-row: 3;
  background: linear-gradient(145deg, #f4e5c4, #fff8ec);
}

.service-card__media {
  position: absolute;
  inset: 0;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 45, 72, 0.02) 28%, rgba(3, 45, 72, 0.83) 100%);
  content: "";
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform 0.8s var(--ease);
}

.service-card--with-photo:hover .service-card__media img {
  transform: scale(1.035);
}

.service-showcase .service-card__number {
  z-index: 3;
  top: 22px;
  right: 24px;
  color: rgba(11, 52, 82, 0.48);
}

.service-showcase .service-card--with-photo .service-card__number {
  color: rgba(255, 255, 255, 0.78);
}

.service-card__art {
  position: absolute;
  z-index: 0;
  top: -29%;
  right: -5%;
  display: grid;
  width: 58%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(52, 50, 37, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.13);
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__art {
  transform: rotate(6deg) scale(1.04);
}

.service-card__art svg {
  width: 35%;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__art--sparkle svg {
  fill: rgba(217, 190, 120, 0.12);
}

.service-card__body {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 100%;
  padding: 25px 26px 23px;
}

.service-card--photo .service-card__body {
  padding: 34px 36px 32px;
}

.service-card__chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.service-showcase .service-card h3 {
  max-width: 340px;
  margin-bottom: 7px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.service-showcase .service-card--photo h3 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.service-showcase .service-card p {
  max-width: 380px;
  margin-bottom: 18px;
  color: #6f6a5c;
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-showcase .service-card--photo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.service-showcase .service-card--with-photo {
  color: #fff;
  background: #343225;
}

.service-showcase .service-card--with-photo h3,
.service-showcase .service-card--with-photo p,
.service-showcase .service-card--with-photo .service-card__body > a {
  color: #fff;
}

.service-showcase .service-card--with-photo p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 12px rgba(43, 42, 33, 0.26);
}

.service-showcase .service-card--with-photo h3 {
  text-shadow: 0 2px 20px rgba(43, 42, 33, 0.36);
}

.service-card--with-photo .service-card__media::after {
  background: linear-gradient(180deg, rgba(43, 42, 33, 0.02) 18%, rgba(43, 42, 33, 0.28) 48%, rgba(43, 42, 33, 0.94) 100%);
}

.service-card--sky .service-card__media img,
.service-card--aqua .service-card__media img,
.service-card--ice .service-card__media img,
.service-card--white .service-card__media img,
.service-card--kids .service-card__media img {
  object-position: center center;
}

.service-card--sky .service-card__media img {
  object-position: center 36%;
}

@media (min-width: 781px) {
  .service-showcase .service-card--ice .service-card__media img {
    object-position: center 38%;
  }
}

.service-showcase .service-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.69rem;
  font-weight: 800;
}

.service-showcase .service-card__body > a b {
  transition: transform 0.25s ease;
}

.service-showcase .service-card__body > a:hover b {
  transform: translate(2px, -2px);
}

.price-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(217, 190, 120, 0.32), transparent 28%),
    radial-gradient(circle at 15% 88%, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(135deg, #fbf7ee 0%, #eadfca 100%);
}

.price-section__panel {
  padding: clamp(26px, 4.2vw, 54px);
  border: 1px solid rgba(169, 139, 74, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 231, 0.86)),
    #f1e7d2;
  box-shadow: 0 24px 72px rgba(52, 50, 37, 0.1);
}

.price-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 34px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.price-section__heading h1,
.price-section__heading h2 {
  max-width: 860px;
  margin: 14px 0 0;
  font-size: clamp(2.35rem, 5.2vw, 5.45rem);
  line-height: 0.98;
}

.price-section__heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.price-sheet {
  position: relative;
  padding: clamp(10px, 1.7vw, 18px);
  overflow-x: auto;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.price-sheet__scroll {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  transition: max-height 0.55s var(--ease);
}

.price-sheet__scroll.is-expanded {
  max-height: 7200px;
}

.price-sheet__scroll::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 82%);
  pointer-events: none;
  content: "";
  transition: opacity 0.25s ease;
}

.price-sheet__scroll.is-expanded::after {
  opacity: 0;
}

.price-sheet__scroll img {
  width: min(760px, 100%);
  height: auto;
  margin: 0 auto;
  background: #fff;
}

.price-section--page {
  min-height: 100vh;
  padding-top: clamp(130px, 12vw, 178px);
}

.price-section--page .price-sheet__scroll {
  max-height: none;
  overflow: visible;
}

.price-section--page .price-sheet__scroll::after {
  display: none;
}

.price-page__intro {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.price-page__back {
  border: 0;
}

.price-toggle {
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.price-toggle b {
  transition: transform 0.25s ease;
}

.price-toggle[aria-expanded="true"] b {
  transform: rotate(180deg);
}

.reasons {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(217, 190, 120, 0.26), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f6f1e7 100%);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.reason-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(52, 50, 37, 0.08);
}

.reason-card > span {
  color: #a98b4a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.reason-card h3 {
  margin: auto 0 12px;
  color: #2b2a21;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.reason-card p {
  margin: 0;
  color: #6f6a5c;
  font-size: 0.82rem;
  line-height: 1.6;
}

.reason-card--accent {
  background: #343225;
  color: #fff;
}

.reason-card--accent h3,
.reason-card--accent > span {
  color: #fff8e8;
}

.reason-card--accent p {
  color: rgba(255, 248, 232, 0.76);
}

.reason-card--accent a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #fff8e8;
  font-size: 0.72rem;
  font-weight: 900;
}

.clarity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(169, 139, 74, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(241, 231, 210, 0.76)),
    #f1e7d2;
}

.clarity-panel__copy h3 {
  max-width: 680px;
  margin: 14px 0 14px;
  color: #2b2a21;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  line-height: 1;
}

.clarity-panel__copy p {
  max-width: 650px;
  margin: 0;
  color: #6f6a5c;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.clarity-panel__steps span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fffdf8;
  color: #343225;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.approach {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8), transparent 31%),
    linear-gradient(135deg, #fff8e8 0%, #ead9b6 100%);
}

.approach::before {
  display: none;
}

.approach__heading,
.specialists__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.52fr);
  align-items: end;
  gap: 48px;
}

.approach__heading .section-kicker,
.specialists__heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.approach__heading h2,
.specialists__heading h2 {
  max-width: 770px;
  margin: 0;
}

.approach__heading > p,
.specialists__heading > p {
  margin: 0 0 7px;
  color: #6f6a5c;
  font-size: 0.92rem;
  line-height: 1.7;
}

.approach__heading > p {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.section-kicker--light {
  color: var(--forest);
}

.approach__canvas {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-top: 58px;
}

.approach__visual {
  position: relative;
  min-height: 565px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #efe2c6;
  box-shadow: 0 24px 65px rgba(52, 50, 37, 0.1);
}

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

.approach__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 13px 16px 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.approach__visual figcaption b {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
}

.journey {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 65px rgba(52, 50, 37, 0.08);
  backdrop-filter: blur(12px);
}

.journey .steps {
  display: grid;
  gap: 12px;
}

.journey .steps li,
.journey .steps li:first-child {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 148px;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.journey .steps li:nth-child(2) {
  background: #f3ead7;
}

.journey .steps > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
}

.journey .steps h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.22rem;
}

.journey .steps p {
  margin: 0;
  color: #6f6a5c;
  font-size: 1rem;
  line-height: 1.58;
}

.button--approach {
  align-self: flex-start;
  min-height: 54px;
  margin-top: auto;
  padding: 0 23px;
}

.specialists {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #eee4d4 46%, #ddd1bd 100%);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 18px;
  margin-top: 58px;
}

.team-orbit {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.74) 0 23%, transparent 23.5%),
    linear-gradient(135deg, #f6f1e7, #ddd1bd);
  box-shadow: 0 24px 65px rgba(52, 50, 37, 0.09);
}

.team-orbit::before,
.team-orbit::after {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.team-orbit::before {
  width: 410px;
  height: 410px;
}

.team-orbit::after {
  width: 590px;
  height: 590px;
}

.team-orbit__center {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  display: grid;
  width: 185px;
  height: 185px;
  padding: 25px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 50px rgba(52, 50, 37, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.team-orbit__center svg {
  width: 42px;
  height: 42px;
  fill: #f1e7d2;
  stroke: var(--forest);
  stroke-width: 1.25;
}

.team-orbit__center strong {
  margin: -8px 0 -10px;
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 4.25rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.team-orbit__center span {
  max-width: 105px;
  color: #6f6a5c;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-orbit .specialist-tags {
  position: absolute;
  z-index: 3;
  inset: 0;
  max-width: none;
  margin: 0;
  pointer-events: none;
}

.team-orbit .specialist-tags li {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid rgba(52, 50, 37, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(52, 50, 37, 0.09);
  color: var(--forest);
  font-size: 0.69rem;
  white-space: nowrap;
}

.team-orbit .specialist-tags li:nth-child(1) { top: 9%; left: 8%; }
.team-orbit .specialist-tags li:nth-child(2) { top: 9%; right: 8%; }
.team-orbit .specialist-tags li:nth-child(3) { top: 34%; left: 3%; }
.team-orbit .specialist-tags li:nth-child(4) { top: 34%; right: 3%; }
.team-orbit .specialist-tags li:nth-child(5) { bottom: 28%; left: 5%; }
.team-orbit .specialist-tags li:nth-child(6) { right: 5%; bottom: 28%; }
.team-orbit .specialist-tags li:nth-child(7) { bottom: 10%; left: 14%; }
.team-orbit .specialist-tags li:nth-child(8) { right: 12%; bottom: 10%; }

.team-orbit .arrow-link {
  position: absolute;
  z-index: 4;
  bottom: 27px;
  left: 50%;
  border: 0;
  border-radius: 999px;
  padding: 12px 17px;
  background: var(--forest);
  color: #fff;
  transform: translateX(-50%);
  white-space: nowrap;
}

.care-grid--team {
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.52fr);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 0;
  padding: 14px 14px 22px;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 22px 58px rgba(52, 50, 37, 0.1);
  backdrop-filter: blur(10px);
}

.doctor-card--lead {
  background: rgba(255, 253, 248, 0.88);
  color: #2b2a21;
}

.doctor-card__photo {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  border-radius: 22px;
  background: #ddd1bd;
  color: #343225;
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-card__photo span {
  font-family: "Onest", "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.doctor-card__photo small {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: #343225;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.doctor-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 4px;
}

.doctor-card__role {
  margin: 14px 0 0;
  color: #a98b4a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.doctor-card--lead .doctor-card__role {
  color: #a98b4a;
}

.doctor-card h3 {
  margin: 0;
  color: #2b2a21;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.doctor-card h3 span {
  display: block;
}

.doctor-card--lead h3 {
  color: #2b2a21;
}

.doctor-card__experience {
  margin: 12px 0 0;
  color: #343225;
  font-size: 0.98rem;
  font-weight: 800;
}

.doctor-card--lead .doctor-card__experience {
  color: #343225;
}

.doctor-card__desc {
  margin: 14px 0 0;
  color: #6f6a5c;
  font-size: 0.78rem;
  line-height: 1.6;
}

.doctor-card--lead .doctor-card__desc {
  color: rgba(255, 248, 232, 0.78);
}

.finance-card--visual {
  min-height: 565px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(52, 50, 37, 0.09);
}

.finance-card--visual .finance-card__top {
  min-height: 330px;
  background: linear-gradient(155deg, #d9be78, #f1e2bd);
}

.finance-card--visual .finance-card__top::after {
  border-color: rgba(52, 50, 37, 0.14);
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.16), 0 0 0 90px rgba(255, 255, 255, 0.1);
}

.finance-card--visual .finance-card__top strong {
  color: var(--forest-deep);
}

.finance-card--visual .finance-card__bottom {
  padding: 30px 30px 34px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #d9be78;
}

.booking-form input[type="checkbox"] {
  accent-color: var(--sage);
}

.footer__bottom {
  color: #bdb4a4;
}

@media (max-width: 1040px) {
  .service-showcase {
    grid-auto-rows: 225px;
  }

  .price-section__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-section__heading p {
    max-width: 640px;
  }

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

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

  .approach__canvas {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  }

  .approach__visual,
  .journey,
  .team-orbit,
  .finance-card--visual {
    min-height: 530px;
  }

  .journey {
    padding: 22px;
  }

  .care-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(285px, 0.65fr);
  }

  .care-grid--team {
    grid-template-columns: 1fr;
  }

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

  .team-orbit .specialist-tags li:nth-child(3),
  .team-orbit .specialist-tags li:nth-child(5) {
    left: 2%;
  }

  .team-orbit .specialist-tags li:nth-child(4),
  .team-orbit .specialist-tags li:nth-child(6) {
    right: 2%;
  }
}

@media (max-width: 780px) {
  .hero {
    background: linear-gradient(165deg, #fffdf8 0%, #f6f1e7 100%);
  }

  .price-section__panel {
    padding: 20px 14px 18px;
    border-radius: 24px;
  }

  .price-section__heading h1,
  .price-section__heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .price-section__heading p {
    font-size: 0.86rem;
  }

  .price-sheet {
    margin: 0 -2px;
    padding: 8px;
    border-radius: 18px;
  }

  .price-sheet__scroll {
    min-width: 680px;
    max-height: 560px;
    border-radius: 12px;
  }

  .price-sheet__scroll.is-expanded {
    max-height: 6900px;
  }

  .price-sheet__scroll img {
    width: 100%;
    max-width: none;
  }

  .price-section--page {
    padding-top: 112px;
  }

  .price-section--page .price-sheet__scroll {
    max-height: none;
  }

  .price-page__back {
    width: 100%;
    justify-content: center;
  }

  .price-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    aspect-ratio: 1586 / 992;
    min-height: 0;
    border-radius: 26px;
    box-shadow: 0 24px 55px rgba(52, 50, 37, 0.12);
  }

  .hero__visual picture {
    position: absolute;
    inset: 0;
  }

  .hero__visual img {
    object-position: 61% center;
  }

  .services .section-heading {
    margin-bottom: 32px;
  }

  .services .section-heading > p,
  .specialists__heading > p {
    display: none;
  }

  .mobile-section-hint {
    display: flex;
  }

  .reasons .section-heading {
    margin-bottom: 24px;
  }

  .reason-grid {
    display: grid;
    grid-auto-columns: minmax(272px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin: 0 -14px 0 0;
    padding: 2px 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reason-grid::-webkit-scrollbar {
    display: none;
  }

  .reason-card {
    min-height: 245px;
    padding: 22px;
    scroll-snap-align: start;
  }

  .clarity-panel {
    margin-top: 12px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .clarity-panel__copy h3 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .clarity-panel__copy p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .clarity-panel__steps {
    grid-template-columns: 1fr;
  }

  .clarity-panel__steps span {
    min-height: 54px;
  }

  .specialists .mobile-section-hint {
    margin: 14px 0 16px;
  }

  .service-showcase {
    display: grid;
    grid-auto-columns: minmax(278px, 82vw);
    grid-auto-flow: column;
    grid-auto-rows: 385px;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .service-showcase::-webkit-scrollbar,
  .team-list::-webkit-scrollbar,
  .journey .steps::-webkit-scrollbar {
    display: none;
  }

  .service-showcase .service-card,
  .service-showcase .service-card--photo,
  .service-showcase .service-card--sky,
  .service-showcase .service-card--aqua,
  .service-showcase .service-card--ice,
  .service-showcase .service-card--white,
  .service-showcase .service-card--kids {
    grid-column: auto;
    grid-row: auto;
    min-height: 385px;
    scroll-snap-align: start;
  }

  .service-card__art {
    top: -6%;
    right: -8%;
    width: 87%;
  }

  .service-card__body,
  .service-card--photo .service-card__body {
    padding: 26px 24px 25px;
  }

  .service-showcase .service-card h3 {
    max-width: 240px;
    font-size: 1.55rem;
  }

  .service-showcase .service-card--photo h3 {
    font-size: 2.55rem;
  }

  .service-card__media img {
    object-position: 58% center;
  }

  .service-showcase .service-card--aqua .service-card__media img {
    object-position: 68% center;
  }

  .approach__heading,
  .specialists__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .approach__heading .section-kicker,
  .specialists__heading .section-kicker {
    grid-column: auto;
    margin-bottom: -5px;
  }

  .approach__heading > p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.58;
  }

  .approach__canvas {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 35px;
  }

  .approach__visual {
    min-height: 345px;
  }

  .approach__visual img {
    object-position: center 44%;
  }

  .approach__visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 56px;
  }

  .journey {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 25px;
  }

  .journey .mobile-section-hint {
    margin: 0 0 12px;
  }

  .journey .steps {
    display: grid;
    grid-auto-columns: 82vw;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    margin-right: -18px;
    padding: 1px 18px 7px 0;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .journey .steps li,
  .journey .steps li:first-child {
    min-height: 172px;
    scroll-snap-align: start;
  }

  .button--approach {
    width: 100%;
    margin-top: 14px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 35px;
  }

  .team-list {
    display: grid;
    grid-auto-columns: minmax(290px, 84vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin: 12px -14px 0 0;
    padding: 2px 14px 16px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: 218px;
    padding: 13px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .doctor-card__photo {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: 16px;
  }

  .doctor-card__photo small {
    right: 9px;
    bottom: 9px;
    padding: 6px 8px;
    font-size: 0.55rem;
  }

  .doctor-card__role {
    margin-bottom: 9px;
    font-size: 0.59rem;
    letter-spacing: 0.06em;
  }

  .doctor-card h3 {
    font-size: clamp(1.34rem, 6vw, 1.9rem);
  }

  .doctor-card__experience {
    margin-top: 9px;
    font-size: 0.82rem;
  }

  .doctor-card__desc {
    margin-top: 10px;
    font-size: 0.72rem;
    line-height: 1.48;
  }

  .team-orbit {
    min-height: 455px;
  }

  .team-orbit::before {
    width: 300px;
    height: 300px;
  }

  .team-orbit::after {
    width: 435px;
    height: 435px;
  }

  .team-orbit__center {
    width: 145px;
    height: 145px;
    padding: 18px;
  }

  .team-orbit__center svg {
    width: 34px;
    height: 34px;
  }

  .team-orbit__center strong {
    font-size: 3.25rem;
  }

  .team-orbit__center span {
    font-size: 0.52rem;
  }

  .team-orbit .specialist-tags li {
    padding: 8px 10px;
    font-size: 0.57rem;
  }

  .team-orbit .specialist-tags li:nth-child(1) { top: 8%; left: 5%; }
  .team-orbit .specialist-tags li:nth-child(2) { top: 8%; right: 5%; }
  .team-orbit .specialist-tags li:nth-child(3) { top: 29%; left: 2%; }
  .team-orbit .specialist-tags li:nth-child(4) { top: 29%; right: 2%; }
  .team-orbit .specialist-tags li:nth-child(5) { bottom: 28%; left: 2%; }
  .team-orbit .specialist-tags li:nth-child(6) { right: 2%; bottom: 28%; }
  .team-orbit .specialist-tags li:nth-child(7) { bottom: 12%; left: 4%; }
  .team-orbit .specialist-tags li:nth-child(8) { right: 4%; bottom: 12%; }

  .team-orbit .arrow-link {
    bottom: 17px;
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    font-size: 0.65rem;
  }

  .finance-card--visual {
    min-height: 0;
  }

  .finance-card--visual .finance-card__top {
    min-height: 245px;
  }

  .finance-card--visual .finance-card__bottom {
    padding: 27px 25px 30px;
  }
}

@media (max-width: 420px) {
  .service-showcase {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .approach__visual {
    min-height: 320px;
  }

  .journey .steps {
    grid-auto-columns: 82vw;
  }

  .team-orbit {
    min-height: 430px;
  }

  .team-orbit .specialist-tags li:nth-child(8) {
    right: 2%;
  }

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

  .doctor-card__photo {
    min-height: 260px;
    aspect-ratio: 1 / 1.08;
  }
}

/* ---------- Full-screen editorial hero, Smile Dent-inspired ---------- */

.topline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 42;
  background: linear-gradient(180deg, rgba(43, 42, 33, 0.86), rgba(43, 42, 33, 0.38));
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  z-index: 41;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(43, 42, 33, 0.38), rgba(43, 42, 33, 0));
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: none;
}

.site-header .brand__mark {
  fill: #fffdf8;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-header .brand__spark {
  stroke: #a98b4a;
}

.site-header .brand small,
.site-header .desktop-nav,
.site-header .lang-switch__button {
  color: rgba(255, 255, 255, 0.82);
}

.site-header .desktop-nav a::after {
  background: #d9be78;
}

.site-header .lang-switch {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.site-header .lang-switch__button.is-active {
  background: #fffdf8;
  color: #2b2a21;
}

.site-header .button--small {
  background: rgba(169, 139, 74, 0.9);
  color: #fff;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding: 0;
  background: #2b2a21;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 10, 8, 0.5) 0%, rgba(11, 10, 8, 0.08) 34%, rgba(11, 10, 8, 0.58) 100%);
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: 138px;
  padding-bottom: 164px;
}

.hero__content {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.hero__content::before {
  position: absolute;
  z-index: -1;
  width: min(760px, 72vw);
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(15, 14, 10, 0.28), rgba(15, 14, 10, 0));
  content: "";
  filter: blur(10px);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow__dot {
  background: #d9be78;
  box-shadow: 0 0 0 5px rgba(217, 190, 120, 0.22);
}

.hero h1 {
  max-width: 920px;
  margin: 28px 0 22px;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero h1 em {
  color: #d9be78;
  text-shadow: 0 10px 30px rgba(169, 139, 74, 0.34);
}

.hero__lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.hero__actions {
  justify-content: center;
}

.hero .button--large {
  background: #a98b4a;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.hero .button--large:hover {
  background: #d9be78;
  color: #2b2a21;
}

.hero .text-link {
  color: #fff;
}

.hero .text-link__icon {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero .text-link small,
.hero__note {
  color: rgba(255, 255, 255, 0.66);
}

.hero__visual {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  min-height: 0;
  border-radius: 0;
  background: #2b2a21 url("assets/hero-clinic-gold-v2.webp") left center / cover no-repeat;
  box-shadow: none;
  transform: translateX(-50%);
}

.hero__visual.reveal,
.hero__visual.reveal.is-visible {
  opacity: 1;
  transform: translateX(-50%);
}

.hero__visual::after {
  display: none;
}

.hero__visual picture,
.hero__visual img {
  display: none;
}

.hero__badge {
  top: 154px;
  right: max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.hero__availability {
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 126px;
  background: rgba(43, 42, 33, 0.86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.trust-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(43, 42, 33, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-item:first-child {
  padding-left: max(92px, calc((100vw - 1180px) / 2 + 28px));
}

.trust-item strong {
  color: #d9be78;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .site-header {
    top: 30px;
  }

  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
  }

  .menu-toggle span {
    background: #fff;
  }

  .mobile-nav {
    background: rgba(43, 42, 33, 0.96);
    color: #fff;
  }
}

@media (max-width: 780px) {
  .topline__inner {
    min-height: 32px;
  }

  .topline__hours {
    display: none;
  }

  .hero {
    min-height: 100svh;
    background: #2b2a21;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(12, 11, 8, 0.58) 0%, rgba(12, 11, 8, 0.12) 36%, rgba(12, 11, 8, 0.66) 100%);
  }

  .hero__grid {
    min-height: 100svh;
    padding-top: 122px;
    padding-bottom: 132px;
  }

  .hero__content {
    align-content: center;
    justify-items: start;
    text-align: left;
  }

  .hero .eyebrow {
    max-width: 100%;
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero .eyebrow__dot {
    flex: 0 0 auto;
  }

  .hero .eyebrow span:last-child {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.02rem, 9.6vw, 3.25rem);
    line-height: 0.98;
  }

  .hero__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero__actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero .button--large {
    width: 100%;
  }

  .hero__visual {
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__visual picture {
    position: absolute;
    inset: 0;
  }

  .hero__visual img {
    object-position: 48% center;
  }

  .hero__visual {
    background-position: 52% center;
  }

  .hero__badge {
    top: auto;
    right: 14px;
    bottom: 92px;
    width: 138px;
    min-height: 72px;
  }

  .hero__availability {
    right: 14px;
    bottom: 28px;
    max-width: calc(100% - 116px);
  }

  .trust-bar {
    display: none;
  }
}

/* ---------- Clean gold wall hero with vertical Sanufi sign ---------- */

.topline {
  background: transparent;
  color: rgba(43, 42, 33, 0.82);
}

.site-header {
  background: transparent;
  color: #2b2a21;
}

.site-header .brand__mark {
  fill: #2b2a21;
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.28));
}

.site-header .brand__spark {
  stroke: #f6f1e7;
}

.site-header .brand small,
.site-header .desktop-nav,
.site-header .lang-switch__button {
  color: rgba(43, 42, 33, 0.76);
}

.site-header .lang-switch {
  border-color: rgba(43, 42, 33, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.site-header .lang-switch__button.is-active {
  background: #2b2a21;
  color: #fff;
}

.site-header .button--small {
  background: #2b2a21;
  color: #fff;
}

.hero {
  background:
    radial-gradient(circle at 72% 22%, rgba(246, 241, 231, 0.34), rgba(246, 241, 231, 0) 26%),
    radial-gradient(circle at 86% 76%, rgba(217, 190, 120, 0.26), rgba(217, 190, 120, 0) 36%),
    linear-gradient(135deg, #a98b4a 0%, #b7974f 46%, #c5aa65 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 58% 46%, rgba(255, 242, 191, 0.16), transparent 30%);
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.72;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero__grid {
  grid-template-columns: minmax(0, 620px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 120px);
}

.hero__content {
  position: relative;
  z-index: 4;
  justify-items: start;
  max-width: 650px;
  margin: 0;
  text-align: left;
}

.hero__content::before {
  display: none;
}

.hero .eyebrow {
  color: rgba(43, 42, 33, 0.8);
  text-shadow: none;
}

.hero .eyebrow__dot {
  background: #f6f1e7;
  box-shadow: 0 0 0 5px rgba(246, 241, 231, 0.34);
}

.hero h1 {
  max-width: 640px;
  color: #2b2a21;
  text-shadow: none;
}

.hero h1 em {
  color: #f6f1e7;
  text-shadow: 0 2px 12px rgba(43, 42, 33, 0.2);
}

.hero__lead {
  max-width: 560px;
  color: rgba(43, 42, 33, 0.78);
  text-shadow: none;
}

.hero__actions {
  justify-content: flex-start;
}

.hero .button--large {
  background: #2b2a21;
  color: #fff;
  box-shadow: 0 18px 42px rgba(43, 42, 33, 0.24);
}

.hero .button--large:hover {
  background: #343225;
  color: #fff;
}

.hero .text-link {
  color: #2b2a21;
}

.hero .text-link__icon {
  border-color: rgba(43, 42, 33, 0.28);
  color: #2b2a21;
  background: rgba(246, 241, 231, 0.16);
}

.hero .text-link small,
.hero__note {
  color: rgba(43, 42, 33, 0.62);
}

.hero__visual {
  z-index: 3;
  background: none;
}

.hero__visual::before {
  position: absolute;
  top: 50%;
  left: clamp(720px, 70vw, 1050px);
  display: block;
  color: #16140f;
  content: "SANUFI DENT";
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(4.2rem, 6.2vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 22px rgba(255, 255, 255, 0.82),
    0 0 42px rgba(255, 255, 255, 0.62),
    0 12px 24px rgba(48, 32, 10, 0.46);
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
}

.hero__visual::after {
  position: absolute;
  top: 6%;
  left: clamp(720px, 70vw, 1050px);
  display: block;
  width: clamp(118px, 15vw, 210px);
  height: 88%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0));
  content: "";
  filter: blur(22px);
  opacity: 0.62;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero__badge {
  right: max(24px, calc((100vw - 1180px) / 2));
}

.hero__availability {
  right: max(24px, calc((100vw - 1180px) / 2));
}

.trust-bar {
  background: rgba(246, 241, 231, 0.22);
  color: #2b2a21;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-item {
  border-color: rgba(43, 42, 33, 0.12);
}

.trust-item strong {
  color: #2b2a21;
}

.trust-item span {
  color: rgba(43, 42, 33, 0.68);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual::before {
    left: auto;
    right: 8vw;
    font-size: clamp(3.5rem, 11vw, 5.6rem);
    opacity: 0.72;
  }
}

@media (max-width: 780px) {
  .hero {
    background:
      radial-gradient(circle at 82% 28%, rgba(246, 241, 231, 0.3), rgba(246, 241, 231, 0) 36%),
      linear-gradient(145deg, #a98b4a 0%, #b7974f 48%, #c5aa65 100%);
  }

  .hero::after {
    display: none;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__content::before {
    left: -80px;
    width: 118vw;
    height: 430px;
  }

  .hero__visual::before {
    top: 50%;
    right: -216px;
    left: auto;
    font-size: clamp(3.35rem, 14vw, 4.4rem);
    opacity: 0.42;
    transform: translateY(-50%) rotate(90deg);
  }

  .hero__visual::after {
    top: 10%;
    right: -4px;
    left: auto;
    width: 110px;
    height: 78%;
    opacity: 0.44;
    transform: none;
  }
}

/* ---------- Final hero: real edited wall photo, text between real signs ---------- */

.hero {
  background: #a98b4a url("assets/hero-sig-wall-clean-v1.webp") 46% center / cover no-repeat !important;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero__grid {
  grid-template-columns: 1fr !important;
  align-items: center;
  justify-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero__content {
  justify-items: center;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero__content::before {
  display: none !important;
}

.hero h1 {
  color: #11100c;
  font-weight: 900;
  letter-spacing: -0.012em;
  -webkit-text-stroke: 0.35px rgba(17, 16, 12, 0.28);
  filter: saturate(0.95) contrast(1.08);
  mix-blend-mode: multiply;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.62),
    0 0 12px rgba(255, 255, 255, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 18px rgba(43, 42, 33, 0.16);
}

.hero h1 em {
  color: #fff8e8;
  -webkit-text-stroke: 0;
  mix-blend-mode: normal;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.88),
    0 0 18px rgba(255, 255, 255, 0.58),
    0 2px 18px rgba(43, 42, 33, 0.22);
}

.hero__actions {
  justify-content: center;
}

.hero__visual {
  position: absolute;
  inset: 0;
  width: auto;
  background: none !important;
  transform: none !important;
  pointer-events: none;
}

.hero__visual.reveal,
.hero__visual.reveal.is-visible {
  opacity: 1;
  transform: none !important;
}

.hero__visual::before,
.hero__visual::after {
  display: none !important;
  content: none !important;
}

.hero__badge,
.hero__availability {
  display: none !important;
}

@media (max-width: 780px) {
  .hero {
    background-position: 46% center !important;
  }

  .hero__grid {
    justify-items: start;
    padding-top: 122px;
    padding-bottom: 132px;
  }

  .hero__content {
    justify-items: start;
    max-width: min(100%, 350px);
    margin: 0;
    text-align: left;
  }

  .hero__actions {
    justify-content: stretch;
  }
}

/* ---------- Final hero readability pass ---------- */

.hero .eyebrow {
  color: rgba(17, 16, 12, 0.82) !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.38),
    0 1px 8px rgba(255, 255, 255, 0.22);
}

.hero__lead {
  color: rgba(17, 16, 12, 0.82) !important;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.62;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.3),
    0 1px 10px rgba(255, 255, 255, 0.18);
}

.hero .text-link small,
.hero__note {
  color: rgba(17, 16, 12, 0.76) !important;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.18);
}

.hero .text-link small {
  font-size: 0.84rem;
}

.hero__note {
  font-size: 0.88rem;
}

.trust-item span {
  color: rgba(17, 16, 12, 0.78) !important;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 780px) {
  .hero .eyebrow {
    font-size: 0.76rem;
    line-height: 1.4;
    letter-spacing: 0.055em;
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .hero .text-link small {
    font-size: 0.78rem;
  }

  .hero__note {
    font-size: 0.8rem;
  }
}

/* ---------- Mobile hero crop: keep the left wall sign visible ---------- */

@media (max-width: 780px) {
  .hero {
    background: #a98b4a url("assets/hero-sig-wall-clean-v1.webp") 33% 0% / auto 112% no-repeat !important;
  }

  .hero::before {
    display: none !important;
    content: none !important;
  }

  .hero__grid {
    padding-top: 120px;
    padding-bottom: 118px;
  }

  .hero__content {
    max-width: calc(100% - 136px);
    margin-left: auto;
    padding-left: 0;
  }

  .hero .eyebrow {
    max-width: 270px;
  }

  .hero h1 {
    font-size: clamp(1.86rem, 7.8vw, 2.58rem);
  }

  .hero__actions {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .hero {
    background-size: auto 112% !important;
    background-position: 32.5% 0% !important;
  }

  .hero__content {
    max-width: calc(100% - 124px);
  }
}

@media (min-width: 430px) and (max-width: 780px) {
  .hero {
    background-size: auto 112% !important;
    background-position: 33.5% 0% !important;
  }

  .hero__content {
    max-width: calc(100% - 156px);
  }
}

/* ---------- Desktop hero alignment: readable text between the real signs ---------- */

@media (min-width: 781px) {
  .hero {
    background-position: center center !important;
  }

  .hero__grid {
    min-height: clamp(720px, calc(100vh - 92px), 900px);
    padding-top: clamp(150px, 17vh, 190px);
    padding-bottom: clamp(82px, 10vh, 112px);
  }

  .hero__content {
    max-width: min(38vw, 610px);
  }

  .hero .eyebrow {
    color: rgba(255, 250, 236, 0.96) !important;
    font-size: clamp(0.98rem, 1.05vw, 1.16rem);
    font-weight: 900;
    letter-spacing: 0.09em;
    text-shadow:
      0 2px 8px rgba(43, 42, 33, 0.58),
      0 0 22px rgba(43, 42, 33, 0.34);
  }

  .hero .eyebrow__dot {
    background: #fff8e8;
    box-shadow:
      0 0 0 5px rgba(255, 248, 232, 0.34),
      0 1px 10px rgba(43, 42, 33, 0.24);
  }

  .hero h1 {
    max-width: 590px;
    margin: 34px auto 30px;
    font-size: clamp(3.25rem, 3.78vw, 4.55rem);
    line-height: 1.03;
  }

  .hero h1 em {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 0.08em;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 em::after {
    right: 0.06em;
    bottom: -0.02em;
    left: 0.08em;
    border-top-color: rgba(255, 250, 236, 0.76);
    box-shadow: 0 2px 12px rgba(43, 42, 33, 0.22);
  }

  html[lang="ro"] .hero h1 {
    max-width: 560px;
    font-size: clamp(2.9rem, 3.26vw, 4rem);
  }

  .hero__lead {
    max-width: 560px;
    margin-right: auto;
    margin-bottom: 32px;
    margin-left: auto;
    color: rgba(255, 250, 236, 0.96) !important;
    font-size: clamp(1.08rem, 1.14vw, 1.24rem);
    font-weight: 750;
    line-height: 1.55;
    text-align: center;
    text-shadow:
      0 2px 8px rgba(43, 42, 33, 0.62),
      0 0 22px rgba(43, 42, 33, 0.32);
  }

  @media (max-width: 1500px) {
    .hero__content {
      max-width: min(38vw, 520px);
    }

    .hero h1 {
      max-width: 520px;
      font-size: clamp(2.72rem, 3.38vw, 3.62rem);
    }

    html[lang="ro"] .hero h1 {
      max-width: 500px;
      font-size: clamp(2.46rem, 3.08vw, 3.24rem);
    }

    .hero__lead {
      max-width: 520px;
      font-size: clamp(1rem, 1.05vw, 1.12rem);
    }
  }

  .hero__actions {
    justify-content: center;
    gap: 28px;
  }

  .hero .text-link small,
  .hero .text-link strong,
  .hero__note {
    color: rgba(255, 250, 236, 0.96) !important;
    text-shadow:
      0 2px 8px rgba(43, 42, 33, 0.62),
      0 0 18px rgba(43, 42, 33, 0.3);
  }

  .hero .text-link small {
    font-size: 0.92rem;
    font-weight: 800;
  }

  .hero .text-link strong {
    font-size: 1.12rem;
    font-weight: 900;
  }

  .hero__note {
    font-size: 0.96rem;
    font-weight: 800;
  }

  .hero .text-link__icon {
    border-color: rgba(255, 250, 236, 0.54);
    color: #fff8e8;
    background: rgba(43, 42, 33, 0.12);
    box-shadow: 0 10px 24px rgba(43, 42, 33, 0.18);
  }

  .topline,
  .topline a,
  .site-header .brand strong,
  .site-header .brand small,
  .site-header .desktop-nav,
  .site-header .desktop-nav a,
  .site-header .lang-switch__button:not(.is-active) {
    color: rgba(255, 250, 236, 0.96) !important;
    text-shadow:
      0 2px 8px rgba(43, 42, 33, 0.58),
      0 0 18px rgba(43, 42, 33, 0.28);
  }

  .site-header .brand__mark {
    fill: rgba(255, 250, 236, 0.96) !important;
    filter: drop-shadow(0 6px 14px rgba(43, 42, 33, 0.28));
  }

  .site-header .brand__spark {
    stroke: #2b2a21 !important;
  }
}

@media (max-width: 780px) {
  .topline,
  .topline a,
  .site-header .brand small,
  .hero .eyebrow,
  .hero__lead,
  .hero .text-link small,
  .hero .text-link strong,
  .hero__note {
    color: rgba(255, 250, 236, 0.96) !important;
    text-shadow:
      0 2px 8px rgba(43, 42, 33, 0.62),
      0 0 18px rgba(43, 42, 33, 0.3);
  }

  .hero .eyebrow__dot {
    background: #fff8e8;
    box-shadow:
      0 0 0 5px rgba(255, 248, 232, 0.34),
      0 1px 10px rgba(43, 42, 33, 0.24);
  }
}

/* ---------- Final hero corridor lock: keep every text line between the wall signs ---------- */

@media (min-width: 781px) {
  .hero {
    background-position: 42% center !important;
  }

  .hero__content {
    width: min(35vw, 580px);
    max-width: min(35vw, 580px);
    transform: translate(clamp(-206px, -9.6vw, -146px), clamp(-36px, -3vh, -22px));
  }

  .hero .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__note {
    width: 100%;
    max-width: 100%;
  }

  .hero .eyebrow {
    justify-content: center;
    font-size: clamp(1.04rem, 1.1vw, 1.28rem);
    line-height: 1.25;
    white-space: normal;
  }

  .hero h1 {
    margin: 30px auto 26px;
    font-size: clamp(3.72rem, 4.18vw, 5.12rem);
    line-height: 1.02;
  }

  html[lang="ro"] .hero h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 3.38vw, 4.1rem);
    line-height: 1.04;
  }

  .hero__lead {
    margin-bottom: 30px;
    font-size: clamp(1.22rem, 1.24vw, 1.42rem);
    line-height: 1.42;
  }

  .hero__actions {
    justify-content: center;
    gap: 24px;
  }

  .hero .button--large {
    min-width: 310px;
    min-height: 62px;
    padding-right: 28px;
    padding-left: 28px;
    font-size: 0.98rem;
  }

  .hero .text-link {
    flex: 0 0 auto;
  }

  .hero__note {
    margin-top: 16px;
    font-size: 1.08rem;
    line-height: 1.35;
  }
}

@media (min-width: 781px) and (max-width: 1500px) {
  .hero {
    background-position: 43% center !important;
  }

  .hero__content {
    width: min(34vw, 500px);
    max-width: min(34vw, 500px);
    transform: translate(clamp(-128px, -6.8vw, -92px), clamp(-26px, -2.6vh, -16px));
  }

  .hero h1 {
    font-size: clamp(3.02rem, 3.58vw, 3.88rem);
  }

  html[lang="ro"] .hero h1 {
    font-size: clamp(2.62rem, 3.08vw, 3.28rem);
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: clamp(1.08rem, 1.14vw, 1.18rem);
  }

  .hero .button--large {
    min-width: 276px;
    min-height: 58px;
    font-size: 0.92rem;
  }
}

@media (max-width: 780px) {
  .hero .eyebrow {
    font-size: clamp(0.9rem, 3.25vw, 1.08rem);
    line-height: 1.22;
  }

  .hero h1 {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: clamp(2.02rem, 8.3vw, 2.86rem);
    line-height: 1.03;
  }

  html[lang="ro"] .hero h1 {
    font-size: clamp(1.9rem, 7.65vw, 2.62rem);
  }

  .hero h1 em {
    font-size: 1.08em;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: clamp(1.06rem, 3.75vw, 1.22rem);
    line-height: 1.42;
  }

  .hero .button--large {
    min-height: 58px;
    font-size: 0.98rem;
  }

  .hero__actions {
    gap: 16px;
  }

  .hero .text-link small {
    font-size: 1rem;
  }

  .hero .text-link strong {
    font-size: 1.34rem;
  }

  .hero__note {
    margin-top: 14px;
    padding-right: 16px;
    font-size: 0.98rem;
    line-height: 1.32;
  }
}

/* ---------- Final trust strip height: keep hero note readable ---------- */

.trust-bar {
  min-height: 74px;
}

.trust-item {
  min-height: 74px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.trust-item strong {
  font-size: clamp(1.66rem, 2.35vw, 2.18rem);
}

.trust-item span {
  font-size: 0.68rem;
  line-height: 1.22;
}

@media (min-width: 781px) {
  .hero__note {
    margin-top: 10px;
    padding-bottom: 82px;
  }
}

@media (max-width: 780px) {
  .trust-bar {
    min-height: 66px;
  }

  .trust-item {
    min-height: 66px;
    padding: 9px 13px;
  }

  .trust-item strong {
    font-size: 1.48rem;
  }

  .trust-item span {
    max-width: 92px;
    font-size: 0.58rem;
    line-height: 1.18;
  }

  .hero__note {
    padding-bottom: 134px;
  }
}

body[data-page="prices"] .site-header,
body[data-page="prices"] .site-header .brand strong,
body[data-page="prices"] .site-header .brand small,
body[data-page="prices"] .site-header .desktop-nav,
body[data-page="prices"] .site-header .desktop-nav a,
body[data-page="prices"] .site-header .lang-switch__button:not(.is-active) {
  color: rgba(43, 42, 33, 0.9) !important;
  text-shadow: none !important;
}

body[data-page="prices"] .site-header .brand__mark {
  fill: #2b2a21 !important;
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.38));
}

body[data-page="prices"] .site-header .brand__spark {
  stroke: #f6f1e7 !important;
}

body[data-page="prices"] .site-header .desktop-nav a::after {
  background: #a98b4a;
}

body[data-page="prices"] .site-header .lang-switch {
  border-color: rgba(43, 42, 33, 0.22);
  background: rgba(255, 255, 255, 0.32);
}

body[data-page="prices"] .site-header .lang-switch__button.is-active {
  background: #2b2a21;
  color: #fff;
}

/* ---------- Dental line art and warm section flow ---------- */

.services,
.reasons,
.approach,
.specialists {
  position: relative;
  isolation: isolate;
}

.services > .shell,
.reasons > .shell,
.approach > .shell,
.specialists > .shell {
  position: relative;
  z-index: 2;
}

.services {
  background:
    radial-gradient(circle at 78% 5%, rgba(255, 238, 177, 0.32), transparent 29%),
    radial-gradient(circle at 14% 9%, rgba(52, 50, 37, 0.24), transparent 28%),
    linear-gradient(
      180deg,
      #8d6b35 0,
      #a98b4a 112px,
      #c5a865 255px,
      #e5d2aa 455px,
      #f6f1e7 100%
    );
}

.services .section-kicker,
.services .section-heading h2 {
  color: var(--forest-deep);
}

.services .section-heading > p {
  color: rgba(43, 42, 33, 0.74);
}

.services::after,
.reasons::before,
.approach::after {
  position: absolute;
  z-index: 1;
  width: min(760px, 53vw);
  aspect-ratio: 1400 / 300;
  background: url("assets/dental-line-art.svg") center / contain no-repeat;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.services::after {
  right: -70px;
  bottom: -34px;
}

.reasons::before {
  top: -42px;
  left: -95px;
  transform: rotate(180deg);
  opacity: 0.2;
}

.approach::after {
  right: -110px;
  bottom: -28px;
  opacity: 0.2;
  transform: scaleX(-1);
}

.service-card--with-photo .service-card__media::after {
  background:
    linear-gradient(180deg, rgba(52, 50, 37, 0.02) 15%, rgba(52, 50, 37, 0.26) 48%, rgba(43, 42, 33, 0.94) 100%),
    linear-gradient(120deg, rgba(169, 139, 74, 0.24), rgba(217, 190, 120, 0.04) 52%, rgba(34, 54, 76, 0.12));
}

.reasons {
  background:
    radial-gradient(circle at 80% 8%, rgba(217, 190, 120, 0.26), transparent 30%),
    linear-gradient(180deg, #fbf7ee 0%, #f6f1e7 100%);
}

.approach {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.78), transparent 31%),
    linear-gradient(180deg, #f6f1e7 0%, #fff8e8 13%, #ead9b6 100%);
}

@media (max-width: 780px) {
  .services::after,
  .reasons::before,
  .approach::after {
    width: 430px;
    opacity: 0.17;
  }

  .services::after {
    right: -205px;
    bottom: -14px;
  }

  .services {
    background:
      radial-gradient(circle at 82% 2%, rgba(255, 238, 177, 0.28), transparent 35%),
      linear-gradient(
        180deg,
        #957239 0,
        #ad8f4d 94px,
        #d7bd79 232px,
        #f6f1e7 100%
      );
  }

  .reasons::before {
    top: -20px;
    left: -220px;
    opacity: 0.13;
  }

  .approach::after {
    right: -230px;
    bottom: -8px;
    opacity: 0.13;
  }
}

/* ---------- Final section-art visibility and overflow guard ---------- */

.services,
.reasons,
.approach,
.specialists,
.reviews,
.installment,
.faq,
.contact-section,
.booking {
  overflow-x: hidden;
}

@media (max-width: 780px) {
  .services::after,
  .reasons::before,
    .approach::after,
    .specialists::before,
    .reviews::before,
    .installment::before,
    .faq::before,
  .contact-section::before,
  .booking::before {
    width: 470px;
    opacity: 0.22;
  }

  .services::after {
    right: -190px;
    bottom: 0;
  }

  .reasons::before {
    top: 16px;
    left: -190px;
  }

  .approach::after {
    top: 16px;
    right: -190px;
    bottom: auto;
  }

  .specialists::before {
    top: 16px;
    right: -190px;
  }

  .reviews::before {
    right: -190px;
    bottom: 16px;
    opacity: 0.2;
  }

  .installment::before {
    top: 20px;
    right: -210px;
    opacity: 0.2;
  }

  .faq::before {
    top: 16px;
    left: -190px;
    opacity: 0.22;
  }

  .contact-section::before {
    top: 16px;
    right: -190px;
    bottom: auto;
    opacity: 0.22;
  }

  .booking::before {
    top: 16px;
    left: -190px;
    opacity: 0.21;
  }
}

/* ---------- Final hero/service handoff: visible strip and medium gold section ---------- */

.trust-bar {
  bottom: 0;
  min-height: 60px;
}

.trust-bar.reveal {
  opacity: 1;
  transform: none;
}

.trust-item {
  min-height: 60px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.trust-item strong {
  font-size: clamp(1.38rem, 1.88vw, 1.78rem);
}

.trust-item span {
  font-size: 0.62rem;
  line-height: 1.18;
}

.services {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.38), transparent 38%),
    radial-gradient(circle at 78% 6%, rgba(217, 190, 120, 0.2), transparent 31%),
    linear-gradient(180deg, #e8d7b1 0%, #efe2c2 42%, #f3ead8 76%, #f7f0e5 100%);
}

@media (min-width: 781px) {
  .hero__note {
    padding-bottom: 70px;
  }
}

@media (max-width: 780px) {
  .trust-bar {
    bottom: 0;
    min-height: 58px;
  }

  .trust-item {
    min-height: 58px;
    padding: 7px 12px;
  }

  .services {
    background:
      radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.34), transparent 42%),
      radial-gradient(circle at 78% 2%, rgba(217, 190, 120, 0.18), transparent 34%),
      linear-gradient(180deg, #ead9b5 0%, #f0e3c4 48%, #f6eddd 100%);
  }
}

/* ---------- Final prices catalog: HTML list, not document screenshots ---------- */

.lang-ro,
.lang-ar,
.lang-en {
  display: none;
}

html[lang="ro"] .lang-ru,
html[lang="ro"] .lang-ar,
html[lang="ro"] .lang-en,
html[lang="ar"] .lang-ru,
html[lang="ar"] .lang-ro,
html[lang="ar"] .lang-en,
html[lang="en"] .lang-ru,
html[lang="en"] .lang-ro,
html[lang="en"] .lang-ar {
  display: none;
}

html[lang="ro"] .lang-ro,
html[lang="ar"] .lang-ar,
html[lang="en"] .lang-en {
  display: inline;
}

body[data-page="prices"] {
  background:
    radial-gradient(circle at 87% 10%, rgba(217, 190, 120, 0.26), transparent 26%),
    linear-gradient(180deg, #f7f0e5 0%, #ead9b6 100%);
}

body[data-page="prices"] .price-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 190, 120, 0.28), transparent 29%),
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.74), transparent 34%),
    linear-gradient(180deg, #f7f0e5 0%, #ead9b6 100%);
}

body[data-page="prices"] .price-section__panel {
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 238, 0.84)),
    #f6f1e7;
}

.price-catalog {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.price-catalog__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 2.6vw, 34px);
  padding: 6px 0 10px;
}

.price-catalog__nav a {
  color: #9a7c3a;
  font-size: clamp(0.96rem, 1.3vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.price-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid rgba(52, 50, 37, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: rgba(52, 50, 37, 0.54);
}

.price-search span {
  margin-right: 14px;
  color: #a98b4a;
  font-size: 2rem;
  line-height: 1;
}

.price-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest-deep);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
}

.price-search input::placeholder {
  color: rgba(111, 106, 92, 0.78);
}

.price-group {
  display: grid;
  gap: 12px;
  scroll-margin-top: 112px;
}

.price-group h2 {
  margin: 0 0 8px;
  padding: clamp(18px, 2.2vw, 25px) clamp(20px, 2.8vw, 30px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(217, 190, 120, 0.2), transparent 44%),
    linear-gradient(135deg, #9b7a37 0%, #b6944f 100%);
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: 0;
  line-height: 1.12;
  box-shadow: 0 16px 38px rgba(52, 50, 37, 0.1);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
  min-height: 76px;
  padding: 20px clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(52, 50, 37, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
}

.price-row:nth-of-type(odd) {
  background: rgba(246, 241, 231, 0.86);
}

.price-row strong {
  display: block;
  color: var(--forest-deep);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.price-row p {
  max-width: 780px;
  margin: 6px 0 0;
  color: rgba(111, 106, 92, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-row__amount {
  color: var(--forest-deep);
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.price-row[hidden],
.price-group[hidden] {
  display: none !important;
}

@media (max-width: 780px) {
  body[data-page="prices"] .price-section--page {
    padding-top: 110px;
  }

  body[data-page="prices"] .price-section__panel {
    padding: 22px 14px 20px;
    border-radius: 24px;
  }

  .price-catalog__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    margin: 0 -14px;
    padding: 4px 14px 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .price-catalog__nav::-webkit-scrollbar {
    display: none;
  }

  .price-catalog__nav a {
    flex: 0 0 auto;
    font-size: 0.98rem;
  }

  .price-search {
    min-height: 58px;
    padding: 0 17px;
  }

  .price-search span {
    margin-right: 10px;
    font-size: 1.55rem;
  }

  .price-group {
    gap: 10px;
    scroll-margin-top: 92px;
  }

  .price-group h2 {
    border-radius: 15px;
    font-size: 1.35rem;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 16px;
    border-radius: 15px;
  }

  .price-row__amount {
    justify-self: start;
    padding-top: 2px;
    font-size: 1.08rem;
  }
}

/* ---------- Final prices spacing polish ---------- */

body[data-page="prices"] .header-inner {
  gap: clamp(18px, 2.2vw, 34px);
}

body[data-page="prices"] .desktop-nav {
  gap: clamp(26px, 3vw, 46px);
  margin-right: clamp(24px, 3vw, 48px);
}

body[data-page="prices"] .header-actions {
  gap: 16px;
}

body[data-page="prices"] .price-section__heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.5fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
}

body[data-page="prices"] .price-page__intro {
  max-width: 420px;
  gap: 24px;
}

body[data-page="prices"] .price-page__back {
  min-width: 260px;
  min-height: 56px;
  padding: 0 30px;
  gap: 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
}

html[lang="ro"] body[data-page="prices"] .price-page__back {
  min-width: 315px;
}

body[data-page="prices"] .price-catalog {
  gap: clamp(28px, 3.2vw, 42px);
}

body[data-page="prices"] .price-catalog__nav {
  justify-content: center;
  gap: 14px;
  padding: 4px 0 12px;
}

body[data-page="prices"] .price-catalog__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(169, 139, 74, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(52, 50, 37, 0.06);
  color: #80652e;
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  text-decoration: none;
}

body[data-page="prices"] .price-catalog__nav a:hover {
  background: #fff;
  color: var(--forest-deep);
}

@media (max-width: 1180px) {
  body[data-page="prices"] .price-section__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="prices"] .price-page__intro {
    max-width: 680px;
  }
}

@media (max-width: 1040px) {
  body[data-page="prices"] .header-inner {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 780px) {
  body[data-page="prices"] .price-page__back,
  html[lang="ro"] body[data-page="prices"] .price-page__back {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 22px;
    font-size: 0.98rem;
    white-space: normal;
  }

  body[data-page="prices"] .price-catalog {
    gap: 24px;
  }

  body[data-page="prices"] .price-catalog__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 -14px;
    padding-bottom: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-page="prices"] .price-catalog__nav a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.94rem;
  }
}

/* ---------- 20260818 video hero and compact team pass ---------- */

.topline {
  background: #f8f2e7 !important;
  color: rgba(43, 42, 33, 0.78) !important;
  text-shadow: none !important;
}

.topline a {
  color: #2b2a21 !important;
  text-shadow: none !important;
}

.site-header {
  border-bottom: 1px solid rgba(52, 50, 37, 0.12) !important;
  background: rgba(255, 253, 248, 0.96) !important;
  box-shadow: 0 8px 30px rgba(43, 42, 33, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(43, 42, 33, 0.11) !important;
}

.site-header .brand strong,
.site-header .brand small,
.site-header .desktop-nav,
.site-header .desktop-nav a,
.site-header .lang-switch__button:not(.is-active) {
  color: rgba(43, 42, 33, 0.9) !important;
  text-shadow: none !important;
}

.site-header .brand__mark {
  fill: #343225 !important;
  filter: none !important;
}

.site-header .brand__spark {
  stroke: #f6f1e7 !important;
}

.site-header .button--small {
  background: #343225 !important;
  color: #fffaf0 !important;
  box-shadow: 0 10px 24px rgba(52, 50, 37, 0.18);
}

.site-header .button--small:hover {
  background: #2b2a21 !important;
}

.hero--video {
  min-height: min(760px, calc(100svh - 114px));
  padding: 0 !important;
  background: #2b2a21 url("assets/sanufi-hero-poster-20260818-video2.jpg?v=20260818-services1") center center / cover no-repeat !important;
  isolation: isolate;
}

.hero--video::before,
.hero--video::after {
  display: none !important;
  content: none !important;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  transform: scale(1.06);
  transform-origin: center center;
  animation: heroVideoDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroVideoDrift {
  from {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }

  to {
    transform: scale(1.11) translate3d(1.2%, 0.8%, 0);
  }
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 20, 15, 0.44) 0%, rgba(43, 42, 33, 0.3) 36%, rgba(43, 42, 33, 0.08) 66%, rgba(43, 42, 33, 0.16) 100%),
    linear-gradient(180deg, rgba(22, 20, 15, 0.08) 0%, rgba(22, 20, 15, 0.02) 48%, rgba(22, 20, 15, 0.18) 100%);
}

.hero--video .hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr) !important;
  min-height: min(760px, calc(100svh - 114px)) !important;
  align-items: center;
  justify-items: start;
  padding-top: clamp(86px, 12vh, 132px) !important;
  padding-bottom: clamp(82px, 12vh, 132px) !important;
}

.hero--video .hero__content {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  margin: 0 !important;
  text-align: left !important;
  transform: none !important;
  justify-items: start !important;
}

.hero--video .eyebrow {
  justify-content: flex-start;
}

.hero--video h1,
html[lang="ro"] .hero--video h1 {
  max-width: 520px !important;
  margin: 0 0 30px !important;
  color: #fffaf0 !important;
  font-size: clamp(3.25rem, 5.4vw, 5.65rem) !important;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.46);
  -webkit-text-stroke: 0;
}

html[lang="ro"] .hero--video h1 {
  font-size: clamp(3.1rem, 5.05vw, 5.25rem) !important;
}

.hero--video h1 em {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  color: #f2cf7a !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.46);
}

.hero-title-line {
  display: block;
}

.hero--video h1 em::after {
  display: none !important;
}

.hero--video .eyebrow,
.hero--video .hero__lead,
.hero--video .text-link small,
.hero--video .text-link strong,
.hero--video .hero__note {
  color: rgba(255, 250, 240, 0.94) !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42) !important;
}

.hero--video .hero__lead {
  max-width: 510px;
  margin-bottom: 28px;
  font-size: clamp(1.04rem, 1.15vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

.hero--video .hero__actions {
  justify-content: flex-start !important;
  gap: 14px;
}

.hero--video .button--large {
  min-width: 0 !important;
  min-height: 56px !important;
  padding-right: 22px !important;
  padding-left: 22px !important;
  letter-spacing: 0;
}

.button--gold,
.hero--video .button--gold {
  background: #c99b45 !important;
  color: #241d12 !important;
  box-shadow: 0 16px 32px rgba(78, 55, 20, 0.22);
}

.button--gold:hover,
.hero--video .button--gold:hover {
  background: #d9b465 !important;
  box-shadow: 0 18px 36px rgba(78, 55, 20, 0.28);
}

.hero--video .text-link {
  color: #fffaf0;
}

.hero--video .text-link__icon {
  border-color: rgba(255, 250, 240, 0.48) !important;
  background: rgba(255, 250, 240, 0.12) !important;
  color: #fffaf0 !important;
}

.hero--video .trust-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  background: rgba(255, 253, 248, 0.92) !important;
  box-shadow: 0 -12px 38px rgba(22, 20, 15, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.team-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.doctor-card {
  gap: 13px;
  padding: 12px 12px 18px;
  border-radius: 18px;
}

.doctor-card__photo {
  aspect-ratio: 4 / 4.75;
  border-radius: 14px;
}

.doctor-card h3 {
  font-size: clamp(1.28rem, 1.72vw, 1.9rem);
  letter-spacing: 0;
}

.doctor-card__role {
  margin-top: 10px;
  font-size: 0.66rem;
}

.doctor-card__experience {
  margin-top: 8px;
  font-size: 0.84rem;
}

@media (max-width: 1040px) {
  .hero--video .hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero--video .hero__content {
    max-width: 560px !important;
  }

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

@media (max-width: 780px) {
  .topline__inner {
    color: rgba(43, 42, 33, 0.78) !important;
  }

  .hero--video {
    min-height: min(690px, calc(100svh - 104px));
    background-position: center center !important;
  }

  .hero--video .hero__video {
    object-position: center center;
  }

  .hero--video .hero__shade {
    background:
      linear-gradient(90deg, rgba(22, 20, 15, 0.48) 0%, rgba(43, 42, 33, 0.3) 56%, rgba(43, 42, 33, 0.14) 100%),
      linear-gradient(180deg, rgba(22, 20, 15, 0.08) 0%, rgba(22, 20, 15, 0.02) 44%, rgba(22, 20, 15, 0.28) 100%);
  }

  .hero--video .hero__grid {
    min-height: min(690px, calc(100svh - 104px)) !important;
    padding-top: 132px !important;
    padding-bottom: 50px !important;
  }

  .hero--video .hero__content {
    max-width: min(100%, 430px) !important;
  }

  .hero--video h1,
  html[lang="ro"] .hero--video h1 {
    max-width: 342px !important;
    margin-bottom: 18px !important;
    font-size: clamp(2.18rem, 9.9vw, 3.08rem) !important;
    line-height: 1.02 !important;
  }

  html[lang="ro"] .hero--video h1 {
    font-size: clamp(2.12rem, 9.65vw, 2.98rem) !important;
  }

  .hero--video .hero__lead {
    max-width: 390px;
    font-size: 1rem;
  }

  .hero--video .hero__actions {
    width: min(100%, 300px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  html[lang="ro"] .hero--video .hero__actions {
    width: min(100%, var(--hero-ro-actions-width, clamp(238px, 65vw, 258px)));
  }

  .hero--video .button--large {
    width: 100%;
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
  }

  html[lang="ro"] .hero--video .button--large {
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-size: 0.8rem !important;
  }

  .hero--video .button--large svg {
    width: 18px;
    height: 18px;
  }

  .hero--video .text-link {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero--video h1,
  html[lang="ro"] .hero--video h1 {
    max-width: 300px !important;
    font-size: clamp(2.08rem, 10.6vw, 2.78rem) !important;
  }

  html[lang="ro"] .hero--video h1 {
    font-size: clamp(2.04rem, 10.45vw, 2.68rem) !important;
  }

  .hero--video .hero__actions {
    width: min(100%, 286px);
  }

  html[lang="ro"] .hero--video .hero__actions {
    width: min(100%, var(--hero-ro-actions-width, clamp(238px, 65vw, 258px)));
  }

  .hero--video .hero__lead {
    max-width: 318px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__video {
    animation: none;
    transform: scale(1.06);
  }
}

/* ---------- 20260818 fixed top bars ---------- */

:root {
  --topline-height: 36px;
  --header-height: 78px;
}

body {
  padding-top: calc(var(--topline-height) + var(--header-height));
}

body[data-page="prices"] {
  padding-top: var(--header-height);
}

.topline {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
}

.site-header {
  position: fixed !important;
  top: var(--topline-height) !important;
  right: 0;
  left: 0;
  z-index: 89;
}

body[data-page="prices"] .site-header {
  top: 0 !important;
}

section[id],
.price-group {
  scroll-margin-top: calc(var(--topline-height) + var(--header-height) + 18px);
}

body[data-page="prices"] section[id],
body[data-page="prices"] .price-group {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body[data-page="prices"] .site-header__inner {
  min-height: var(--header-height);
}

.menu-toggle {
  border-color: rgba(52, 50, 37, 0.22) !important;
  background: rgba(255, 253, 248, 0.78) !important;
}

.menu-toggle span {
  background: #343225 !important;
}

@media (max-width: 780px) {
  :root {
    --topline-height: 32px;
    --header-height: 68px;
  }

  .mobile-nav {
    top: var(--header-height);
  }

  body:not([data-page="prices"]) .mobile-nav {
    top: calc(var(--topline-height) + var(--header-height));
  }
}

/* ---------- 20260818 mobile team rail fix ---------- */

@media (max-width: 780px) {
  .specialists {
    overflow-x: hidden;
  }

  .specialists .team-list {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(276px, calc(100vw - 64px)) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: auto !important;
    margin: 12px -20px 0 0 !important;
    padding: 2px 20px 18px 0 !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .specialists .team-list::after {
    display: block;
    width: 6px;
    content: "";
  }

  .specialists .team-list::-webkit-scrollbar {
    display: none;
  }

  .specialists .doctor-card {
    width: auto !important;
    min-width: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}

@media (max-width: 420px) {
  .specialists .team-list {
    grid-auto-columns: minmax(268px, calc(100vw - 54px)) !important;
    margin-right: -14px !important;
    padding-right: 14px !important;
    scroll-padding-right: 14px;
  }
}

/* ---------- 20260818 installment section mobile polish ---------- */

@media (max-width: 780px) {
  .section.installment {
    padding-top: 40px;
    padding-bottom: 112px;
  }

  .installment__photo img {
    aspect-ratio: 4 / 5;
  }

  body:has(.installment:target) .floating-action {
    display: none;
  }
}

/* ---------- 20260824 draft Arabic locale ---------- */

html[lang="ar"] body {
  direction: ltr;
  font-family: "Noto Kufi Arabic", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .brand strong,
html[lang="ar"] .button,
html[lang="ar"] .price-row strong,
html[lang="ar"] .installment__steps p {
  font-family: "Noto Kufi Arabic", "Onest", "Manrope", sans-serif;
  letter-spacing: 0;
}

html[lang="ar"] .section-kicker,
html[lang="ar"] .topline,
html[lang="ar"] .desktop-nav,
html[lang="ar"] .brand small,
html[lang="ar"] .price-catalog__nav,
html[lang="ar"] .meta-label,
html[lang="ar"] .team-card__role,
html[lang="ar"] .doctor-card__role {
  letter-spacing: 0;
}

html[lang="ar"] [data-i18n],
html[lang="ar"] [data-i18n-placeholder],
html[lang="ar"] [data-i18n-alt],
html[lang="ar"] .lang-ar {
  direction: rtl;
  unicode-bidi: plaintext;
}

html[lang="ar"] a[href^="tel:"],
html[lang="ar"] .booking__phone,
html[lang="ar"] .price-row__amount,
html[lang="ar"] input[type="tel"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[lang="ar"] .hero--video h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6.3vw, 5.95rem);
  line-height: 1.08;
}

html[lang="ar"] .installment__content h2 {
  line-height: 1.12;
}

html[lang="ar"] .installment__content > p,
html[lang="ar"] .installment__note,
html[lang="ar"] .price-hero p,
html[lang="ar"] .price-row p {
  font-size: 1.08rem;
}

html[lang="ar"] .price-row strong {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

html[lang="ar"] .service-showcase .service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  direction: rtl;
}

html[lang="ar"] .service-showcase .service-card h3,
html[lang="ar"] .service-showcase .service-card p {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

html[lang="ar"] .service-showcase .service-card__body > a {
  align-self: flex-start;
  direction: rtl;
  justify-content: flex-start;
  text-align: right;
}

html[lang="ar"] .service-showcase .service-card--photo .service-card__body {
  padding-right: clamp(24px, 3vw, 38px);
  padding-left: clamp(24px, 3vw, 38px);
}

html[lang="ar"] .service-showcase .service-card--photo h3 {
  max-width: min(36%, 270px);
  font-size: clamp(1.85rem, 3.35vw, 3rem);
}

html[lang="ar"] .service-showcase .service-card--photo p {
  max-width: min(40%, 300px);
}

html[lang="ar"] .doctor-card__body,
html[lang="ar"] .doctor-card h3,
html[lang="ar"] .doctor-card__role,
html[lang="ar"] .doctor-card__experience {
  text-align: right;
  direction: rtl;
}

@media (max-width: 780px) {
  html[lang="ar"] .hero--video h1 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  html[lang="ar"] .service-showcase .service-card--photo h3,
  html[lang="ar"] .service-showcase .service-card--photo p {
    max-width: min(72%, 240px);
  }

  html[lang="ar"] .service-showcase .service-card--photo .service-card__body {
    padding-right: 20px;
    padding-left: 18px;
  }

  html[lang="ar"] .installment__content > p,
  html[lang="ar"] .installment__note,
  html[lang="ar"] .price-row p {
    font-size: 1rem;
  }
}

/* Certificates section: real clinic training documents. */
.certificates {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 190, 120, 0.16), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(191, 215, 234, 0.2), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #f6f1e7 100%);
}

.certificates::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: url("assets/dental-line-art.svg") left 5% bottom 8% / min(42vw, 620px) auto no-repeat;
  opacity: 0.11;
}

.certificates .shell {
  position: relative;
  z-index: 1;
}

.certificates__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 62px);
}

.certificates__heading .section-kicker,
.certificates__heading h2 {
  grid-column: 1;
}

.certificates__heading h2 {
  margin: 14px 0 0;
  color: var(--forest-deep);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.certificates__heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.certificates__viewport {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.certificate-card {
  display: grid;
  flex: 0 0 clamp(290px, 23vw, 410px);
  gap: 12px;
  min-width: 0;
  scroll-snap-align: start;
}

.certificate-card__sheet {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 139, 74, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 229, 0.74)),
    #fff;
  box-shadow: 0 22px 52px rgba(52, 50, 37, 0.09);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-card__sheet:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(52, 50, 37, 0.13);
}

.certificate-card__sheet img {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

.certificate-card__sheet:hover img {
  transform: scale(1.012);
}

.certificate-card > strong {
  color: var(--forest-deep);
  font-size: clamp(1.08rem, 1.22vw, 1.28rem);
  line-height: 1.18;
}

.certificate-card > b {
  color: rgba(52, 50, 37, 0.74);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

html[lang="ar"] .certificates__heading,
html[lang="ar"] .certificate-card {
  direction: rtl;
  text-align: right;
}

@media (max-width: 980px) {
  .certificates__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .certificates__heading .section-kicker,
  .certificates__heading h2,
  .certificates__heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .certificates__heading p {
    max-width: 680px;
  }
}

@media (max-width: 780px) {
  .certificates {
    padding: 64px 0 74px;
  }

  .certificates__heading {
    margin-bottom: 24px;
  }

  .certificates__heading h2 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .certificates__viewport {
    gap: 14px;
    margin: 0;
    padding-bottom: 12px;
  }

  .certificate-card {
    flex: 0 0 min(82vw, 330px);
  }

  .certificate-card__sheet {
    border-radius: 16px;
  }

  .certificate-card > b {
    font-size: 0.82rem;
  }
}

/* Documents page: official files shell, ready for real clinic PDFs. */
body[data-page="documents"] {
  background:
    radial-gradient(circle at 88% 4%, rgba(217, 190, 120, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(246, 241, 231, 0.34), #fffdf8 16%, #fffdf8 84%, rgba(217, 190, 120, 0.28)),
    var(--cream);
}

body[data-page="documents"] .site-header {
  top: 0 !important;
}

body[data-page="documents"] .site-header,
body[data-page="documents"] .site-header .brand strong,
body[data-page="documents"] .site-header .brand small,
body[data-page="documents"] .site-header .desktop-nav,
body[data-page="documents"] .site-header .desktop-nav a,
body[data-page="documents"] .site-header .lang-switch__button:not(.is-active) {
  color: rgba(43, 42, 33, 0.9) !important;
  text-shadow: none !important;
}

body[data-page="documents"] .site-header .brand__mark {
  fill: #2b2a21 !important;
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.38));
}

body[data-page="documents"] .site-header .brand__spark {
  stroke: #f6f1e7 !important;
}

body[data-page="documents"] .site-header .desktop-nav {
  gap: clamp(18px, 2vw, 34px);
  margin-right: clamp(18px, 2vw, 36px);
}

.documents-section {
  min-height: 100vh;
  padding: clamp(118px, 11vw, 156px) 0 clamp(72px, 8vw, 118px);
  overflow: hidden;
}

.documents-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(169, 139, 74, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 0%, rgba(217, 190, 120, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 240, 0.92));
  box-shadow: 0 24px 70px rgba(52, 50, 37, 0.08);
}

.documents-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: url("assets/dental-line-art.svg") right 3% top 4% / min(46vw, 720px) auto no-repeat;
  opacity: 0.13;
}

.documents-heading,
.documents-table {
  position: relative;
  z-index: 1;
}

.documents-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.documents-heading h1 {
  margin: 14px 0 18px;
  color: var(--forest-deep);
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.documents-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.documents-table {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.documents-table__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.24fr);
  align-items: center;
  min-height: 64px;
  padding: 0 clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: linear-gradient(135deg, #a98b4a, #d9be78);
  color: #fffdf8;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 800;
}

.documents-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.24fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(18px, 2.4vw, 26px) clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(52, 50, 37, 0.06);
}

.documents-row:nth-child(odd) {
  background: rgba(246, 248, 250, 0.78);
}

.documents-row__name {
  display: grid;
  min-width: 0;
  gap: 9px;
  align-items: start;
}

.documents-row__name strong {
  color: var(--forest-deep);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.24;
}

.documents-row__name p {
  max-width: 780px;
  margin: 0;
  color: rgba(52, 50, 37, 0.68);
  font-size: clamp(0.95rem, 1.08vw, 1.04rem);
  line-height: 1.5;
}

.documents-row__name span {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(43, 42, 33, 0.08);
  color: rgba(52, 50, 37, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.documents-row__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #d0a23a;
  color: #2b2a21;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.documents-row__link:hover {
  transform: translateY(-2px);
  background: #d9b24f;
  box-shadow: 0 14px 28px rgba(169, 139, 74, 0.2);
}

.documents-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px dashed rgba(169, 139, 74, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.documents-empty__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #343225;
  color: #d9be78;
  font-size: 1.6rem;
  font-weight: 800;
}

.documents-empty h2 {
  margin: 0 0 8px;
  color: var(--forest-deep);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.documents-empty p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.58;
}

html[lang="ar"] .documents-heading,
html[lang="ar"] .documents-empty,
html[lang="ar"] .documents-table__head,
html[lang="ar"] .documents-row {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] .documents-row__name span {
  justify-self: end;
}

html[lang="ar"] .documents-heading p {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  body[data-page="documents"] .mobile-nav {
    top: var(--header-height) !important;
  }

  .documents-table__head,
  .documents-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .documents-table__head {
    gap: 2px;
    padding-block: 14px;
  }

  .documents-row {
    gap: 16px;
  }
}

@media (max-width: 780px) {
  .documents-section {
    padding-top: 108px;
  }

  .documents-panel {
    padding: 22px 14px 24px;
    border-radius: 24px;
  }

  .documents-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .documents-heading h1 {
    font-size: clamp(2.45rem, 16vw, 4rem);
  }

  .documents-heading p {
    font-size: 0.98rem;
  }

  .documents-table__head {
    display: none;
  }

  .documents-row {
    padding: 18px;
  }

  .documents-row__name {
    gap: 8px;
  }

  .documents-row__name strong {
    font-size: 1.06rem;
  }

  .documents-row__link {
    width: 100%;
  }

  .documents-empty {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .documents-empty__icon {
    width: 48px;
    height: 48px;
  }

  html[lang="ar"] .documents-heading {
    text-align: right;
  }
}
