@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --ink: #183128;
  --ink-soft: #43534c;
  --green: #214c3d;
  --green-dark: #13352b;
  --clay: #9b6048;
  --sand: #f5f2ec;
  --paper: #fffdfa;
  --sage: #e8efeb;
  --stone: #ece8e1;
  --line: #d8d8d1;
  --line-dark: #bfc5bf;
  --container: min(1280px, calc(100% - 64px));
  --narrow: min(780px, calc(100% - 48px));
  --shadow: 0 20px 55px rgba(24, 49, 40, .09);
  --ease: cubic-bezier(.22, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--sand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}

p,
ul,
ol {
  margin-top: 0;
}

p,
li {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.01;
}

h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.28;
}

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

.container--narrow {
  width: var(--narrow);
}

.center {
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(155, 96, 72, .78);
  outline-offset: 4px;
}

.eyebrow {
  display: block;
  margin-bottom: 21px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.section {
  padding-block: clamp(68px, 7vw, 100px);
}

.section--compact {
  padding-block: 44px;
}

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

.section--sage {
  background: var(--sage);
}

.section--stone {
  background: var(--stone);
}

.section-head {
  width: 100%;
  max-width: 920px;
  margin: 0 0 clamp(38px, 5vw, 64px);
  text-align: left;
}

.section-head .eyebrow {
  margin-bottom: 20px;
}

.section-head .section-title,
.section-head h2 {
  max-width: 24ch;
}

.section-head > p {
  max-width: 68ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.section-intro {
  max-width: 68ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: var(--green);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--outline {
  color: var(--ink);
  border-color: var(--line-dark);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button--light {
  color: var(--green-dark);
  background: #fff;
}

.button--ghost {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--green);
  background: transparent;
}

.button--on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}

.button--on-dark:hover {
  color: var(--green-dark);
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "⟶";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(24,49,40,.12);
  background: rgba(247,245,240,.96);
  backdrop-filter: blur(14px);
}

.header-main {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.brand__name {
  font-size: 1.58rem;
  font-weight: 400;
  letter-spacing: .23em;
  line-height: 1;
}

.brand__sub {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link[aria-current="page"] {
  color: var(--clay);
}

.nav-trigger svg {
  width: 15px;
  height: 15px;
}

.nav-item--has-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: -28px;
  width: min(900px, calc(100vw - 56px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.mega-menu[data-open="false"] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-7px);
  pointer-events: none;
}

.mega-menu[data-open="true"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-about .mega-menu {
  right: -28px;
  left: auto;
  width: 300px;
}

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

.mega-grid--treatments {
  grid-template-columns: 1.18fr 1fr .82fr .82fr;
}

.nav-about .mega-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.mega-heading {
  display: block;
  margin-bottom: 13px;
  color: var(--clay);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mega-grid a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: .82rem;
  text-decoration: none;
}

.mega-grid a:hover,
.mega-grid a[aria-current="page"] {
  color: var(--green);
  text-decoration: underline;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.header-instagram {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
}

.header-instagram svg {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 78px 0 0;
  overflow-y: auto;
  background: var(--sand);
  transition: opacity .2s ease, visibility .2s ease;
}

.mobile-menu[data-open="false"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  width: var(--container);
  margin-inline: auto;
  padding: 26px 0 48px;
  flex-direction: column;
}

.mobile-menu__inner > a:not(.button),
.mobile-menu__small a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu__small {
  display: contents;
}

.mobile-menu__inner > a:not(.button) > span {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
}

.mobile-menu__inner .button {
  margin-top: 24px;
}

/* Hero */
.hero {
  padding-block: clamp(52px, 5.5vw, 76px);
  background: var(--sand);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  max-width: none;
}

.hero h1 {
  max-width: 13.6ch;
  margin-bottom: 28px;
}

.hero-lead {
  max-width: 61ch;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
  text-align: left;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-image-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--stone);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-image-small,
.hero-stamp {
  display: none;
}

/* Home: composición editorial y señales de confianza */
.trust-line {
  border-block: 1px solid var(--line);
}

.trust-line__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trust-line__inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.trust-line__inner strong {
  color: var(--ink);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(350px, .88fr) minmax(0, 1.12fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: center;
}

.editorial-intro__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

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

.editorial-intro__copy h2 {
  max-width: 15ch;
  margin-bottom: 26px;
}

.editorial-intro__copy > p {
  max-width: 58ch;
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.clinical-principles {
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.clinical-principles div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 126px 1fr;
  gap: 18px;
}

.clinical-principles dt {
  font-weight: 700;
}

.clinical-principles dd {
  margin: 0;
  color: var(--ink-soft);
}

.objective-index {
  border-top: 1px solid var(--line-dark);
}

.objective-link {
  display: grid;
  min-height: 118px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px minmax(0, 1fr) 40px;
  gap: 22px;
  align-items: center;
  text-decoration: none;
  transition: padding .2s ease, color .2s ease, background-color .2s ease;
}

.objective-link:hover {
  padding-inline: 22px;
  color: var(--green);
  background: rgba(255, 253, 250, .74);
}

.objective-link__num {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.objective-link strong,
.objective-link small {
  display: block;
}

.objective-link strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  font-weight: 500;
  line-height: 1.16;
}

.objective-link small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.objective-link__arrow {
  font-size: 1.2rem;
  text-align: right;
}

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

.area-feature {
  display: grid;
  padding-block: clamp(34px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}

.area-feature--reverse .area-feature__media {
  grid-column: 2;
  grid-row: 1;
}

.area-feature__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.area-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.area-feature__media:hover img {
  transform: scale(1.018);
}

.area-feature__copy > span {
  display: block;
  margin-bottom: 15px;
  color: var(--clay);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.area-feature__copy h3 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
}

.area-feature__copy p {
  max-width: 52ch;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

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

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}

.service-card > img,
.service-card > picture,
.service-card > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.service-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(11,34,27,.88) 100%);
}

.service-card:hover > img,
.service-card:hover > picture img {
  transform: scale(1.025);
}

.service-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.service-card__kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.72);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card h3,
.service-card .text-link {
  color: #fff;
}

.service-card h3 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.search-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.result-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}

.result-card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.result-card p {
  margin-bottom: 25px;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.65;
}

.result-card .text-link {
  margin-top: auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(24,49,40,.3);
}

.method-step {
  min-height: 190px;
  padding: 26px 34px 0;
  border-right: 1px solid rgba(24,49,40,.22);
}

.method-step:first-child {
  padding-left: 0;
}

.method-step:last-child {
  border-right: 0;
}

.method-step__num {
  display: block;
  margin-bottom: 30px;
  color: var(--clay);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.method-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.method-step p {
  max-width: 35ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.team-card__media {
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  background: var(--stone);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.team-card__body {
  padding: 22px 23px 25px;
  text-align: left;
}

.team-card h3 {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.team-card p {
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-size: .8rem;
}

.team-actions {
  margin-top: 28px;
}

.profiles {
  display: grid;
  gap: 18px;
}

.profile {
  display: grid;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
}

.profile:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}

.profile:nth-child(even) .profile__media {
  grid-column: 2;
  grid-row: 1;
}

.profile__media {
  height: 520px;
  overflow: hidden;
  background: var(--stone);
}

.profile__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 27%;
}

.profile__copy {
  display: flex;
  padding: clamp(38px, 6vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.profile__copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.profile__role {
  margin-bottom: 24px;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.profile__copy p:not(.profile__role) {
  max-width: 58ch;
  color: var(--ink-soft);
}

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

.editorial-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.editorial-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.editorial-card__tag,
.article-card__tag {
  color: var(--clay);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-card h3 {
  margin: 38px 0 14px;
}

.editorial-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: .9rem;
}

.editorial-card .text-link {
  margin-top: auto;
}

/* Location */
.location-card,
.location-split,
.gift-split,
.content-split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.location-info {
  display: flex;
  min-width: 0;
  padding: clamp(38px, 5vw, 68px);
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
}

.location-info > p {
  max-width: 44ch;
  color: var(--ink-soft);
}

.contact-lines {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.contact-line {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line > div {
  width: 100%;
  min-width: 0;
}

.contact-line strong,
.contact-line span {
  display: block;
}

.contact-line strong {
  margin-bottom: 3px;
  white-space: nowrap;
}

.contact-line span {
  color: var(--ink-soft);
  font-size: .8rem;
}

.map-panel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--sage);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
}

.map-preview {
  display: flex;
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: clamp(36px, 5vw, 70px);
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, rgba(18,53,43,.18), rgba(18,53,43,.9)), url("../img/clinica-2622.webp") center / cover;
}

.map-preview[data-hidden="true"],
.cookie-notice[data-hidden="true"] {
  display: none;
}

.map-preview h3 {
  max-width: 15ch;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.map-preview p {
  max-width: 46ch;
  margin-bottom: 22px;
  color: rgba(255,255,255,.82);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page heroes */
.breadcrumb {
  min-height: 62px;
  overflow-x: auto;
  padding-top: 0;
  color: var(--ink-soft);
  font-size: .76rem;
  scrollbar-width: none;
}

.breadcrumb ol {
  display: flex;
  min-height: 62px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  gap: 7px;
  align-items: center;
  list-style: none;
  white-space: nowrap;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
}

.breadcrumb li + li::before {
  margin-right: 7px;
  content: "/";
  color: var(--line-dark);
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  line-height: inherit;
}

.page-hero,
.detail-hero,
.article-header {
  padding-block: clamp(52px, 7vw, 92px);
  background: var(--paper);
}

.page-hero-grid,
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.page-hero-copy,
.detail-hero-copy {
  max-width: none;
}

.page-hero h1,
.detail-hero h1 {
  max-width: none;
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 3.9vw, 4.1rem);
}

.page-hero p,
.detail-hero .hero-lead {
  max-width: 60ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.76;
  text-align: left;
}

.page-hero-media,
.detail-hero-media {
  min-height: 550px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--stone);
}

.page-hero-media img,
.detail-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-media img.media-focus-top,
.detail-hero-media img.media-focus-top {
  object-position: center 12%;
}

.category-nav {
  display: flex;
  margin: 0 0 44px;
  padding: 11px 0;
  flex-wrap: wrap;
  gap: 8px 12px;
  border-block: 1px solid var(--line);
}

.category-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 7px 12px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

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

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

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

.treatment-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.treatment-card h3 {
  margin-bottom: 14px;
}

.treatment-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: .91rem;
  line-height: 1.7;
  text-align: left;
}

.treatment-card .text-link {
  margin-top: auto;
}

.content-split {
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.feature-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.feature-panel__media {
  min-height: 550px;
  overflow: hidden;
}

.feature-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
}

.feature-panel__content {
  display: flex;
  padding: clamp(38px, 6vw, 78px);
  flex-direction: column;
  justify-content: center;
}

.feature-panel__content h2 {
  margin-bottom: 22px;
}

.feature-panel__content p {
  color: var(--ink-soft);
}

.technology-list {
  display: grid;
  gap: 18px;
}

.technology-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
}

.technology-card__side {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}

.technology-card__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.technology-card__side::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 35, 27, .04) 35%, rgba(10, 35, 27, .72) 100%);
}

.technology-card:hover .technology-card__side img {
  transform: scale(1.018);
}

.technology-card__side span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
  text-transform: uppercase;
}

.technology-card__body {
  display: flex;
  padding: clamp(34px, 5vw, 62px);
  flex-direction: column;
  justify-content: center;
}

.technology-card__body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

.technology-card__body > p,
.tech-detail p {
  color: var(--ink-soft);
  text-align: left;
}

.tech-detail {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.gift-split {
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.gift-card-visual {
  padding: 30px;
  background: var(--sage);
}

.gift-card-visual img {
  width: 100%;
  box-shadow: var(--shadow);
}

.gift-list {
  display: grid;
  margin: 28px 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.gift-list--wide {
  grid-column: 1 / -1;
}

.gift-list li,
.gift-list span {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

/* Treatment and article content */
.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.prose,
.article-body,
.legal-content {
  color: var(--ink-soft);
}

.prose h2,
.article-body h2,
.legal-content h2 {
  margin: 48px 0 15px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  letter-spacing: -.035em;
}

.prose h2:first-child,
.article-body h2:first-child,
.legal-content h2:first-child {
  margin-top: 0;
}

.prose h3,
.article-body h3,
.legal-content h3 {
  margin: 30px 0 10px;
}

.prose p,
.prose li,
.article-body p,
.article-body li,
.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.82;
  text-align: left;
}

.prose ul,
.article-body ul,
.legal-content ul {
  padding-left: 22px;
}

.side-card {
  position: sticky;
  top: 108px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.side-card h2,
.side-card h3 {
  margin-bottom: 17px;
  font-size: 1.25rem;
}

.side-card p,
.side-card li {
  color: var(--ink-soft);
  font-size: .88rem;
}

.side-card .button {
  width: 100%;
  margin-top: 10px;
}

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

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

.faq-list summary,
.accordion-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after,
.accordion-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--clay);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list details[open] summary::after,
.accordion-list details[open] summary::after {
  content: "−";
}

.faq-list details > p,
.accordion-content {
  max-width: 72ch;
  padding: 0 0 24px;
  color: var(--ink-soft);
}

.clinical-note,
.source-list,
.article-callout {
  margin-top: 42px;
  padding: 22px 24px;
  border-left: 3px solid var(--clay);
  background: var(--sage);
}

.clinical-note strong {
  display: block;
  margin-bottom: 5px;
}

.clinical-note p,
.source-list li,
.article-callout p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.65;
}

.source-list {
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  background: var(--paper);
}

.source-list h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.source-list ul {
  margin: 0;
  padding-left: 20px;
}

.article-header {
  text-align: center;
}

.article-header .eyebrow {
  justify-content: center;
}

.article-header h1 {
  max-width: 19ch;
  margin-inline: auto;
  font-size: clamp(2.75rem, 4vw, 4.3rem);
}

.article-meta {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: .8rem;
}

.article-body {
  width: var(--narrow);
  margin-inline: auto;
  padding-block: clamp(58px, 7vw, 94px);
}

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

.article-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}

.article-card h2,
.article-card h3 {
  margin: 36px 0 14px;
  font-size: 1.25rem;
}

.article-card p {
  color: var(--ink-soft);
}

.article-card .text-link {
  margin-top: auto;
}

.legal-header {
  padding: 68px 0 30px;
}

.legal-header h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}

.legal-content {
  width: var(--narrow);
  margin-inline: auto;
  padding-bottom: 90px;
}

/* Trust, CTA and footer */
.trust-strip {
  padding-block: 28px;
  color: #fff;
  background: var(--green-dark);
}

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

.trust-item {
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
}

.cta-band {
  padding-block: clamp(50px, 6vw, 76px);
  color: #fff;
  background: var(--green-dark);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.cta-band h2 {
  max-width: none;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.cta-band p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255,255,255,.73);
}

.site-footer {
  color: #fff;
  background: #0f2921;
}

.site-footer .brand,
.site-footer h2 {
  color: #fff;
}

.footer-main {
  display: grid;
  padding-block: 60px 45px;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 48px;
}

.footer-brand p,
.footer-col a,
.footer-col span {
  color: rgba(255,255,255,.66);
  font-size: .8rem;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h2 {
  margin-bottom: 11px;
  font-size: .69rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-block: 22px 30px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: .72rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.floating-contact {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  max-width: calc(100vw - 36px);
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--green-dark);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(15,41,33,.1);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.floating-contact svg {
  display: none;
}

.floating-contact::before {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  content: "";
  background: currentColor;
  -webkit-mask: url("../img/whatsapp-mark.svg") center / contain no-repeat;
  mask: url("../img/whatsapp-mark.svg") center / contain no-repeat;
}

.floating-contact.is-over-footer,
body.cookie-open .floating-contact,
body.menu-open .floating-contact,
body.modal-open .floating-contact {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Modal and cookie */
.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(12,34,27,.72);
  backdrop-filter: blur(7px);
  transition: opacity .18s ease, visibility .18s ease;
}

.modal[data-open="false"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 3px;
  background: var(--paper);
}

.modal__panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal__panel > p {
  color: var(--ink-soft);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.45rem;
}

.booking-options {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-option {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--sand);
  text-decoration: none;
}

.booking-option svg {
  display: none;
}

.booking-option strong,
.booking-option span {
  display: block;
}

.booking-option span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: .82rem;
}

.cookie-notice {
  position: fixed;
  z-index: 1900;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-notice h2 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.cookie-notice p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.55;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cookie-actions .button--ghost {
  grid-column: 1 / -1;
}

/* Miscellaneous */
.not-found {
  display: grid;
  min-height: 72vh;
  padding: 60px 24px;
  place-items: center;
  text-align: center;
}

.not-found__code {
  color: var(--clay);
  font-size: 5rem;
  font-weight: 700;
}

.not-found h1 {
  margin-bottom: 18px;
}

.not-found p {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--ink-soft);
}

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

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --container: min(100% - 48px, 980px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions > .button,
  .header-instagram {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 48px;
  }

  .hero-media {
    min-height: 500px;
  }

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

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

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 40px, 720px);
  }

  .section-head {
    display: block;
  }

  .section-head .section-title,
  .section-head h2 {
    margin-bottom: 0;
  }

  .section-head > p {
    max-width: 62ch;
  }

  .hero-grid,
  .page-hero-grid,
  .detail-hero-grid,
  .editorial-intro,
  .area-feature,
  .feature-panel,
  .technology-card,
  .location-card,
  .location-split,
  .gift-split,
  .content-split,
  .prose-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-intro {
    gap: 42px;
  }

  .editorial-intro__media {
    aspect-ratio: 16 / 10;
  }

  .area-feature--reverse .area-feature__media {
    grid-column: auto;
    grid-row: auto;
  }

  .area-feature {
    gap: 30px;
  }

  .profile,
  .profile:nth-child(even) {
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  }

  .profile:nth-child(even) .profile__media {
    grid-column: 1;
  }

  .hero-copy,
  .page-hero-copy,
  .detail-hero-copy {
    max-width: 720px;
  }

  .hero-media,
  .page-hero-media,
  .detail-hero-media,
  .page-hero-media img,
  .detail-hero-media img {
    min-height: 500px;
  }

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

  .service-card:last-child,
  .team-card:last-child,
  .editorial-card:last-child,
  .article-card:last-child {
    grid-column: 1 / -1;
  }

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

  .map-panel,
  .map-panel iframe {
    min-height: 480px;
  }

  .side-card {
    position: static;
  }

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

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

/* Mobile */
@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
    --narrow: calc(100% - 32px);
  }

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

  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.65rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .site-header,
  .header-main {
    min-height: 72px;
  }

  .header-main {
    width: calc(100% - 30px);
  }

  .brand__name {
    font-size: 1.27rem;
  }

  .brand__sub {
    font-size: .45rem;
  }

  .mobile-menu {
    inset: 72px 0 0;
  }

  .section {
    padding-block: 58px;
  }

  .section--compact {
    padding-block: 30px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head .eyebrow {
    margin-bottom: 17px;
  }

  .section-head .section-title,
  .section-head h2 {
    max-width: none;
    margin-bottom: 0;
  }

  .section-head > p,
  .section-intro {
    font-size: .95rem;
    line-height: 1.68;
  }

  .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero {
    padding-block: 44px 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 20px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-image-main {
    border-radius: 2px;
  }

  .evidence-strip,
  .need-grid,
  .service-grid,
  .search-intent-grid,
  .method-grid,
  .team-grid,
  .editorial-grid,
  .article-grid,
  .treatment-grid,
  .treatment-grid--single,
  .trust-grid,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-line__inner {
    min-height: 0;
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .editorial-intro__media {
    aspect-ratio: 4 / 4.4;
  }

  .clinical-principles div {
    grid-template-columns: 104px 1fr;
  }

  .objective-link {
    min-height: 0;
    padding: 21px 0;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .objective-link:hover {
    padding-inline: 10px;
  }

  .objective-link strong {
    font-size: 1.35rem;
  }

  .objective-link small {
    font-size: .78rem;
    line-height: 1.55;
  }

  .area-feature {
    padding-block: 34px;
  }

  .area-feature__media {
    aspect-ratio: 4 / 3.5;
  }

  .profile,
  .profile:nth-child(even) {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .profile:nth-child(even) .profile__media {
    grid-column: auto;
    grid-row: auto;
  }

  .profile__media,
  .profile__media img {
    height: 390px;
    min-height: 0;
  }

  .profile__copy {
    padding: 30px 24px 34px;
  }

  .evidence-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-item:last-child {
    border-bottom: 0;
  }

  .need-grid,
  .search-intent-grid,
  .treatment-grid {
    border-left: 0;
  }

  .need-card,
  .result-card,
  .treatment-card {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    background: transparent;
  }

  .need-card:hover {
    padding-inline: 18px;
  }

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

  .service-card:last-child,
  .team-card:last-child,
  .editorial-card:last-child,
  .article-card:last-child {
    grid-column: auto;
  }

  .method-step,
  .method-step:first-child {
    min-height: 0;
    padding: 22px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(24,49,40,.22);
  }

  .method-step__num {
    margin-bottom: 12px;
  }

  .team-card__media {
    aspect-ratio: 4 / 4;
  }

  .editorial-card,
  .article-card {
    min-height: 240px;
    padding: 24px;
  }

  .page-hero,
  .detail-hero,
  .article-header {
    padding-block: 42px 54px;
  }

  .page-hero h1,
  .detail-hero h1,
  .article-header h1,
  .legal-header h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.65rem);
  }

  .page-hero p,
  .detail-hero .hero-lead {
    font-size: .96rem;
    line-height: 1.68;
  }

  .page-hero-media,
  .detail-hero-media,
  .page-hero-media img,
  .detail-hero-media img {
    min-height: 390px;
  }

  .breadcrumb {
    width: calc(100% - 32px);
    min-height: 54px;
    padding-top: 0;
  }

  .breadcrumb ol {
    min-height: 54px;
  }

  .category-nav {
    display: grid;
    overflow: visible;
    padding-block: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .category-nav a {
    justify-content: center;
    min-width: 0;
    padding-inline: 8px;
    text-align: center;
    white-space: normal;
  }

  .technology-card__side,
  .feature-panel__media,
  .feature-panel__media img {
    min-height: 350px;
  }

  .technology-card__body,
  .feature-panel__content,
  .location-info {
    padding: 30px 24px;
  }

  .location-info h2 {
    font-size: 2rem;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 390px;
  }

  .map-preview {
    padding: 28px 24px;
  }

  .prose-grid {
    gap: 38px;
  }

  .prose h2,
  .article-body h2 {
    margin-top: 38px;
    font-size: 1.5rem;
  }

  .prose p,
  .prose li,
  .article-body p,
  .article-body li,
  .legal-content p,
  .legal-content li {
    font-size: .96rem;
    line-height: 1.75;
  }

  .side-card {
    padding: 24px;
  }

  .gift-list,
  .booking-options,
  .cookie-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-option {
    min-height: 140px;
  }

  .cta-band__inner {
    gap: 28px;
  }

  .footer-main {
    gap: 0;
    padding-block: 46px 34px;
  }

  .footer-brand {
    padding-bottom: 27px;
  }

  .footer-col {
    padding: 21px 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-contact span {
    display: none;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 21px;
  }

  .cookie-actions .button--ghost {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 28px);
    --narrow: calc(100% - 28px);
  }

  .header-main,
  .breadcrumb {
    width: calc(100% - 28px);
  }

  h1,
  .page-hero h1,
  .detail-hero h1,
  .article-header h1,
  .legal-header h1 {
    font-size: clamp(2rem, 9.5vw, 2.35rem);
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .floating-contact,
  .cookie-notice,
  .cta-band {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }
}

/* Clean visual direction: photographic, spacious and concise */
.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-parent {
  display: flex;
  width: 100%;
  min-height: 64px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-parent svg {
  width: 18px;
  transition: transform .2s ease;
}

.mobile-nav-parent[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  padding: 8px 0 30px;
}

.mobile-submenu > div {
  display: grid;
  align-content: start;
  gap: 2px;
}

.mobile-submenu__heading {
  display: block;
  margin-bottom: 7px;
  color: var(--clay);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mobile-submenu a {
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-submenu--simple {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-clean {
  background: #fbfaf7;
}

.home-clean .site-header {
  position: absolute;
  right: 0;
  left: 0;
  border: 0;
  color: #fff;
  background: linear-gradient(to bottom, rgba(15, 28, 23, .48), transparent);
  backdrop-filter: none;
}

.home-clean .brand,
.home-clean .brand__sub,
.home-clean .nav-link,
.home-clean .nav-trigger,
.home-clean .header-instagram,
.home-clean .menu-toggle {
  color: #fff;
}

.home-clean .header-actions > .button {
  color: #fff;
  border-color: rgba(255, 255, 255, .8);
  background: transparent;
}

.home-clean .header-actions > .button:hover {
  color: var(--ink);
  background: #fff;
}

.home-clean.menu-open .site-header {
  position: fixed;
  color: var(--ink);
  background: rgba(251, 250, 247, .98);
  backdrop-filter: blur(12px);
}

.home-clean.menu-open .brand,
.home-clean.menu-open .brand__sub,
.home-clean.menu-open .menu-toggle {
  color: var(--ink);
}

.clean-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  color: #fff;
  background: #28352f;
}

.clean-hero__image,
.clean-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clean-hero__image {
  object-fit: cover;
  object-position: center 59%;
}

.clean-hero__veil {
  background: linear-gradient(90deg, rgba(20, 30, 26, .79) 0%, rgba(20, 30, 26, .48) 46%, rgba(20, 30, 26, .18) 78%), linear-gradient(0deg, rgba(14, 24, 20, .24), transparent 55%);
}

.clean-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 180px clamp(72px, 10vh, 112px);
}

.clean-hero h1 {
  max-width: 11ch;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3.8rem, 6.4vw, 6.5rem);
  font-style: italic;
  line-height: .95;
}

.clean-hero p {
  max-width: 50ch;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .93);
  font-size: 1.05rem;
  line-height: 1.65;
}

.clean-hero__links,
.clean-visit__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.clean-hero__links a,
.clean-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.clean-hero__links a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  padding-bottom: 4px;
}

.clean-hero__links a::after,
.clean-link::after {
  content: "⟶";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}

.clean-hero__links a:hover::after,
.clean-link:hover::after {
  transform: translateX(4px);
}

.clean-intro {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: clamp(90px, 10vw, 150px);
  background: #fbfaf7;
}

.clean-intro__media {
  width: min(1320px, calc(100% - 64px));
  min-height: 0;
  margin: 0 auto;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}

.clean-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.clean-intro__copy {
  display: flex;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 32px clamp(60px, 7vw, 92px);
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.clean-intro h2,
.clean-visit h2,
.clean-section-title h2 {
  margin-bottom: 27px;
  font-style: italic;
}

.clean-intro h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 1.02;
}

.clean-intro p {
  max-width: 54ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.clean-visit p {
  max-width: 47ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.clean-treatments {
  padding-block: clamp(90px, 11vw, 160px);
  background: #f1eee8;
}

.clean-section-title {
  display: flex;
  margin-bottom: 52px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  text-align: center;
}

.clean-section-title h2,
.clean-section-title p {
  margin-bottom: 0;
}

.clean-section-title p {
  color: var(--ink-soft);
}

.clean-section-title h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
}

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

.clean-treatment {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: #fff;
  background: #26372f;
  text-decoration: none;
}

.clean-treatment::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(13, 27, 21, .75), transparent 58%);
}

.clean-treatment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.clean-treatment:hover img {
  transform: scale(1.025);
}

.clean-treatment > span {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.clean-treatment strong,
.clean-treatment small {
  display: block;
}

.clean-treatment strong {
  margin-bottom: 7px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
}

.clean-treatment small {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.clean-brands {
  padding-block: clamp(82px, 9vw, 130px);
  background: #fff;
}

.clean-brands h2 {
  margin-bottom: clamp(42px, 5vw, 64px);
  font-family: "Manrope", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.clean-brand-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
}

.clean-brand-list span {
  color: #202a26;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(.95rem, 1.35vw, 1.3rem);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.clean-brand-list span:nth-child(3) {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: lowercase;
}

.clean-brand-list sup {
  font-size: .5em;
}

.clean-technology {
  padding-block: clamp(90px, 10vw, 150px);
  background: #f6f3ee;
}

.clean-technology__head {
  max-width: 930px;
  margin-bottom: clamp(42px, 5vw, 62px);
  text-align: center;
}

.clean-technology__head h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.4vw, 4.3rem);
  font-style: italic;
  line-height: 1.05;
}

.clean-technology__head p {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.clean-showcase {
  position: relative;
  height: clamp(520px, 52vw, 720px);
  overflow: hidden;
  background: #4d524e;
}

.clean-showcase__slides {
  position: relative;
  height: 100%;
}

.clean-showcase__slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .7s ease, opacity .7s ease;
}

.clean-showcase__slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.clean-showcase__slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 29, 25, .62), rgba(20, 29, 25, .38)), linear-gradient(0deg, rgba(15, 21, 18, .25), transparent 55%);
}

.clean-showcase__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.clean-showcase__slide > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 96px));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.clean-showcase__slide h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.clean-showcase__slide p {
  max-width: 62ch;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.7;
}

.clean-showcase__slide a {
  display: inline-flex;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .8);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.clean-showcase__dots {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 32px;
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 14px;
}

.clean-showcase__dots button {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .84);
  cursor: pointer;
}

.clean-showcase__dots button[aria-current="true"] {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  background: transparent;
}

.clean-showcase__dots button[aria-current="true"]::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  content: "";
  background: #fff;
}

.clean-visit {
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr);
  min-height: 680px;
  background: #fbfaf7;
}

.clean-visit__media {
  min-height: 620px;
  order: 2;
  overflow: hidden;
}

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

.clean-visit__copy {
  display: flex;
  max-width: 690px;
  margin-left: auto;
  padding: clamp(70px, 9vw, 150px);
  justify-content: center;
  flex-direction: column;
}

.clean-visit h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  line-height: 1.02;
}

.clean-trust {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: #fbfaf7;
}

.clean-trust .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clean-trust p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
}

@media (max-width: 1120px) {
  .mobile-menu {
    inset: 0;
    padding-top: 82px;
    background: rgba(251, 250, 247, .99);
  }

  .mobile-menu__inner {
    padding-top: 18px;
  }

  .clean-visit {
    grid-template-columns: 1fr 1fr;
  }

  .clean-visit__copy {
    padding: clamp(55px, 7vw, 90px);
  }

  .clean-brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }
}

@media (max-width: 760px) {
  .breadcrumb {
    overflow: visible;
  }

  .breadcrumb ol {
    padding-block: 12px;
    flex-wrap: wrap;
    row-gap: 4px;
    white-space: normal;
  }

  .breadcrumb li {
    white-space: normal;
  }

  .breadcrumb ol:has(li:nth-child(3)) li:nth-child(2) {
    display: none;
  }

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

  .mobile-menu__inner > a:not(.button),
  .mobile-menu__small a,
  .mobile-nav-parent {
    min-height: 58px;
    font-size: 1rem;
  }

  .mobile-menu__inner > a:not(.button),
  .mobile-nav-parent {
    letter-spacing: .035em;
    text-transform: uppercase;
  }

  .clean-hero {
    min-height: 100svh;
  }

  .clean-hero__image {
    object-position: 51% center;
  }

  .clean-hero__veil {
    background: linear-gradient(0deg, rgba(17, 29, 24, .78) 0%, rgba(17, 29, 24, .4) 70%, rgba(17, 29, 24, .52) 100%);
  }

  .clean-hero__content {
    padding-block: 150px 58px;
  }

  .clean-hero h1 {
    max-width: 10ch;
    margin-bottom: 21px;
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .clean-hero p {
    max-width: 34ch;
    margin-bottom: 27px;
    font-size: .96rem;
    line-height: 1.6;
  }

  .clean-hero__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .clean-visit {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .clean-visit__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .clean-visit__copy {
    max-width: none;
    padding: 68px 24px 76px;
  }

  .clean-visit h2 {
    max-width: 11ch;
    margin-bottom: 21px;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .clean-intro {
    padding-block: 76px;
  }

  .clean-intro__copy {
    padding: 0 24px 52px;
  }

  .clean-intro h2 {
    max-width: 12ch;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .clean-intro__media {
    width: calc(100% - 32px);
    aspect-ratio: 4 / 4.5;
  }

  .clean-treatments {
    padding-block: 76px;
  }

  .clean-section-title {
    margin-bottom: 34px;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .clean-section-title h2 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .clean-treatment-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clean-treatment {
    aspect-ratio: 4 / 4.7;
  }

  .clean-brands {
    padding-block: 72px;
  }

  .clean-brands h2 {
    max-width: 25ch;
    margin-right: auto;
    margin-bottom: 42px;
    margin-left: auto;
  }

  .clean-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .clean-brand-list span {
    white-space: normal;
  }

  .clean-technology {
    padding-block: 76px;
  }

  .clean-technology__head {
    margin-bottom: 34px;
  }

  .clean-technology__head h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.15rem);
  }

  .clean-showcase {
    width: calc(100% - 32px);
    height: 620px;
  }

  .clean-showcase__slide > div {
    top: 47%;
    width: calc(100% - 48px);
  }

  .clean-showcase__slide h3 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .clean-showcase__slide p {
    font-size: .94rem;
  }

  .clean-showcase__dots {
    right: 50%;
    bottom: 28px;
    transform: translateX(50%);
  }

  .clean-visit__media {
    order: 0;
  }

  .clean-visit__copy {
    margin: 0;
  }

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

  .clean-trust {
    padding-block: 28px;
  }

  .clean-trust .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* Editorial composition system — 2026-08-31 v2 */
.section-head {
  max-width: 1040px;
  margin: 0 auto clamp(42px, 5vw, 68px);
  text-align: center;
}

.section-head .section-title,
.section-head h2 {
  max-width: 26ch;
  margin-inline: auto;
}

.section-head > p,
.section-intro {
  max-width: 72ch;
  margin: 22px auto 0;
}

.page-hero,
.detail-hero {
  padding-block: clamp(62px, 7vw, 106px);
}

.page-hero-grid,
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 6vw, 78px);
  align-items: start;
}

.page-hero-copy,
.detail-hero-copy,
.detail-hero-grid > div:first-child {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1,
.detail-hero h1 {
  max-width: 22ch;
  margin: 0 auto 26px;
  font-size: clamp(3rem, 5.4vw, 5.15rem);
  line-height: .98;
}

.page-hero p,
.detail-hero .hero-lead,
.detail-hero-grid > div:first-child > p {
  max-width: 70ch;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
  text-align: center;
}

.page-hero .button-row,
.detail-hero .button-row {
  justify-content: center;
}

.page-hero-media,
.detail-hero-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7;
  margin-inline: auto;
  border-radius: 2px;
}

.page-hero-media img,
.detail-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 32%;
}

.content-split {
  max-width: 1100px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 5vw, 64px);
  align-items: start;
}

.content-split > div:not(.page-hero-media) {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
}

.content-split > div:not(.page-hero-media) > .eyebrow,
.content-split > div:not(.page-hero-media) > h2 {
  display: block;
  max-width: 26ch;
  margin-inline: auto;
  text-align: center;
}

.content-split > .page-hero-media {
  aspect-ratio: 16 / 8;
}

.contact-location__head {
  margin-bottom: 46px;
}

.contact-lines--grid {
  display: grid;
  margin: 0 0 32px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-lines--grid .contact-line {
  display: grid;
  padding: 30px clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  text-align: left;
}

.contact-lines--grid .contact-line:last-child {
  border-right: 0;
}

.contact-line svg {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.contact-line strong {
  white-space: normal;
}

.contact-location__actions {
  margin-bottom: clamp(42px, 5vw, 64px);
  justify-content: center;
}

.map-panel--wide {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7;
}

.map-panel--wide iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.map-panel--wide .map-preview {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-panel--wide .map-preview h3,
.map-panel--wide .map-preview p {
  max-width: 30ch;
  margin-inline: auto;
}

.map-panel--wide .map-actions {
  justify-content: center;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.clinic-gallery a {
  display: block;
  overflow: hidden;
  background: var(--stone);
}

.clinic-gallery a:not(.clinic-gallery__consultation):not(.clinic-gallery__doctor):not(.clinic-gallery__facade) {
  grid-column: span 4;
}

.clinic-gallery__consultation {
  grid-column: span 8;
  grid-row: span 2;
}

.clinic-gallery__doctor {
  grid-column: span 4;
  grid-row: span 2;
}

.clinic-gallery__facade {
  grid-column: 1 / -1;
}

.clinic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.clinic-gallery a:hover img {
  transform: scale(1.015);
}

.clinic-gallery__consultation img {
  object-position: center;
}

.clinic-gallery__doctor img {
  object-position: center 28%;
}

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

@media (max-width: 860px) {
  .page-hero-grid,
  .detail-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .page-hero-copy,
  .detail-hero-copy,
  .detail-hero-grid > div:first-child {
    max-width: none;
  }

  .page-hero-media,
  .detail-hero-media,
  .page-hero-media img,
  .detail-hero-media img {
    min-height: 0;
  }

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

  .contact-lines--grid .contact-line {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-lines--grid .contact-line:last-child {
    border-bottom: 0;
  }

  .map-panel--wide,
  .map-panel--wide iframe {
    min-height: 0;
  }

  .clinic-gallery {
    grid-auto-rows: 220px;
  }
}

@media (max-width: 620px) {
  .section-head {
    margin-bottom: 38px;
  }

  .page-hero,
  .detail-hero {
    padding-block: 48px 62px;
  }

  .page-hero h1,
  .detail-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .page-hero p,
  .detail-hero .hero-lead,
  .detail-hero-grid > div:first-child > p {
    font-size: .98rem;
    line-height: 1.68;
  }

  .page-hero .button-row,
  .detail-hero .button-row {
    max-width: 440px;
    margin-inline: auto;
  }

  .page-hero-media,
  .detail-hero-media {
    aspect-ratio: 4 / 3;
  }

  .content-split > .page-hero-media {
    aspect-ratio: 4 / 3;
  }

  .contact-lines--grid .contact-line {
    padding: 25px 6px;
  }

  .map-panel--wide {
    min-height: 430px;
    aspect-ratio: auto;
  }

  .map-panel--wide .map-preview {
    align-items: flex-start;
    padding: 28px 24px;
    text-align: left;
  }

  .map-panel--wide .map-preview h3,
  .map-panel--wide .map-preview p {
    margin-inline: 0;
  }

  .map-panel--wide .map-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .clinic-gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }

  .clinic-gallery a,
  .clinic-gallery a:not(.clinic-gallery__consultation):not(.clinic-gallery__doctor):not(.clinic-gallery__facade),
  .clinic-gallery__consultation,
  .clinic-gallery__doctor,
  .clinic-gallery__facade {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .clinic-gallery a.clinic-gallery__doctor {
    aspect-ratio: 4 / 5;
  }

  .clinic-gallery a.clinic-gallery__facade {
    aspect-ratio: 16 / 10;
  }
}
