/* Casa Aesthetic Premium v3.0.0 — light medical editorial system */
:root {
  --ink: #18352f;
  --ink-2: #2d4741;
  --muted: #65746f;
  --green: #1f5d50;
  --green-strong: #16483f;
  --green-soft: #e9f2ee;
  --green-pale: #f3f7f5;
  --gold: #af8244;
  --gold-soft: #f4eadc;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --line: #dce5e0;
  --line-dark: #cbd8d2;
  --danger: #a33f3f;
  --success: #276c54;
  --shadow-sm: 0 10px 30px rgba(27, 59, 51, .08);
  --shadow-md: 0 24px 70px rgba(27, 59, 51, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
  background: var(--cream);
}

body {
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button { color: inherit; }

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

h1, h2, h3 {
  margin-bottom: .75rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.7rem, 5vw, 5.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { margin-bottom: 1rem; }

::selection {
  color: var(--paper);
  background: var(--green);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--green-strong);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(175, 130, 68, .65);
  outline-offset: 4px;
}

.topbar {
  color: rgba(255, 255, 255, .92);
  background: var(--green-strong);
  font-size: .82rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar svg { width: 15px; height: 15px; flex: 0 0 auto; }

.topbar__links a { display: inline-flex; align-items: center; gap: 6px; }

.topbar a {
  transition: color .2s ease;
}

.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 224, .86);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(24, 53, 47, .07); }

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  width: min(250px, 22vw);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.primary-nav__panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav__panel a {
  position: relative;
  padding-block: 28px;
  color: var(--ink-2);
  font-size: .94rem;
  font-weight: 650;
}

.primary-nav__panel a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.primary-nav__panel a:hover::after,
.primary-nav__panel a.is-active::after { transform: scaleX(1); }

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

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(3) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-last-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-last-child(1) { transform: translateY(-6px) rotate(-45deg); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button svg { transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }

.button--primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(31, 93, 80, .18);
}

.button--primary:hover {
  background: var(--green-strong);
  box-shadow: 0 16px 34px rgba(31, 93, 80, .24);
}

.button--secondary {
  color: var(--green-strong);
  background: #fff;
  border-color: var(--line-dark);
}

.button--secondary:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

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

.button--outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .84rem;
}

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

.header-cta {
  min-height: 44px;
  padding: 11px 16px;
  flex: 0 0 auto;
}

.eyebrow,
.kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow svg { width: 18px; height: 18px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 750;
}

.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.center {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--light {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 12% 8%, rgba(175, 130, 68, .13), transparent 30%),
    linear-gradient(135deg, #f8f5ee, #eef5f1 68%, #f8f5ee);
}

.hero__wash {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  bottom: -360px;
  border: 1px solid rgba(31, 93, 80, .12);
  border-radius: 50%;
}

.hero__wash::before,
.hero__wash::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(31, 93, 80, .1);
  border-radius: inherit;
}

.hero__wash::after { inset: 130px; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .72fr) minmax(320px, .58fr);
  align-items: center;
  gap: 34px;
}

.hero__content h1 {
  max-width: 790px;
  margin-bottom: 24px;
}

.hero__content h1 em {
  color: var(--green);
  font-weight: inherit;
}

.hero__lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

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

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: .9rem;
}

.hero__trust strong {
  width: 34px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .08em;
}

.hero__visual { position: relative; }

.hero__photo {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  background: var(--green-soft);
  border: 8px solid rgba(255, 255, 255, .75);
  border-radius: 180px 180px 36px 36px;
  box-shadow: var(--shadow-md);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center top;
}

.hero__note {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: min(280px, 84%);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.hero__note p { margin: 0; font-size: .82rem; line-height: 1.45; }
.hero__note strong { color: var(--ink); }

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex: 0 0 auto;
  background: #4f9a72;
  border: 3px solid #dff2e7;
  border-radius: 50%;
  box-sizing: content-box;
}

.consultation-card,
.contact-form-card {
  padding: 28px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(203, 216, 210, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.consultation-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.consultation-card > p,
.contact-form-card > p { color: var(--muted); }

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.lead-form--compact {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.form-field { min-width: 0; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field textarea {
  min-height: 94px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 93, 80, .1);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  background: #fffafa;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--danger);
  font-size: .76rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent a {
  color: var(--green);
  text-decoration: underline;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}

.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }

.trust-strip {
  color: #fff;
  background: var(--green-strong);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__grid > div {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.trust-strip__grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .14); }

.trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.trust-strip span {
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
}

.section { padding: 100px 0; }
.section--soft { background: var(--green-pale); }
.section--intro { padding-bottom: 112px; }

.split-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.split-heading p,
.section-heading > p { color: var(--muted); }

.split-heading h2,
.section-heading h2 { margin-bottom: 0; }

.clinic-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .48fr);
  gap: 24px;
}

.clinic-gallery__large {
  overflow: hidden;
  min-height: 480px;
  margin: 0;
  border-radius: var(--radius-lg);
}

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

.clinic-gallery__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius-lg);
}

.clinic-gallery__card span {
  margin-bottom: auto;
  color: #d8c09a;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.clinic-gallery__card h3 {
  color: #fff;
  font-size: 2.1rem;
}

.clinic-gallery__card p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.filter-button:hover { transform: translateY(-1px); }
.filter-button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.expertise-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(24, 53, 47, .045);
  transition: transform .3s var(--ease), box-shadow .3s ease, opacity .2s ease;
}

.expertise-card[hidden] { display: none; }

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.expertise-card figure {
  overflow: hidden;
  height: 205px;
  margin: 0;
  background: var(--green-soft);
}

.expertise-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.expertise-card:hover figure img { transform: scale(1.04); }

.expertise-card__body {
  position: relative;
  padding: 28px;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--line-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.expertise-card h3 { padding-right: 48px; }

.expertise-card__body > p:not(.card-kicker) {
  color: var(--muted);
  font-size: .9rem;
}

.expertise-card ul,
.catalog-card ul,
.sticky-card ul,
.feature-list,
.content-list {
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.expertise-card li,
.catalog-card li,
.sticky-card li,
.feature-list li,
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 9px 0;
  color: var(--ink-2);
  font-size: .86rem;
}

.expertise-card li svg,
.catalog-card li svg,
.sticky-card li svg,
.feature-list li svg,
.content-list li svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  flex: 0 0 auto;
  color: var(--gold);
}

.expertise-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: .84rem;
  font-weight: 750;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  margin-top: 32px;
  background: var(--gold-soft);
  border-radius: var(--radius);
}

.section-cta p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

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

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: var(--green-strong);
}

.signature-card > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s ease;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 39, .94), rgba(15, 45, 39, .08) 70%);
}

.signature-card:hover > img { transform: scale(1.05); }

.signature-card__overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: #fff;
}

.signature-card__overlay > span {
  color: #ead3ac;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 8px 0 10px;
  color: #fff;
}

.signature-card p {
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
}

.signature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 750;
}

.section--expert {
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
    radial-gradient(circle at 80% 10%, rgba(175, 130, 68, .18), transparent 35%),
    var(--paper);
}

.expert-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.expert-layout__photo {
  position: relative;
  width: min(100%, 480px);
  justify-self: center;
}

.expert-layout__photo > img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: top;
  border-radius: 220px 220px 30px 30px;
  box-shadow: var(--shadow-md);
}

.expert-layout__badge {
  position: absolute;
  right: -28px;
  bottom: 52px;
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background: var(--green);
  border: 7px solid var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.expert-layout__badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.expert-layout__badge span {
  font-size: .7rem;
  line-height: 1.25;
}

.expert-title {
  color: var(--gold);
  font-weight: 750;
}

.expert-layout__content > p:not(.eyebrow):not(.expert-title) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
  margin-block: 26px 32px;
}

.steps-grid,
.values-grid,
.commitments-grid {
  display: grid;
  gap: 18px;
}

.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.values-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.commitments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.steps-grid article,
.values-grid article,
.commitments-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps-grid span,
.values-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.steps-grid p,
.values-grid p,
.commitments-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

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

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

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.article-card[hidden] { display: none; }

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.article-card__image {
  display: block;
  overflow: hidden;
  height: 190px;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.article-card:hover .article-card__image img { transform: scale(1.04); }

.article-card__body { padding: 24px; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.article-meta span:first-child {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-card h3 {
  font-size: 1.42rem;
}

.article-card h3 a:hover { color: var(--green); }

.article-card p {
  color: var(--muted);
  font-size: .85rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr);
  gap: 80px;
}

.faq-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); }

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

.accordion__item {
  border-bottom: 1px solid var(--line-dark);
}

.accordion__item h3 { margin: 0; }

.accordion__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.accordion__item button > span:first-child {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.accordion__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--green);
  transition: transform .25s ease;
}

.accordion__icon::after { transform: rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: rotate(0); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}

.accordion__panel > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__panel > p {
  padding-bottom: 24px;
}

.contact-band {
  padding: 0;
  color: #fff;
  background: var(--green-strong);
}

.contact-band--inline { margin-bottom: 0; }

.contact-band__inner {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-band p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.contact-band .eyebrow { color: #e0c492; }

.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #fff;
  background: #237a57;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(24, 53, 47, .24);
  font-size: .82rem;
  font-weight: 800;
  transition: transform .25s var(--ease);
}

.floating-whatsapp:hover { transform: translateY(-3px); }

.site-footer {
  padding: 74px 0 0;
  background: #f1f4f1;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .75fr 1.15fr;
  gap: 46px;
  padding-bottom: 54px;
}

.footer__brand img {
  width: 250px;
  margin-bottom: 20px;
}

.footer__brand p {
  max-width: 420px;
  color: var(--muted);
  font-size: .88rem;
}

.footer__instagram {
  color: var(--green);
  font-weight: 750;
}

.footer__grid h2 {
  margin-bottom: 20px;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer__grid > div:not(.footer__brand) > a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: .86rem;
}

.footer__grid a:hover { color: var(--green); }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .83rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  color: var(--gold);
}

.footer__bottom {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .73rem;
}

.footer__bottom p { margin: 0; }
.footer__bottom p:last-child { text-align: right; }
.footer__bottom > div { display: flex; gap: 18px; }
.footer__bottom a { color: var(--green); }

/* Inner pages */
.breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: .75rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line-dark);
}

.breadcrumb a:hover { color: var(--green); }

.page-hero {
  padding: 56px 0 76px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr);
  align-items: center;
  gap: 70px;
}

.page-hero h1 { font-size: clamp(2.8rem, 5vw, 5.1rem); }
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-hero figure {
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: 180px 180px 30px 30px;
  box-shadow: var(--shadow-md);
}

.page-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-hero--blog figure { border-radius: var(--radius-lg); }
.page-hero--contact { padding-bottom: 60px; }

.notice {
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
}

.notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.notice p { margin: 0; color: var(--muted); }

.notice--medical { margin-bottom: 40px; }

.catalog-grid {
  display: grid;
  gap: 24px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-card__media {
  position: relative;
  min-height: 420px;
}

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

.catalog-card__media > span {
  position: absolute;
  top: 24px;
  left: 24px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(22, 72, 63, .9);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.catalog-card__content {
  padding: 44px;
}

.catalog-card__content > p:not(.card-kicker) { color: var(--muted); }

.catalog-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

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

.service-teaser {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-teaser img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-teaser > div { padding: 26px; }

.service-teaser span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-teaser p { color: var(--muted); font-size: .87rem; }
.service-teaser a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: .84rem;
  font-weight: 750;
}

.detail-hero {
  padding: 54px 0 72px;
  background: linear-gradient(135deg, #f7f3eb, #edf4f1);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  align-items: center;
  gap: 70px;
}

.detail-hero h1 { font-size: clamp(2.8rem, 5vw, 5rem); }

.detail-hero__lead {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-hero figure {
  overflow: hidden;
  min-height: 450px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.detail-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  align-items: start;
  gap: 80px;
}

.prose {
  max-width: 790px;
}

.content-section {
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.content-section:last-child { margin-bottom: 0; }

.content-section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.content-list li {
  margin: 15px 0;
  color: var(--ink-2);
  font-size: 1rem;
}

.sticky-card {
  position: sticky;
  top: 118px;
  padding: 30px;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sticky-card h2 { font-size: 1.75rem; }
.sticky-card > p:not(.kicker) { color: var(--muted); }

.contact-quick {
  display: grid;
  gap: 12px;
}

.contact-quick > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-quick > a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.contact-quick svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-quick small {
  display: block;
  color: var(--muted);
}

.contact-quick strong { font-size: .95rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
  align-items: start;
  gap: 40px;
}

.contact-info-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-info-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-info-card > div { padding: 28px; }

.contact-info-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .88rem;
}

.contact-info-card svg {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  flex: 0 0 auto;
  color: var(--gold);
}

.article-hero {
  padding: 46px 0 68px;
}

.article-hero__inner {
  max-width: 1060px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  align-items: center;
  gap: 60px;
}

.article-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

.article-deck {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.article-author {
  color: var(--muted);
  font-size: .78rem;
}

.article-hero figure {
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: var(--radius-lg);
}

.article-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, .26fr) minmax(0, 740px);
  justify-content: center;
  align-items: start;
  gap: 70px;
  padding-bottom: 100px;
}

.article-aside {
  position: sticky;
  top: 118px;
  padding: 24px;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-aside p:not(.kicker) { color: var(--muted); font-size: .85rem; }

.article-content {
  color: var(--ink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-content > section {
  margin-bottom: 48px;
}

.article-content h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.article-content p { margin-bottom: 1.25rem; }

.article-content .accordion {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.medical-disclaimer {
  padding: 24px 26px;
  margin: 52px 0;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .9rem;
  line-height: 1.6;
}

.medical-disclaimer p { margin: 5px 0 0; }

.article-sources {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .88rem;
  line-height: 1.6;
}

.article-sources > p { color: var(--muted); }

.article-sources ul { padding-left: 20px; }
.article-sources a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: 70px 0 34px;
  background: var(--green-pale);
}

.legal-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal-hero p:not(.eyebrow) { color: var(--muted); }

.legal-prose {
  max-width: 840px;
}

.legal-prose h2 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.legal-prose p {
  color: var(--ink-2);
}

.legal-prose a {
  color: var(--green);
  text-decoration: underline;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found .container { max-width: 800px; }
.not-found p:not(.eyebrow) { color: var(--muted); }
.not-found > .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

/* Responsive */
@media (max-width: 1120px) {
  .header-cta { display: none; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  }
  .consultation-card {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .lead-form--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lead-form--compact .form-field--full { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signature-grid,
  .service-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1.1fr .65fr .75fr; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .topbar__inner { justify-content: center; }
  .topbar__inner > p { display: none; }
  .site-header__inner { gap: 16px; }
  .brand { width: 225px; max-width: calc(100% - 70px); }
  .menu-toggle { display: grid; }
  .primary-nav { margin-left: auto; }
  .primary-nav__panel {
    position: fixed;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 24px 20px 80px;
    background: rgba(251, 250, 246, .99);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s var(--ease), visibility .3s;
    overflow-y: auto;
  }
  .primary-nav__panel.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .primary-nav__panel a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
  }
  .primary-nav__panel a::after { display: none; }
  .hero--light { padding-top: 52px; }
  .hero__grid,
  .page-hero__grid,
  .detail-hero__grid,
  .article-hero__inner,
  .contact-layout,
  .expert-layout,
  .content-layout,
  .faq-layout,
  .split-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }
  .hero__grid { gap: 44px; }
  .hero__content { max-width: 720px; }
  .hero__visual { max-width: 530px; margin-inline: auto; }
  .hero__photo { min-height: 540px; }
  .hero__photo img { min-height: 540px; }
  .consultation-card { grid-column: auto; }
  .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 78px 0; }
  .split-heading,
  .section-heading { gap: 22px; margin-bottom: 40px; }
  .clinic-gallery { grid-template-columns: 1fr; }
  .clinic-gallery__card { min-height: 330px; }
  .expert-layout { gap: 50px; }
  .expert-layout__photo { max-width: 430px; }
  .steps-grid,
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commitments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-layout { gap: 34px; }
  .contact-band__inner { padding-block: 48px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: auto; display: block; }
  .footer__bottom { grid-template-columns: 1fr; justify-items: center; padding-block: 22px; text-align: center; }
  .footer__bottom p:last-child { text-align: center; }
  .page-hero__grid,
  .detail-hero__grid { gap: 42px; }
  .page-hero figure,
  .page-hero figure img,
  .detail-hero figure,
  .detail-hero figure img { min-height: 380px; }
  .content-layout { gap: 42px; }
  .sticky-card,
  .article-aside { position: static; }
  .article-layout { grid-template-columns: 1fr; max-width: 780px; gap: 32px; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card__media { min-height: 340px; }
  .article-hero__inner { gap: 34px; }
  .article-hero figure,
  .article-hero figure img { min-height: 360px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__links { width: 100%; justify-content: center; gap: 12px; font-size: .75rem; }
  .topbar__email,
  .topbar__separator { display: none !important; }
  .topbar__phone span,
  .topbar__whatsapp span { display: inline; }
  .brand { width: 205px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero--light { padding: 38px 0 44px; }
  .hero__lead { font-size: 1rem; }
  .hero__actions .button { width: 100%; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__photo,
  .hero__photo img { min-height: 470px; }
  .hero__note { right: 10px; bottom: 16px; }
  .consultation-card,
  .contact-form-card { padding: 22px; }
  .lead-form,
  .lead-form--compact { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid > div { min-height: 90px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .trust-strip strong { font-size: 1.15rem; }
  .section { padding: 64px 0; }
  .clinic-gallery__large { min-height: 350px; }
  .clinic-gallery__card { min-height: 300px; padding: 28px; }
  .expertise-grid,
  .signature-grid,
  .service-teaser-grid,
  .article-grid,
  .article-grid--all,
  .steps-grid,
  .values-grid,
  .commitments-grid { grid-template-columns: 1fr; }
  .section-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }
  .section-cta .button { width: 100%; }
  .signature-card,
  .signature-card > img { min-height: 400px; }
  .expert-layout__photo { width: calc(100% - 20px); }
  .expert-layout__badge { right: -8px; bottom: 28px; width: 116px; height: 116px; }
  .feature-list { grid-template-columns: 1fr; }
  .contact-band__inner {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
  }
  .contact-band__actions { justify-content: stretch; }
  .contact-band__actions .button,
  .contact-band__inner > .button { width: 100%; }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }
  .floating-whatsapp span { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__contact { grid-column: auto; }
  .page-hero { padding: 38px 0 58px; }
  .page-hero figure,
  .page-hero figure img,
  .detail-hero figure,
  .detail-hero figure img,
  .article-hero figure,
  .article-hero figure img { min-height: 320px; }
  .catalog-card__media { min-height: 260px; }
  .catalog-card__content { padding: 28px 23px; }
  .catalog-card ul { grid-template-columns: 1fr; }
  .detail-hero { padding: 38px 0 56px; }
  .detail-hero__actions .button { width: 100%; }
  .contact-quick strong { font-size: .82rem; overflow-wrap: anywhere; }
  .article-hero { padding: 34px 0 50px; }
  .article-layout { padding-bottom: 68px; }
  .article-content { font-size: 1rem; line-height: 1.8; }
  .not-found > .container > div .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Casa Aesthetic Premium v3.0.0
   Beauty-editorial direction inspired by the supplied visual
   reference, rebuilt for Casa Aesthetic's medical identity.
   ========================================================= */
:root {
  --ink: #17352f;
  --ink-2: #304943;
  --muted: #6c7b76;
  --green: #1e5b4e;
  --green-strong: #123f36;
  --green-soft: #eaf3ef;
  --green-pale: #f5f9f7;
  --gold: #c78a42;
  --gold-deep: #a96e2c;
  --gold-soft: #f7ead9;
  --rose-soft: #fff5f2;
  --cream: #fffdf9;
  --paper: #ffffff;
  --line: #e6e8e1;
  --line-dark: #d7ddd8;
  --shadow-sm: 0 14px 34px rgba(24, 53, 47, .08);
  --shadow-md: 0 30px 80px rgba(24, 53, 47, .14);
  --shadow-gold: 0 24px 60px rgba(199, 138, 66, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1240px;
  --header-height: 86px;
}

body {
  background: var(--paper);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.eyebrow {
  color: var(--gold-deep);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 800;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
  opacity: .6;
}

.button {
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.button--primary:hover {
  background: var(--green-strong);
  border-color: var(--green-strong);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--green-strong);
  background: transparent;
  border-color: rgba(30, 91, 78, .36);
}

.button--secondary:hover {
  color: var(--paper);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.topbar {
  color: rgba(255,255,255,.92);
  background: var(--green-strong);
}

.topbar__inner {
  min-height: 34px;
}

.topbar__links {
  gap: 18px;
}

.topbar__links a {
  padding-left: 17px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(23,53,47,.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  width: min(242px, 22vw);
}

.primary-nav__panel {
  gap: 32px;
}

.primary-nav__panel a {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.primary-nav__panel a::after {
  bottom: 17px;
  height: 1px;
  background: var(--gold);
}

.header-cta {
  min-height: 44px;
  padding-inline: 20px;
  white-space: nowrap;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 15%, rgba(199,138,66,.08), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(30,91,78,.07), transparent 22%),
    var(--green-pale);
}

.section-heading--center {
  display: block;
  max-width: 820px;
  margin-bottom: 60px;
  text-align: center;
}

.section-heading--center > div,
.section-heading--center > p {
  width: 100%;
  max-width: 100%;
}

.section-heading--center > p {
  max-width: 690px;
  margin: 18px auto 0;
}

.section-heading--center .eyebrow::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: currentColor;
  opacity: .6;
}

/* Hero */
.bz-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(199,138,66,.12), transparent 22%),
    linear-gradient(105deg, #fffdf9 0 54%, #f5eee4 54% 100%);
}

.bz-hero::before,
.bz-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(199,138,66,.22);
  border-radius: 50%;
}

.bz-hero::before {
  width: 360px;
  height: 360px;
  left: -190px;
  top: 80px;
}

.bz-hero::after {
  width: 210px;
  height: 210px;
  right: 41%;
  bottom: -125px;
}

.bz-hero__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(120deg, transparent 48%, rgba(199,138,66,.08) 49%, transparent 50%),
    linear-gradient(60deg, transparent 48%, rgba(30,91,78,.05) 49%, transparent 50%);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 42%, #000);
}

.bz-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.bz-hero__content {
  padding: 78px 0 84px;
}

.bz-hero__content h1 {
  max-width: 750px;
  margin: 14px 0 25px;
  font-size: clamp(3.35rem, 5.6vw, 6.4rem);
  line-height: .96;
}

.bz-hero__content h1 em {
  display: block;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
}

.bz-hero__lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.bz-hero__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(23,53,47,.12);
}

.bz-hero__contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.bz-hero__contact svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--gold-deep);
  border: 1px solid rgba(199,138,66,.35);
  border-radius: 50%;
}

.bz-hero__contact span {
  display: grid;
  line-height: 1.2;
}

.bz-hero__contact small {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bz-hero__contact strong {
  margin-top: 4px;
  font-size: .95rem;
}

.bz-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 690px;
}

.bz-hero__main-image {
  position: absolute;
  inset: 0 -7vw 0 55px;
  overflow: hidden;
  border-radius: 52% 0 0 44% / 48% 0 0 52%;
  box-shadow: -32px 34px 70px rgba(49,49,38,.16);
}

.bz-hero__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,253,249,.15), transparent 42%);
}

.bz-hero__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.bz-hero__mini-image {
  position: absolute;
  left: -20px;
  bottom: 52px;
  width: 240px;
  height: 160px;
  overflow: hidden;
  border: 9px solid var(--paper);
  box-shadow: var(--shadow-md);
}

.bz-hero__mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-hero__badge {
  position: absolute;
  top: 55px;
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 205px;
  padding: 18px 20px;
  color: var(--paper);
  background: var(--green-strong);
  box-shadow: var(--shadow-sm);
}

.bz-hero__badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.bz-hero__badge span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Circular service presentation */
.bz-intro {
  position: relative;
  background: var(--paper);
}

.bz-intro::before,
.bz-gallery::before,
.bz-blog::before {
  content: "";
  position: absolute;
  left: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(30,91,78,.08);
  border-radius: 42% 58% 68% 32% / 36% 39% 61% 64%;
  transform: rotate(18deg);
  pointer-events: none;
}

.bz-intro::before { top: 22%; }

.bz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 44px;
  margin-bottom: 52px;
}

.bz-service {
  text-align: center;
}

.bz-service__image {
  position: relative;
  display: block;
  width: min(250px, 78%);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  padding: 9px;
  border: 1px solid rgba(199,138,66,.5);
  border-radius: 50%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.bz-service__image::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(30,91,78,.22);
  border-radius: 50%;
  transition: transform .7s var(--ease);
}

.bz-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bz-service__image span {
  position: absolute;
  right: 2px;
  bottom: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--paper);
  background: var(--gold-deep);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-weight: 800;
}

.bz-service:hover .bz-service__image {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.bz-service:hover .bz-service__image::before {
  transform: rotate(30deg);
}

.bz-service h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.bz-service p {
  max-width: 350px;
  min-height: 80px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: .92rem;
}

.bz-service .text-link {
  justify-content: center;
}

/* Benefits row */
.bz-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bz-benefits article {
  position: relative;
  min-height: 245px;
  padding: 34px 27px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(23,53,47,.08);
  box-shadow: 0 16px 40px rgba(23,53,47,.06);
  transition: transform .3s var(--ease), border-color .3s ease;
}

.bz-benefits article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.bz-benefits article:hover {
  transform: translateY(-8px);
  border-color: rgba(199,138,66,.35);
}

.bz-benefits article:hover::after { transform: scaleX(1); }

.bz-benefit__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 50%;
}

.bz-benefit__icon svg {
  width: 25px;
  height: 25px;
}

.bz-benefits h3 { font-size: 1.35rem; }
.bz-benefits p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

/* Editorial gallery */
.bz-gallery {
  position: relative;
  overflow: hidden;
}

.bz-gallery::before {
  top: 48%;
  right: -120px;
  left: auto;
}

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

.bz-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--green-pale);
}

.bz-gallery__item--portrait { grid-column: span 3; grid-row: span 4; }
.bz-gallery__item--tall { grid-column: span 3; grid-row: span 5; }
.bz-gallery__item--wide { grid-column: span 6; grid-row: span 3; }
.bz-gallery__item--landscape { grid-column: span 6; grid-row: span 2; }

.bz-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .45s ease;
}

.bz-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,48,40,.82), transparent 65%);
  opacity: .76;
  transition: opacity .35s ease;
}

.bz-gallery__item > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.bz-gallery__item > span small {
  display: block;
  color: rgba(255,255,255,.68);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bz-gallery__item > span svg { flex: 0 0 auto; }

.bz-gallery__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.bz-gallery__item:hover::after { opacity: .96; }

/* Clinic experience banner */
.bz-experience {
  padding-top: 28px;
}

.bz-experience__card {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px;
  color: var(--paper);
  box-shadow: var(--shadow-md);
}

.bz-experience__card > img,
.bz-experience__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bz-experience__card > img { object-fit: cover; }

.bz-experience__shade {
  background: linear-gradient(90deg, rgba(10,42,35,.94) 0 42%, rgba(10,42,35,.62) 68%, rgba(10,42,35,.22));
}

.bz-experience__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.bz-experience__content .eyebrow { color: #e8bd82; }
.bz-experience__content h2 { color: var(--paper); }
.bz-experience__content p { color: rgba(255,255,255,.78); }

.bz-experience__stats {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(570px, calc(100% - 60px));
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}

.bz-experience__stats li {
  display: grid;
  gap: 2px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.bz-experience__stats li:last-child { border-right: 0; }
.bz-experience__stats strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; }
.bz-experience__stats span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; }

/* Expert — intentionally one section only */
.bz-expert {
  background: linear-gradient(90deg, var(--rose-soft) 0 38%, var(--paper) 38% 100%);
}

.bz-expert__grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 88px;
}

.bz-expert__visual {
  position: relative;
  max-width: 470px;
  margin-inline: auto;
}

.bz-expert__visual::before {
  content: "";
  position: absolute;
  inset: -18px 24px 30px -18px;
  border: 1px solid rgba(199,138,66,.55);
}

.bz-expert__visual img {
  position: relative;
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-md);
}

.bz-expert__stamp {
  position: absolute;
  right: -38px;
  bottom: 34px;
  display: grid;
  width: 132px;
  height: 132px;
  place-content: center;
  text-align: center;
  color: var(--paper);
  background: var(--green-strong);
  border: 8px solid var(--paper);
  border-radius: 50%;
}

.bz-expert__stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.bz-expert__stamp span { max-width: 88px; color: rgba(255,255,255,.68); font-size: .65rem; line-height: 1.25; }

.bz-expert__content {
  max-width: 680px;
}

.bz-expert__content h2 { font-size: clamp(2.8rem, 4.5vw, 5.2rem); }
.bz-expert__content > p:not(.eyebrow):not(.expert-title) { max-width: 650px; color: var(--muted); }

/* Testimonials */
.bz-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bz-testimonials article {
  position: relative;
  padding: 34px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(23,53,47,.08);
  box-shadow: 0 18px 46px rgba(23,53,47,.07);
}

.bz-testimonials article::after {
  content: "”";
  position: absolute;
  top: 12px;
  right: 24px;
  color: rgba(199,138,66,.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
}

.bz-stars {
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: .15em;
}

.bz-testimonials blockquote {
  position: relative;
  z-index: 1;
  min-height: 132px;
  margin: 0 0 25px;
  color: var(--ink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.bz-testimonials footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bz-testimonials footer > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}

.bz-testimonials footer p { display: grid; margin: 0; line-height: 1.25; }
.bz-testimonials footer small { color: var(--muted); }

/* Blog */
.bz-blog {
  position: relative;
}

.bz-blog::before {
  top: 28%;
}

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

.article-card {
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: none;
}

.article-card__image {
  aspect-ratio: 1.45;
}

.article-card__body {
  padding: 26px;
}

.article-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(199,138,66,.42);
}

/* Consultation */
.bz-consultation__grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.bz-consultation__image {
  position: relative;
  min-height: 620px;
}

.bz-consultation__image > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.bz-consultation__image > div {
  position: absolute;
  right: -28px;
  bottom: 38px;
  min-width: 230px;
  padding: 22px 25px;
  color: var(--paper);
  background: var(--green-strong);
  box-shadow: var(--shadow-md);
}

.bz-consultation__image p { margin-bottom: 2px; color: rgba(255,255,255,.67); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.bz-consultation__image strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }

.bz-consultation__content h2 { max-width: 680px; }
.bz-consultation__content > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.bz-consultation .lead-form { margin-top: 30px; padding: 0; background: transparent; border: 0; box-shadow: none; }

/* About page gallery */
.bz-about-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.bz-about-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
}

.bz-about-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-about-gallery__main {
  grid-row: 1 / span 2;
}

.bz-about-gallery__note {
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  align-self: end;
  margin: 0 22px 22px -90px;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.bz-about-gallery__note h2 { font-size: 1.9rem; }
.bz-about-gallery__note p { color: var(--muted); }

.page-hero--clinic {
  background: linear-gradient(110deg, var(--rose-soft), var(--paper));
}

.values-grid--numbered article {
  border-top-color: var(--gold);
}

/* Footer */
.footer-gallery {
  overflow: hidden;
  background: var(--paper);
}

.footer-gallery__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 150px;
}

.footer-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(.86);
  transition: filter .3s ease, transform .45s var(--ease);
}

.footer-gallery img:hover {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.site-footer {
  color: var(--ink-2);
  background: #fff9f2;
  border-top: 0;
}

.footer__brand img {
  width: 250px;
}

.footer__grid h2 {
  color: var(--ink);
}

.footer__grid > div:not(.footer__brand) > a,
.footer__brand p,
.footer__contact p {
  color: var(--muted);
}

.footer__grid a:hover {
  color: var(--gold-deep);
}

.footer__bottom {
  border-top-color: rgba(23,53,47,.1);
}

/* Side action tabs: visual cue from the reference, accessible labels preserved */
.floating-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  top: 44%;
  display: grid;
  gap: 3px;
  transform: translateY(-50%);
}

.floating-action {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 118px;
  padding: 12px 14px;
  color: var(--paper);
  background: var(--gold-deep);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 10px 24px rgba(23,53,47,.15);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translateX(77px);
  transition: transform .28s var(--ease), background .2s ease;
}

.floating-action svg { width: 20px; height: 20px; flex: 0 0 auto; }
.floating-action:hover,
.floating-action:focus-visible { transform: translateX(0); background: var(--green-strong); }
.floating-action--whatsapp { background: var(--green); }

/* Inner pages: align them with the new editorial system */
.page-hero,
.detail-hero,
.article-hero,
.legal-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(199,138,66,.12), transparent 26%),
    linear-gradient(110deg, #fffaf3, #ffffff);
}

.page-hero figure,
.detail-hero figure,
.article-hero figure {
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

.expertise-card,
.signature-card,
.service-index-card,
.commitments-grid article,
.values-grid article,
.contact-info-card,
.article-aside {
  border-radius: 0;
}

.filter-button {
  border-radius: 2px;
}

/* Desktop refinement */
@media (min-width: 1180px) {
  .page-home-v3 .site-header__inner {
    grid-template-columns: 245px 1fr auto;
  }
}

@media (max-width: 1120px) {
  .bz-hero__grid {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 35px;
  }

  .bz-hero__main-image {
    left: 20px;
  }

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

  .bz-expert__grid,
  .bz-consultation__grid {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .topbar__inner > p,
  .topbar__links a:nth-child(2),
  .topbar__links a:nth-child(3) {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links a {
    padding-left: 0;
    border-left: 0;
  }

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

  .brand {
    width: 220px;
  }

  .primary-nav__panel {
    background: var(--paper);
  }

  .bz-hero {
    min-height: auto;
    background: linear-gradient(180deg, #fffdf9 0 58%, #f5eee4 58% 100%);
  }

  .bz-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bz-hero__content {
    padding: 66px 0 28px;
  }

  .bz-hero__content h1 {
    max-width: 780px;
  }

  .bz-hero__visual {
    min-height: 620px;
  }

  .bz-hero__main-image {
    inset: 0 -20px 0 12%;
    border-radius: 50% 0 0 0 / 34% 0 0 0;
  }

  .bz-hero__mini-image {
    left: 0;
  }

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

  .bz-gallery__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 90px;
  }

  .bz-gallery__item--portrait,
  .bz-gallery__item--tall { grid-column: span 3; grid-row: span 4; }
  .bz-gallery__item--wide,
  .bz-gallery__item--landscape { grid-column: span 6; grid-row: span 3; }

  .bz-experience__card {
    padding: 54px 42px 160px;
  }

  .bz-experience__shade {
    background: linear-gradient(90deg, rgba(10,42,35,.94), rgba(10,42,35,.62));
  }

  .bz-experience__stats {
    right: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }

  .bz-expert {
    background: var(--rose-soft);
  }

  .bz-expert__grid,
  .bz-consultation__grid {
    grid-template-columns: 1fr;
  }

  .bz-expert__visual {
    width: min(520px, calc(100% - 40px));
  }

  .bz-expert__content {
    max-width: 760px;
    margin-inline: auto;
  }

  .bz-testimonials__grid,
  .article-grid--home {
    grid-template-columns: 1fr 1fr;
  }

  .bz-testimonials article:last-child,
  .article-grid--home .article-card:last-child {
    grid-column: 1 / -1;
  }

  .bz-consultation__image {
    min-height: 440px;
  }

  .bz-consultation__image > img {
    height: 440px;
  }

  .bz-about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 240px auto;
  }

  .bz-about-gallery__main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .bz-about-gallery__note {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
  }

  .footer-gallery__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 220px;
  }

  .footer-gallery img {
    height: 110px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading--center {
    margin-bottom: 44px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 24px !important;
  }

  .bz-hero__content {
    padding-top: 48px;
  }

  .bz-hero__content h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  .bz-hero__lead {
    font-size: .98rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .bz-hero__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .bz-hero__contact a {
    align-items: flex-start;
  }

  .bz-hero__visual {
    min-height: 480px;
  }

  .bz-hero__main-image {
    inset: 0 -14px 0 8%;
  }

  .bz-hero__mini-image {
    bottom: 20px;
    width: 170px;
    height: 112px;
    border-width: 6px;
  }

  .bz-hero__badge {
    top: 24px;
    min-width: 174px;
    padding: 14px 16px;
  }

  .bz-services-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .bz-service__image {
    width: min(250px, 72vw);
  }

  .bz-service p {
    min-height: auto;
  }

  .bz-benefits__grid,
  .bz-testimonials__grid,
  .article-grid--home {
    grid-template-columns: 1fr;
  }

  .bz-testimonials article:last-child,
  .article-grid--home .article-card:last-child {
    grid-column: auto;
  }

  .bz-gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bz-gallery__item,
  .bz-gallery__item--portrait,
  .bz-gallery__item--tall,
  .bz-gallery__item--wide,
  .bz-gallery__item--landscape {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .bz-gallery__item:nth-child(2),
  .bz-gallery__item:nth-child(4) {
    min-height: 410px;
  }

  .bz-experience {
    padding-top: 0;
  }

  .bz-experience__card {
    min-height: 680px;
    width: 100%;
    padding: 44px 28px 230px;
  }

  .bz-experience__shade {
    background: linear-gradient(180deg, rgba(10,42,35,.9), rgba(10,42,35,.62));
  }

  .bz-experience__stats {
    grid-template-columns: 1fr;
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .bz-experience__stats li {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bz-experience__stats li:last-child { border-bottom: 0; }

  .bz-expert__grid {
    gap: 54px;
  }

  .bz-expert__stamp {
    right: -8px;
    bottom: 20px;
    width: 112px;
    height: 112px;
  }

  .bz-expert__content h2 {
    font-size: 2.75rem;
  }

  .bz-consultation__image {
    min-height: 360px;
  }

  .bz-consultation__image > img {
    height: 360px;
  }

  .bz-consultation__image > div {
    right: 14px;
    bottom: 16px;
  }

  .bz-about-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(250px, auto));
  }

  .bz-about-gallery__main,
  .bz-about-gallery figure,
  .bz-about-gallery__note {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 270px;
  }

  .footer-gallery img {
    height: 90px;
  }

  .floating-actions {
    top: auto;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    transform: none;
  }

  .floating-action {
    min-width: 48px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transform: none;
  }

  .floating-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bz-service__image,
  .bz-service__image::before,
  .bz-gallery__item img,
  .footer-gallery img,
  .floating-action {
    transition: none !important;
  }
}

.bz-signature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 48px;
}

.bz-signature-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 14px;
  min-height: 76px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--rose-soft);
  border: 1px solid rgba(199,138,66,.18);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.bz-signature-links a span {
  grid-column: 1;
  color: var(--gold-deep);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bz-signature-links a strong {
  grid-column: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.bz-signature-links a svg {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.bz-signature-links a:hover {
  background: var(--paper);
  border-color: var(--gold);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .bz-signature-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .bz-signature-links { grid-template-columns: 1fr; }
}

/* V3 care journey — ethical alternative to unverified testimonials */
.bz-care__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bz-care__grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 38px 34px 32px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(23,53,47,.09);
  box-shadow: 0 18px 46px rgba(23,53,47,.07);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.bz-care__grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.bz-care__grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(199,138,66,.38);
  box-shadow: var(--shadow-sm);
}

.bz-care__grid article:hover::after { transform: scaleX(1); }

.bz-care__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(199,138,66,.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 1;
}

.bz-care__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 50%;
}

.bz-care__icon svg { width: 26px; height: 26px; }
.bz-care__grid h3 { position: relative; z-index: 1; font-size: 1.55rem; }
.bz-care__grid p { position: relative; z-index: 1; color: var(--muted); }
.bz-care__grid small {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .bz-care__grid { grid-template-columns: 1fr 1fr; }
  .bz-care__grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .bz-care__grid { grid-template-columns: 1fr; }
  .bz-care__grid article:last-child { grid-column: auto; }
}

/* ========================================================================
   Casa Aesthetic v4.0.0 — mobile-first responsive refinement
   Final overrides for navigation, compact mobile composition, touch targets,
   safe areas and mobile conversion actions. Desktop art direction is kept.
   ======================================================================== */

.primary-nav__drawer,
.mobile-nav__intro,
.mobile-nav__actions,
.mobile-swipe-hint {
  display: none;
}

:is(a, button, input, select, textarea) {
  touch-action: manipulation;
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: 92px;
    scrollbar-gutter: stable;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body::before {
    content: "";
    position: fixed;
    z-index: 115;
    inset: 0;
    background: rgba(10, 35, 29, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .topbar {
    position: relative;
    z-index: 102;
  }

  .topbar__inner {
    min-height: 36px;
    justify-content: center;
  }

  .topbar__inner > p,
  .topbar__email,
  .topbar__instagram {
    display: none !important;
  }

  .topbar__links {
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: .76rem;
    font-variant-numeric: tabular-nums;
  }

  .topbar__links a,
  .topbar__links a:nth-child(n) {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
  }

  .topbar__links svg {
    width: 16px;
    height: 16px;
  }

  .site-header {
    z-index: 110;
  }

  .site-header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    width: clamp(164px, 46vw, 204px);
    max-width: 100%;
  }

  .primary-nav {
    margin: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 130;
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    border-color: rgba(23, 53, 47, .16);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(23, 53, 47, .08);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 3px auto;
  }

  .primary-nav__panel {
    display: none;
  }

  .primary-nav__drawer {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(88vw, 370px);
    height: 100dvh;
    max-height: 100dvh;
    display: block;
    direction: ltr;
    padding: calc(env(safe-area-inset-top) + 12px) 24px calc(32px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background:
      radial-gradient(circle at 95% 3%, rgba(199, 138, 66, .14), transparent 26%),
      var(--paper);
    border-right: 1px solid rgba(23, 53, 47, .08);
    box-shadow: 30px 0 70px rgba(10, 35, 29, .18);
    transform: translate3d(-104%, 0, 0);
    visibility: hidden;
    transition: transform .32s var(--ease), visibility .32s;
  }

  .primary-nav__drawer.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  body.menu-open .menu-toggle {
    visibility: hidden;
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .menu-close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ink-2);
    background: var(--paper);
    border: 1px solid rgba(23, 53, 47, .14);
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .menu-close svg {
    width: 18px;
    height: 18px;
  }

  .menu-close:hover,
  .menu-close:focus-visible {
    color: var(--green-strong);
    background: var(--green-soft);
  }

  .mobile-nav__intro {
    display: grid;
    gap: 2px;
  }

  .mobile-nav__intro span {
    color: var(--gold-deep);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .mobile-nav__intro strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
  }

  .primary-nav__drawer > a {
    position: relative;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -.015em;
    text-transform: none;
    text-align: left;
    transition: background .2s ease, color .2s ease;
  }

  .primary-nav__drawer > a:hover {
    color: var(--green-strong);
    background: var(--green-pale);
  }

  .primary-nav__drawer > a::before {
    content: "";
    flex: 0 0 auto;
    width: 0;
    height: 1px;
    background: var(--gold-deep);
    transition: width .2s ease;
  }

  .primary-nav__drawer > a.is-active::before {
    width: 22px;
    margin-right: 10px;
  }

  .primary-nav__drawer > a::after {
    display: none;
  }

  .mobile-nav__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .mobile-nav__actions > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    color: var(--green-strong);
    background: var(--green-pale);
    border: 1px solid rgba(30, 91, 78, .12);
    font-size: .82rem;
    font-weight: 750;
  }

  .mobile-nav__actions > a svg {
    width: 18px;
    height: 18px;
    color: var(--gold-deep);
    flex: 0 0 auto;
  }

  .mobile-nav__actions > a:hover {
    background: var(--green-soft);
    border-color: rgba(30, 91, 78, .26);
  }

  .mobile-nav__actions > .mobile-nav__cta {
    justify-content: space-between;
    color: var(--paper);
    background: var(--green);
    border-color: var(--green);
    font-size: .76rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .2s ease;
  }

  .mobile-nav__actions > .mobile-nav__cta:hover {
    background: var(--green-strong);
    border-color: var(--green-strong);
  }

  .mobile-nav__actions > .mobile-nav__cta svg {
    color: currentColor;
  }

  .mobile-nav__actions p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .78rem;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .section-heading--center,
  .split-heading {
    gap: 18px;
    margin-bottom: 42px;
  }

  .bz-hero {
    min-height: auto;
    background:
      radial-gradient(circle at 5% 10%, rgba(199, 138, 66, .1), transparent 24%),
      linear-gradient(180deg, #fffdf9 0 58%, #f5eee4 58% 100%);
  }

  .bz-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bz-hero__content {
    max-width: 760px;
    padding: 56px 0 30px;
  }

  .bz-hero__content h1 {
    max-width: 720px;
    font-size: clamp(3rem, 9vw, 4.8rem);
  }

  .bz-hero__visual {
    width: min(620px, 100%);
    min-height: 560px;
    margin-inline: auto;
  }

  .bz-hero__main-image {
    inset: 0 -18px 0 9%;
  }

  .bz-hero__mini-image {
    left: 0;
  }

  .bz-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .bz-service__image {
    width: min(220px, 76%);
  }

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

  .bz-gallery__grid {
    grid-auto-rows: 84px;
  }

  .bz-expert__grid,
  .bz-consultation__grid {
    grid-template-columns: 1fr;
  }

  .bz-consultation__image,
  .bz-consultation__image > img {
    min-height: 420px;
    height: 420px;
  }

  .floating-actions {
    position: fixed;
    z-index: 140;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 6px max(8px, env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid rgba(23, 53, 47, .11);
    box-shadow: 0 -6px 18px rgba(23, 53, 47, .08);
    backdrop-filter: blur(16px);
    transform: none;
    transition: transform .25s var(--ease);
  }

  body.menu-open .floating-actions {
    transform: translateY(105%);
  }

  .floating-action {
    min-width: 0;
    width: auto;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 6px;
    border-radius: 10px;
    transform: none;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .02em;
  }

  .floating-action svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .floating-action:nth-child(2) {
    background: var(--gold-deep);
  }

  .floating-action:nth-child(3) {
    background: var(--green-strong);
  }

  .floating-action span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .floating-action:hover,
  .floating-action:focus-visible {
    transform: translateY(-2px);
  }

  @media (max-width: 359px) {
    .floating-action {
      gap: 6px;
      padding: 0 4px;
    }

    .floating-action--rdv span {
      display: none;
    }

    .floating-action--rdv::after {
      content: "RDV";
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .02em;
      white-space: nowrap;
    }
  }

  .page-hero__grid,
  .detail-hero__grid,
  .article-hero__inner,
  .contact-layout,
  .expert-layout,
  .content-layout,
  .faq-layout,
  .section-heading,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .sticky-card,
  .article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-gutter: 16px;
  }

  body {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .container {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), var(--container));
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2rem, 9.2vw, 2.7rem);
  }

  h3 {
    font-size: 1.25rem;
  }

  .topbar__links {
    justify-content: space-between;
    gap: 8px;
  }

  .topbar__links a {
    font-size: .72rem;
  }

  .topbar__links a span {
    display: inline;
  }

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

  .brand {
    width: clamp(158px, 50vw, 190px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-nav__drawer {
    width: min(90vw, 350px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .button {
    min-height: 50px;
    padding: 13px 17px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading,
  .section-heading--center,
  .split-heading {
    margin-bottom: 34px;
  }

  .section-heading--center {
    text-align: left;
  }

  .section-heading--center > p {
    margin: 12px 0 0;
  }

  .section-heading--center .eyebrow::before {
    display: none;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .68rem;
    letter-spacing: .12em;
  }

  .eyebrow::after {
    width: 28px !important;
    margin-left: 9px;
  }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin-top: -22px;
    margin-bottom: 14px;
    color: var(--green);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .mobile-swipe-hint span {
    color: var(--gold-deep);
    font-size: 1rem;
  }

  .bz-hero {
    background:
      radial-gradient(circle at 0 7%, rgba(199, 138, 66, .1), transparent 25%),
      linear-gradient(180deg, #fffdf9 0 57%, #f5eee4 57% 100%);
  }

  .bz-hero::before {
    width: 210px;
    height: 210px;
    left: -155px;
    top: 30px;
  }

  .bz-hero::after {
    display: none;
  }

  .bz-hero__ornament {
    background-size: 44px 44px;
    opacity: .32;
  }

  .bz-hero__content {
    padding: 34px 0 24px;
  }

  .bz-hero__content h1 {
    margin: 8px 0 18px;
    font-size: clamp(2.68rem, 13.2vw, 3.7rem);
    line-height: .96;
    letter-spacing: -.045em;
  }

  .bz-hero__content h1 em {
    margin-top: 4px;
  }

  .bz-hero__lead {
    margin-bottom: 22px;
    font-size: .98rem;
    line-height: 1.66;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .bz-hero__contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .bz-hero__contact a {
    min-width: 0;
    min-height: 62px;
    align-items: center;
    gap: 8px;
    padding: 9px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(23, 53, 47, .09);
  }

  .bz-hero__contact svg {
    width: 31px;
    height: 31px;
    padding: 7px;
  }

  .bz-hero__contact small {
    font-size: .58rem;
    letter-spacing: .05em;
  }

  .bz-hero__contact strong {
    overflow-wrap: anywhere;
    font-size: .76rem;
    font-variant-numeric: tabular-nums;
  }

  .bz-hero__visual {
    width: 100%;
    min-height: 390px;
    margin-top: 6px;
  }

  .bz-hero__main-image {
    inset: 0;
    border-radius: 44% 44% 8px 8px / 29% 29% 8px 8px;
    box-shadow: 0 22px 52px rgba(49, 49, 38, .16);
  }

  .bz-hero__main-image img {
    object-position: center 34%;
  }

  .bz-hero__mini-image {
    display: none;
  }

  .bz-hero__badge {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: auto;
    min-width: 168px;
    padding: 13px 15px;
  }

  .bz-hero__badge strong {
    font-size: 1.05rem;
  }

  .bz-hero__badge span {
    font-size: .59rem;
  }

  .bz-intro::before,
  .bz-gallery::before,
  .bz-blog::before {
    display: none;
  }

  .bz-services-grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(252px, 82vw);
    gap: 14px;
    margin-bottom: 28px;
    padding: 2px var(--mobile-gutter) 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .bz-services-grid::-webkit-scrollbar,
  .bz-signature-links::-webkit-scrollbar,
  .bz-care__grid::-webkit-scrollbar,
  .article-grid--home::-webkit-scrollbar,
  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .bz-service {
    min-height: 418px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 18px 20px;
    text-align: left;
    background: var(--paper);
    border: 1px solid rgba(23, 53, 47, .1);
    box-shadow: 0 14px 38px rgba(23, 53, 47, .07);
    scroll-snap-align: start;
  }

  .bz-service__image {
    width: 166px;
    margin: 0 auto 20px;
  }

  .bz-service__image span {
    width: 40px;
    height: 40px;
    bottom: 10px;
    border-width: 4px;
    font-size: .76rem;
  }

  .bz-service h3 {
    margin-bottom: 8px;
    font-size: 1.38rem;
  }

  .bz-service p {
    max-width: none;
    min-height: 0;
    margin: 0 0 14px;
    font-size: .86rem;
  }

  .bz-service .text-link {
    justify-content: flex-start;
    margin-top: auto;
  }

  .bz-signature-links {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 72vw);
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 var(--mobile-gutter) 12px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .bz-signature-links a {
    min-height: 72px;
    scroll-snap-align: start;
  }

  .center {
    margin-top: 24px;
  }

  .center .button {
    width: 100%;
  }

  .bz-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bz-benefits article {
    min-height: 0;
    padding: 20px 15px;
  }

  .bz-benefit__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
  }

  .bz-benefits h3 {
    font-size: 1.08rem;
  }

  .bz-benefits p {
    font-size: .78rem;
    line-height: 1.55;
  }

  .bz-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
  }

  .bz-gallery__item,
  .bz-gallery__item--portrait,
  .bz-gallery__item--tall,
  .bz-gallery__item--wide,
  .bz-gallery__item--landscape {
    grid-column: auto;
    grid-row: auto;
    min-height: 185px;
  }

  .bz-gallery__item:first-child {
    grid-column: 1 / -1;
    min-height: 225px;
  }

  .bz-gallery__item:last-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .bz-gallery__item > span {
    right: 13px;
    bottom: 13px;
    left: 13px;
    font-size: 1rem;
  }

  .bz-gallery__item > span small {
    font-size: .55rem;
  }

  .bz-experience {
    padding-top: 0;
  }

  .bz-experience__card {
    width: calc(100% - (var(--mobile-gutter) * 2));
    min-height: 550px;
    padding: 38px 22px 150px;
  }

  .bz-experience__shade {
    background: linear-gradient(180deg, rgba(10, 42, 35, .92) 0 58%, rgba(10, 42, 35, .56));
  }

  .bz-experience__content h2 {
    font-size: 2.25rem;
  }

  .bz-experience__content .button {
    width: 100%;
    margin-top: 8px;
  }

  .bz-experience__stats {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bz-experience__stats li {
    min-width: 0;
    padding: 12px 7px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .bz-experience__stats strong {
    font-size: 1.18rem;
  }

  .bz-experience__stats span {
    font-size: .54rem;
    line-height: 1.3;
    letter-spacing: .04em;
  }

  .bz-expert {
    background: linear-gradient(180deg, var(--rose-soft) 0 39%, var(--paper) 39% 100%);
  }

  .bz-expert__grid {
    gap: 44px;
  }

  .bz-expert__visual {
    width: calc(100% - 26px);
    max-width: 360px;
  }

  .bz-expert__visual img {
    max-height: 430px;
  }

  .bz-expert__stamp {
    right: -10px;
    bottom: 18px;
    width: 104px;
    height: 104px;
    border-width: 6px;
  }

  .bz-expert__stamp strong {
    font-size: 1.08rem;
  }

  .bz-expert__stamp span {
    font-size: .57rem;
  }

  .bz-expert__content h2 {
    font-size: 2.65rem;
  }

  .bz-expert__content .button {
    width: 100%;
  }

  .feature-list {
    gap: 10px;
  }

  .bz-care__grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(252px, 82vw);
    gap: 14px;
    padding: 2px var(--mobile-gutter) 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .bz-care__grid article,
  .bz-care__grid article:last-child {
    grid-column: auto;
    min-height: 310px;
    padding: 26px 22px 58px;
    scroll-snap-align: start;
  }

  .bz-care__number {
    top: 18px;
    right: 18px;
    font-size: 3.6rem;
  }

  .bz-care__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 19px;
  }

  .bz-care__grid small {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .article-grid--home {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(268px, 84vw);
    gap: 14px;
    padding: 2px var(--mobile-gutter) 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .article-grid--home .article-card,
  .article-grid--home .article-card:last-child {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .article-card__body {
    padding: 21px;
  }

  .bz-consultation__grid {
    gap: 36px;
  }

  .bz-consultation__image,
  .bz-consultation__image > img {
    min-height: 285px;
    height: 285px;
  }

  .bz-consultation__image > div {
    right: 10px;
    bottom: 10px;
    min-width: 180px;
    padding: 15px 17px;
  }

  .bz-consultation__image strong {
    font-size: 1.24rem;
  }

  .bz-consultation .lead-form,
  .lead-form,
  .lead-form--compact {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-field--full {
    grid-column: auto;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 112px;
  }

  .consent {
    align-items: flex-start;
  }

  .consent input {
    min-width: 18px;
    min-height: 18px;
  }

  .faq-section .container,
  .faq-layout {
    gap: 28px;
  }

  .accordion__item h3 button {
    min-height: 58px;
    padding: 17px 0;
    font-size: .94rem;
  }

  .accordion__panel p {
    padding-right: 2px;
    font-size: .88rem;
  }

  .footer-gallery__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 184px;
  }

  .footer-gallery img {
    height: 92px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    padding-bottom: 34px;
  }

  .footer__brand,
  .footer__contact {
    grid-column: 1 / -1;
  }

  .footer__brand img {
    width: min(230px, 72vw);
    margin-bottom: 15px;
  }

  .footer__brand p {
    font-size: .82rem;
  }

  .footer__grid h2 {
    margin-bottom: 13px;
    font-size: .68rem;
  }

  .footer__grid > div:not(.footer__brand) > a {
    min-height: 34px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: .78rem;
  }

  .footer__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
  }

  .footer__contact h2 {
    grid-column: 1 / -1;
  }

  .footer__contact p {
    min-width: 0;
    margin-bottom: 12px;
    font-size: .76rem;
  }

  .footer__contact a {
    overflow-wrap: anywhere;
  }

  .footer__bottom {
    min-height: 0;
    gap: 10px;
    padding: 20px 0 24px;
    font-size: .68rem;
  }

  .footer__bottom > div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .breadcrumb {
    padding-top: 12px;
    padding-bottom: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .breadcrumb ol {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    font-size: .72rem;
  }

  .page-hero,
  .detail-hero,
  .article-hero,
  .legal-hero {
    padding: 32px 0 50px;
  }

  .page-hero__grid,
  .detail-hero__grid,
  .article-hero__inner {
    gap: 26px;
  }

  .page-hero h1,
  .detail-hero h1,
  .article-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .page-hero figure,
  .page-hero figure img,
  .detail-hero figure,
  .detail-hero figure img,
  .article-hero figure,
  .article-hero figure img {
    min-height: 250px;
    max-height: 330px;
  }

  .detail-hero__actions,
  .contact-band__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-hero__actions .button,
  .contact-band__actions .button {
    width: 100%;
  }

  .notice {
    padding: 20px;
  }

  .catalog-card__media {
    min-height: 230px;
  }

  .catalog-card__content {
    padding: 24px 20px;
  }

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

  .service-teaser,
  .service-teaser img {
    min-height: 310px;
  }

  .filter-row,
  .filters {
    width: calc(100% + var(--mobile-gutter));
    flex-wrap: nowrap;
    padding-right: var(--mobile-gutter);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .article-layout {
    padding-bottom: 56px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.78;
  }

  .article-content h2 {
    font-size: 1.9rem;
  }

  .contact-form-card,
  .contact-info-card,
  .sticky-card,
  .article-aside {
    padding: 22px;
  }

  .not-found > .container > div {
    display: grid;
    gap: 10px;
  }

  .not-found > .container > div .button {
    width: 100%;
  }

  .bz-intro,
  .bz-benefits,
  .bz-gallery,
  .bz-experience,
  .bz-expert,
  .bz-care,
  .bz-blog,
  .bz-consultation,
  .faq-section,
  .footer-gallery,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

@media (max-width: 379px) {
  .topbar__links {
    gap: 5px;
  }

  .topbar__links a {
    font-size: .67rem;
  }

  .brand {
    width: 150px;
  }

  .bz-hero__content h1 {
    font-size: 2.5rem;
  }

  .bz-hero__contact {
    grid-template-columns: 1fr;
  }

  .bz-benefits__grid,
  .footer__contact {
    grid-template-columns: 1fr;
  }

  .footer__contact h2 {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .primary-nav__drawer,
  .menu-toggle span:not(.sr-only),
  .floating-actions {
    transition: none !important;
  }
}
