@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/montserrat-latin-400-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand-dark: #0d3b3b;
  --brand-medium: #2f6f6b;
  --brand-sage: #a8c1b5;
  --brand-beige: #e7d8c2;
  --brand-gold: #c9a46a;
  --surface: #ffffff;
  --surface-warm: #fbf8f3;
  --text: #273b3a;
  --text-muted: #526563;
  --border: #dce5e0;
  --focus: #9c6d24;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --shadow-photo: 0 24px 64px rgb(13 59 59 / 14%);
  --google-blue: #4285f4;
  --google-red: #ea4335;
  --google-yellow: #fbbc05;
  --google-green: #34a853;
  --whatsapp-green: #25d366;
  --surface-dark: var(--brand-dark);
  --surface-on-dark: color-mix(in srgb, var(--brand-sage) 9%, var(--brand-dark));
  --text-on-dark: color-mix(in srgb, var(--brand-beige) 18%, white);
  --text-on-dark-muted: color-mix(in srgb, var(--brand-sage) 60%, white);
  --border-on-dark: rgb(231 216 194 / 20%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.4rem;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(13 59 59 / 8%);
  background: rgb(255 255 255 / 96%);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(190px, 218px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 1.75rem);
}

.brand {
  width: 218px;
  height: 88px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.7rem, 1.1vw, 1.25rem);
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand-gold);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button:focus-visible,
.brand:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.button--header {
  padding: 0.75rem 1.15rem;
  background: var(--whatsapp-green);
  color: #fff;
}

.button--header:hover {
  background: color-mix(in srgb, var(--whatsapp-green) 86%, black);
  box-shadow: 0 10px 24px rgb(13 59 59 / 15%);
}

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

.button-label-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 14%, rgb(168 193 181 / 16%), transparent 28%),
    linear-gradient(90deg, var(--surface) 0 58%, var(--surface-warm) 58% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgb(47 111 107 / 10%);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4.5rem, 8vh, 7rem);
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-medium);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: var(--brand-gold);
}

h1 {
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.45vw, 4.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
  text-wrap: balance;
}

h1 strong {
  display: block;
  color: var(--brand-medium);
  font-weight: 400;
}

.hero-subheadline {
  max-width: 650px;
  margin: 1.65rem 0 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.72;
}

.hero-subheadline-accent {
  color: var(--brand-medium);
  font-weight: 600;
}

.button--primary {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  background: var(--brand-medium);
  color: #fff;
  box-shadow: 0 12px 28px rgb(47 111 107 / 20%);
}

.button--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgb(13 59 59 / 22%);
}

.hero .button--primary {
  background: var(--brand-medium);
  color: #fff;
  box-shadow: 0 12px 28px rgb(13 59 59 / 12%);
}

.hero .button--primary:hover {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 16px 34px rgb(13 59 59 / 16%);
}

.hero-indicators {
  margin: 2.6rem 0 0;
  padding: 0;
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  gap: 0.75rem;
}

.hero-indicators > div {
  min-width: 0;
  min-height: 4.25rem;
  padding: 0.72rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-gold);
  border-radius: 999px;
  text-align: center;
}

.hero-indicators dt {
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-indicators dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  padding: 1rem 1rem 1.35rem 0.65rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 2.4rem -1rem -1rem 3rem;
  border-radius: 2.4rem;
  background: color-mix(in srgb, var(--brand-beige) 78%, white);
}

.photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 2.25rem;
  box-shadow: var(--shadow-photo);
  background: var(--brand-sage);
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.identification {
  background: color-mix(in srgb, var(--brand-sage) 18%, white);
  padding-block: clamp(5.5rem, 9vw, 8rem);
}

.identification-inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.identification-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.identification-heading h2 {
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.title-accent {
  color: var(--brand-medium);
}

.title-mark {
  position: relative;
  display: inline-block;
}

.title-mark::after {
  content: "";
  position: absolute;
  right: 0.04em;
  bottom: -0.05em;
  left: 0.04em;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-gold);
}

.identification-heading p {
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.identification-panel {
  overflow: hidden;
  border: 1px solid rgb(13 59 59 / 8%);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 22px 64px rgb(13 59 59 / 6%);
}

.identification-cta {
  display: flex;
  justify-content: center;
}

.identification-cta .button--primary {
  margin-top: 0;
}

.situation-list {
  margin: 0;
  padding: clamp(1.5rem, 3.2vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.situation-item {
  min-width: 0;
  padding: clamp(1.4rem, 2.7vw, 2.15rem) clamp(1.25rem, 3vw, 2.75rem);
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.situation-item:nth-child(even) {
  border-left: 1px solid var(--border);
}

.situation-item:nth-child(n + 3) {
  border-top: 1px solid var(--border);
}

.check-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(47 111 107 / 14%);
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-beige) 35%, white);
  color: var(--brand-medium);
}

.situation-item h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  text-wrap: pretty;
}

.situation-item p {
  margin: 0.45rem 0 0;
  color: color-mix(in srgb, var(--text) 88%, white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.complaints {
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: var(--surface);
}

.complaints-inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.complaints-heading {
  max-width: 850px;
}

.complaints-heading .eyebrow {
  color: var(--brand-gold);
}

.complaints-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.complaints-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.complaint-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(201 164 106 / 20%);
  border-radius: 1rem;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgb(13 59 59 / 8%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.complaint-card--primary {
  min-height: 17.5rem;
  grid-column: span 3;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.complaint-card--secondary {
  min-height: 15rem;
  grid-column: span 2;
  padding: clamp(1.5rem, 2.4vw, 2rem);
}

.complaint-card-content {
  margin-top: 0;
  padding-top: 0;
}

.complaint-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.25;
}

.complaint-card--primary h3 {
  font-size: clamp(1.6rem, 2vw, 1.82rem);
}

.complaint-card p {
  margin: 0.7rem 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.98rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.complaint-card--primary p {
  max-width: 34rem;
  font-size: 1.02rem;
}

.complaints-cta {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.complaints-cta .button--primary {
  margin-top: 0;
}

.complaints-cta p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .complaint-card:hover {
    transform: translateY(-3px);
    border-color: rgb(201 164 106 / 48%);
    box-shadow: 0 18px 42px rgb(13 59 59 / 13%);
  }
}

.reviews {
  padding-block: clamp(5.5rem, 9vw, 8rem);
  scroll-margin-top: 1rem;
  background: color-mix(in srgb, var(--brand-beige) 22%, white);
}

.reviews-inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.reviews-heading {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.reviews-heading .eyebrow {
  justify-self: center;
  margin-bottom: 1.25rem;
  color: var(--brand-gold);
}

.reviews-heading .google-summary {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.reviews-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.google-summary {
  width: fit-content;
  max-width: 100%;
  min-height: 3.5rem;
  padding: 0.65rem 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--brand-beige) 62%, white);
  border-radius: 999px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 12px 28px rgb(13 59 59 / 5%);
}

.google-wordmark {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) {
  color: var(--google-blue);
}

.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) {
  color: var(--google-red);
}

.google-wordmark span:nth-child(3) {
  color: var(--google-yellow);
}

.google-wordmark span:nth-child(5) {
  color: var(--google-green);
}

.review-stars {
  display: inline-flex;
  color: var(--brand-gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.google-rating-value {
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.reviews-carousel {
  min-width: 0;
}

.reviews-track {
  --review-gap: 1rem;
  display: flex;
  align-items: stretch;
  gap: var(--review-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
  border-radius: 0.85rem;
}

.review-card {
  min-width: 0;
  min-height: 21.5rem;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  flex: 0 0 calc((100% - (3 * var(--review-gap))) / 4);
  scroll-snap-align: start;
  border: 1px solid color-mix(in srgb, var(--brand-beige) 64%, white);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 8px 24px rgb(13 59 59 / 4%);
}

.review-card-header {
  min-width: 0;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
}

.review-avatar {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(47 111 107 / 14%);
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-sage) 28%, white);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.review-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.review-card-header .review-stars {
  margin-top: 0.45rem;
  font-size: 0.72rem;
}

.review-card blockquote {
  margin: 1.35rem 0 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
}

.review-card blockquote p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.review-card blockquote p + p {
  margin-top: 1rem;
}

.reviews-navigation {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.carousel-button {
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand-medium);
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-dark);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(47 111 107 / 16%);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.carousel-button:hover:not(:disabled) {
  background: var(--brand-dark);
  color: #fff;
}

.carousel-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.carousel-button:disabled {
  border-color: color-mix(in srgb, var(--brand-medium) 28%, white);
  color: color-mix(in srgb, var(--brand-medium) 38%, white);
  cursor: not-allowed;
  opacity: 0.72;
}

.reviews-cta {
  display: flex;
  justify-content: center;
}

.reviews-cta .button--primary {
  margin-top: 0;
}

.consultation-process {
  overflow: hidden;
  padding-block: clamp(5.75rem, 9vw, 8.5rem);
  scroll-margin-top: 1rem;
  border-top: 1px solid rgb(231 216 194 / 12%);
  background: var(--surface-dark);
}

.consultation-process-inner {
  display: grid;
  gap: clamp(3.5rem, 6vw, 5.25rem);
}

.consultation-process-heading {
  max-width: 880px;
}

.consultation-process-heading .eyebrow {
  color: var(--brand-gold);
}

.consultation-process-heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--text-on-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 4.4vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

.consultation-process-heading > p:last-child {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.consultation-process-layout {
  --timeline-node-size: 2.25rem;
  --timeline-line-width: 2px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas: "media steps";
  column-gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

.consultation-process-cta {
  margin-top: -1.25rem;
  display: flex;
  justify-content: center;
}

.button--consultation {
  padding: 0.9rem 1.35rem;
  background: var(--brand-beige);
  color: var(--brand-dark);
}

.button--consultation:hover,
.button--consultation:focus-visible {
  background: color-mix(in srgb, var(--brand-beige) 78%, var(--brand-gold));
  box-shadow: 0 12px 28px rgb(0 0 0 / 14%);
}

.consultation-media-column {
  grid-area: media;
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.consultation-steps {
  position: relative;
  grid-area: steps;
  min-width: 0;
  display: grid;
  align-content: start;
}

.consultation-media {
  position: relative;
  height: clamp(12.5rem, 16vw, 14.5rem);
  overflow: hidden;
  border: 1px solid var(--border-on-dark);
  border-radius: 1rem;
  background: var(--surface-on-dark);
}

.consultation-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(168 193 181 / 13%);
  border-radius: 0.68rem;
  z-index: 2;
  pointer-events: none;
}

.consultation-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.consultation-slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.consultation-slideshow-slide.is-active {
  opacity: 1;
}

.consultation-media--assessment {
  margin: 0;
}

.consultation-media--assessment img {
  object-position: 50% 54%;
}

.consultation-media--treatment {
  margin: 0;
}

.consultation-media--treatment img {
  object-position: 50% 52%;
}

@media (min-width: 841px) {
  .consultation-media--assessment,
  .consultation-media--treatment {
    height: clamp(15.5rem, 18vw, 16.75rem);
  }

  .consultation-media--treatment {
    height: clamp(17rem, 20vw, 18.25rem);
  }

  .consultation-media--assessment img {
    object-position: 50% 54%;
  }

  .consultation-media--treatment img {
    object-position: 50% 50%;
  }
}

.consultation-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-bottom: clamp(1.35rem, 2vw, 1.85rem);
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  align-content: start;
  gap: 1.25rem;
}

.consultation-step--01 {
  grid-row: 1;
}

.consultation-step--02 {
  grid-row: 2;
}

.consultation-step--03 {
  grid-row: 3;
}

.consultation-step--04 {
  grid-row: 4;
  padding-bottom: 0;
}

.consultation-timeline-line {
  position: absolute;
  top: calc(var(--timeline-node-size) / 2);
  bottom: calc(var(--timeline-node-size) / 2);
  left: calc((var(--timeline-node-size) - var(--timeline-line-width)) / 2);
  z-index: 0;
  width: var(--timeline-line-width);
  margin: 0;
  overflow: hidden;
  background: rgb(201 164 106 / 24%);
  pointer-events: none;
}

.consultation-timeline-flow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 18%;
  transform: translateY(-100%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(201 164 106 / 18%) 22%,
    rgb(201 164 106 / 82%) 50%,
    rgb(201 164 106 / 18%) 78%,
    transparent
  );
  animation: consultation-timeline-flow 8s ease-in-out infinite;
  will-change: transform;
}

.consultation-step-number {
  position: relative;
  z-index: 2;
  width: var(--timeline-node-size);
  height: var(--timeline-node-size);
  display: grid;
  place-items: center;
  align-self: start;
  border: 1px solid rgb(201 164 106 / 34%);
  border-radius: 50%;
  background: var(--surface-dark);
  color: color-mix(in srgb, var(--brand-gold) 82%, var(--surface-dark));
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 1;
  animation: consultation-step-number-pulse 8s ease-out infinite;
  will-change: transform;
}

.consultation-step-number::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgb(201 164 106 / 62%);
  border-radius: inherit;
  box-shadow: 0 0 0 5px rgb(201 164 106 / 10%);
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  animation: consultation-step-halo-pulse 8s ease-out infinite;
  will-change: transform, opacity;
}

.consultation-step--01 .consultation-step-number,
.consultation-step--01 .consultation-step-number::after {
  animation-delay: 0.6s;
}

.consultation-step--02 .consultation-step-number,
.consultation-step--02 .consultation-step-number::after {
  animation-delay: 2.15s;
}

.consultation-step--03 .consultation-step-number,
.consultation-step--03 .consultation-step-number::after {
  animation-delay: 3.85s;
}

.consultation-step--04 .consultation-step-number,
.consultation-step--04 .consultation-step-number::after {
  animation-delay: 7.35s;
}

@keyframes consultation-timeline-flow {
  to {
    transform: translateY(556%);
  }
}

@keyframes consultation-step-number-pulse {
  0%,
  7% {
    transform: scale(1.035);
  }

  15%,
  100% {
    transform: scale(1);
  }
}

@keyframes consultation-step-halo-pulse {
  0%,
  7% {
    opacity: 1;
    transform: scale(1);
  }

  15%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.consultation-step-content {
  min-width: 0;
}

.consultation-step h3 {
  margin: 0;
  color: var(--text-on-dark);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: pretty;
}

.consultation-step-content > p {
  max-width: 590px;
  margin: 0.7rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.94rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.consultation-techniques {
  margin-top: 1.35rem;
}

.consultation-techniques > p {
  margin: 0 0 0.85rem;
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.consultation-techniques ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.consultation-techniques li {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgb(168 193 181 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
  color: var(--text-on-dark-muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-daniela {
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: color-mix(in srgb, var(--brand-beige) 28%, white);
}

.about-daniela-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas:
    "media heading"
    "media content";
  column-gap: clamp(3.5rem, 7vw, 7rem);
  row-gap: 2rem;
  align-items: center;
}

.about-daniela-heading {
  grid-area: heading;
  align-self: end;
}

.about-daniela-heading .eyebrow {
  color: var(--brand-gold);
}

.about-daniela-heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.about-daniela-role {
  margin: 1rem 0 0;
  color: var(--brand-medium);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-daniela-registration {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.4;
}

.about-daniela-media {
  position: relative;
  grid-area: media;
  width: min(100%, 500px);
}

.about-daniela-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border: 8px solid white;
  border-radius: 1rem;
  box-shadow: var(--shadow-photo);
}

.about-daniela-experience {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  width: 9.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(13 59 59 / 10%);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 96%);
  color: var(--brand-dark);
  box-shadow: 0 12px 32px rgb(13 59 59 / 10%);
}

.about-daniela-experience strong,
.about-daniela-experience span {
  display: block;
}

.about-daniela-experience strong {
  color: var(--brand-medium);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.about-daniela-experience span {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-daniela-content {
  grid-area: content;
  align-self: start;
}

.about-daniela-content > p {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.about-daniela-content > p + p {
  margin-top: 1.15rem;
}

.about-daniela-content strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.about-daniela-content .button {
  margin-top: 2rem;
}

.faq {
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: var(--surface);
}

.faq-inner {
  max-width: 900px;
  display: grid;
  gap: clamp(3rem, 5vw, 4.5rem);
}

.faq-heading {
  max-width: 760px;
}

.faq-heading .eyebrow {
  color: var(--brand-gold);
}

.faq-heading h2 {
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  min-height: 4.75rem;
  padding: 1.25rem 0.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  align-items: center;
  gap: 1.25rem;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

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

.faq-item summary:hover {
  color: var(--brand-medium);
  background: color-mix(in srgb, var(--brand-sage) 8%, transparent);
}

.faq-item summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 55%, transparent);
  outline-offset: 3px;
}

.faq-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  justify-self: end;
  border: 1px solid color-mix(in srgb, var(--brand-sage) 55%, white);
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-sage) 12%, white);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--brand-medium);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer:not(:empty) {
  max-width: 760px;
  padding: 0 3.5rem 1.5rem 0.25rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.faq-item[open] .faq-answer:not(:empty) {
  animation: faq-answer-reveal 180ms ease-out;
}

@keyframes faq-answer-reveal {
  from {
    opacity: 0;
    transform: translateY(-0.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  padding-block: clamp(5rem, 8vw, 7rem);
  border-bottom: 1px solid rgb(231 216 194 / 14%);
  background: var(--surface-dark);
}

.final-cta-inner {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  color: var(--text-on-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

.final-cta-title-accent {
  color: var(--brand-gold);
}

.final-cta p {
  max-width: 660px;
  margin: 1.35rem auto 0;
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.button--final {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  border-color: rgb(201 164 106 / 28%);
  background: color-mix(in srgb, var(--brand-beige) 88%, white);
  color: var(--brand-dark);
  box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
}

.button--final:hover {
  border-color: var(--brand-gold);
  background: var(--brand-beige);
  box-shadow: 0 16px 32px rgb(0 0 0 / 16%);
}

.site-footer {
  padding-top: clamp(4rem, 7vw, 5.75rem);
  background: var(--surface-dark);
  color: var(--text-on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(170px, 0.65fr) minmax(260px, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.footer-logo {
  width: min(100%, 247px);
  display: block;
  border-radius: 0.35rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand-column > p {
  max-width: 390px;
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand-column > .footer-registration {
  margin-top: 0.55rem;
  color: color-mix(in srgb, var(--text-on-dark-muted) 82%, transparent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.5;
}

.footer-column h2 {
  margin: 0 0 1.25rem;
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-navigation li + li {
  margin-top: 0.25rem;
}

.footer-navigation a,
.footer-contact a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-navigation a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--brand-gold);
}

.footer-contact > p,
.footer-contact address {
  margin: 0;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-contact address {
  margin-top: 1.15rem;
}

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

.footer-contact strong {
  color: var(--text-on-dark);
  font-weight: 700;
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer-socials a,
.footer-social-pending {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(231 216 194 / 22%);
  border-radius: 50%;
  color: var(--text-on-dark);
}

.footer-socials a {
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--brand-gold);
  background: rgb(255 255 255 / 4%);
  color: var(--brand-gold);
}

.footer-social-pending {
  opacity: 0.62;
}

.footer-bottom {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgb(231 216 194 / 14%);
}

.footer-bottom p {
  margin: 0;
  color: color-mix(in srgb, var(--text-on-dark-muted) 76%, transparent);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-bottom-meta,
.footer-legal-links {
  display: flex;
  align-items: center;
}

.footer-bottom-meta {
  min-width: 0;
  flex-wrap: wrap;
}

.footer-legal-links a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--text-on-dark-muted) 76%, transparent);
  font-size: 0.75rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal-links a::before {
  content: "·";
  margin-inline: 0.7rem;
  color: color-mix(in srgb, var(--brand-gold) 64%, transparent);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--brand-gold);
}

@media (max-width: 760px) {
  .faq {
    padding-block: 4.5rem;
  }

  .faq-inner {
    gap: 2.5rem;
  }

  .faq-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .faq-heading h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.08;
  }

  .faq-item summary {
    min-height: 4.5rem;
    padding: 1.05rem 0;
    grid-template-columns: minmax(0, 1fr) 2.5rem;
    gap: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .faq-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .faq-answer:not(:empty) {
    padding: 0 3.15rem 1.25rem 0;
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .final-cta {
    padding-block: 4.5rem;
  }

  .final-cta h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.4rem);
    line-height: 1.08;
  }

  .final-cta p {
    margin-top: 1.1rem;
    font-size: 0.95rem;
  }

  .button--final {
    width: 100%;
    margin-top: 1.75rem;
  }

  .site-footer {
    padding-top: 4rem;
  }

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

  .footer-logo {
    width: min(100%, 236px);
  }

  .footer-brand-column > p {
    margin-top: 1.25rem;
  }

  .footer-navigation a {
    min-height: 2.75rem;
  }

  .footer-contact > p,
  .footer-contact address {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 3.25rem;
    padding-block: 1.5rem 2rem;
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
  }

  .footer-bottom-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
  }

  .footer-legal-links a {
    min-height: 2.75rem;
  }

  .footer-legal-links a::before {
    display: none;
  }
}

@media (max-width: 840px) {
  .about-daniela-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "media"
      "content";
    gap: 2rem;
  }

  .about-daniela-heading,
  .about-daniela-content {
    align-self: auto;
  }

  .about-daniela-media {
    width: min(92%, 500px);
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .brand {
    width: 184px;
  }

  .main-nav {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: 2.5rem;
  }

  h1 {
    font-size: clamp(2.75rem, 5.4vw, 3.6rem);
  }

  .hero-indicators > div {
    padding-inline: 1rem;
  }

  .review-card {
    flex-basis: calc((100% - var(--review-gap)) / 2);
  }

  .consultation-process-layout {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    column-gap: 2.5rem;
  }
}

@media (max-width: 840px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .main-nav {
    display: none;
  }

  .consultation-process-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "steps"
      "media";
  }

  .consultation-media-column {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }

  .consultation-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-inline: 0;
  }

  .consultation-media--assessment {
    margin: 0;
  }

  .consultation-media--treatment {
    margin: 0;
  }

  .consultation-step--03,
  .consultation-step--04 {
    padding-top: 0;
  }

}

@media (max-width: 760px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    border-bottom-color: rgb(13 59 59 / 6%);
  }

  .header-inner {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .brand {
    width: clamp(145px, 43vw, 178px);
    height: 72px;
  }

  .main-nav {
    display: none;
  }

  .button--header {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    font-size: 0.78rem;
  }

  .button--header svg {
    width: 17px;
    height: 17px;
  }

  .button-label-desktop {
    display: none;
  }

  .button-label-mobile {
    display: inline;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 100% 48%, rgb(168 193 181 / 17%), transparent 31%),
      var(--surface);
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
    padding-block: 2.75rem 3.5rem;
  }

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

  .hero-content,
  .complaints-heading,
  .reviews-heading {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .eyebrow::before {
    width: 1.75rem;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 10.4vw, 2.85rem);
    line-height: 1.03;
  }

  .hero-subheadline {
    max-width: 38rem;
    margin-top: 1.15rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .button--primary {
    width: 100%;
    margin-top: 1.35rem;
    padding-inline: 1rem;
  }

  .hero-indicators {
    margin-top: 1.7rem;
    padding-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    width: 100%;
  }

  .hero-indicators > div {
    min-height: 3.75rem;
    padding: 0.5rem 0.28rem;
  }

  .hero-indicators dt {
    font-size: clamp(0.68rem, 2.9vw, 0.8rem);
    overflow-wrap: anywhere;
  }

  .hero-indicators dd {
    margin-top: 0.15rem;
    font-size: clamp(0.54rem, 2.25vw, 0.65rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: min(88vw, 410px);
    align-self: center;
    justify-self: auto;
    padding: 0.7rem 0.7rem 1rem 0.45rem;
  }

  .hero-visual::before {
    inset: 1.6rem -0.65rem -0.65rem 1.65rem;
    border-radius: 1.9rem;
  }

  .photo-frame {
    aspect-ratio: 4 / 5;
    border-width: 6px;
    border-radius: 1.8rem;
  }

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

  .identification {
    padding-block: 4.5rem;
  }

  .identification-inner {
    gap: 2rem;
  }

  .identification-heading {
    text-align: left;
  }

  .identification-heading h2 {
    font-size: clamp(1.98rem, 8.55vw, 2.4rem);
    line-height: 1.08;
  }

  .identification-heading p {
    margin-top: 1rem;
    line-height: 1.6;
  }

  .identification-panel {
    border-radius: 1rem;
    box-shadow: 0 16px 44px rgb(13 59 59 / 5%);
  }

  .situation-list {
    padding: 0.65rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .situation-item {
    padding: 1.3rem 0;
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .situation-item:nth-child(even) {
    border-left: 0;
  }

  .situation-item:nth-child(n + 2) {
    border-top: 1px solid var(--border);
  }

  .check-icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .situation-item h3 {
    font-size: 0.98rem;
  }

  .situation-item p {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .complaints {
    padding-block: 4.5rem;
  }

  .complaints-inner {
    gap: 2.25rem;
  }

  .complaints-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .complaints-heading h2 {
    font-size: clamp(2rem, 8.7vw, 2.45rem);
    line-height: 1.08;
  }

  .complaints-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .complaint-card--primary,
  .complaint-card--secondary {
    min-height: 0;
    grid-column: auto;
    padding: 1.4rem;
  }

  .complaint-card--primary {
    padding: 1.55rem;
  }

  .complaint-card-content {
    margin-top: 0;
    padding-top: 0;
  }

  .complaint-card h3,
  .complaint-card--primary h3 {
    font-size: 1.28rem;
  }

  .complaint-card p,
  .complaint-card--primary p {
    margin-top: 0.55rem;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .complaints-cta {
    justify-items: stretch;
    gap: 0.75rem;
  }

  .complaints-cta .button--primary {
    width: 100%;
  }

  .complaints-cta p {
    padding-inline: 0.5rem;
  }

  .reviews {
    padding-block: 4.5rem;
  }

  .reviews-inner {
    gap: 2.25rem;
  }

  .reviews-heading {
    justify-items: stretch;
    gap: 0;
    text-align: left;
  }

  .reviews-heading .eyebrow {
    justify-self: start;
    margin-bottom: 1rem;
  }

  .reviews-heading .google-summary {
    margin-top: 1.75rem;
    justify-self: center;
  }

  .reviews-heading h2 {
    font-size: clamp(2rem, 8.7vw, 2.45rem);
    line-height: 1.08;
  }

  .google-summary {
    padding: 0.7rem 0.9rem;
    justify-content: flex-start;
    gap: 0.45rem;
    border-radius: 999px;
  }

  .reviews-track {
    --review-gap: 0.85rem;
    margin-right: calc(-1 * var(--gutter));
    padding-right: var(--gutter);
    scroll-padding-right: var(--gutter);
  }

  .review-card {
    min-height: 0;
    padding: 1.35rem;
    flex-basis: calc(100% - 2.5rem);
  }

  .review-card blockquote {
    margin-top: 1.15rem;
  }

  .review-card blockquote p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .reviews-navigation {
    margin-top: 1.5rem;
  }

  .carousel-button {
    width: 3.1rem;
    height: 3.1rem;
  }

  .reviews-cta,
  .reviews-cta .button--primary {
    width: 100%;
  }

  .consultation-process {
    padding-block: 4.5rem;
  }

  .consultation-process-inner {
    gap: 2.75rem;
  }

  .consultation-process-cta,
  .button--consultation {
    width: 100%;
  }

  .consultation-process-cta {
    margin-top: -0.75rem;
  }

  .consultation-process-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .consultation-process-heading h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.6rem);
    line-height: 1.08;
  }

  .consultation-process-heading > p:last-child {
    margin-top: 1.1rem;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .consultation-step {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.8rem;
    padding-bottom: 1.85rem;
  }

  .consultation-step--04 {
    padding-bottom: 0;
  }

  .consultation-step h3 {
    font-size: 1.08rem;
  }

  .consultation-step-content > p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .consultation-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 0.85rem;
  }

  .consultation-media::before {
    inset: 0.75rem;
  }

  .consultation-techniques {
    margin-top: 1.1rem;
  }

  .consultation-techniques ul {
    gap: 0.45rem;
  }

  .consultation-techniques li {
    padding: 0.38rem 0.62rem;
    font-size: 0.75rem;
  }

  .about-daniela {
    padding-block: 4.5rem;
  }

  .about-daniela-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .about-daniela-heading h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.08;
  }

  .about-daniela-role {
    margin-top: 0.8rem;
    font-size: 0.8rem;
  }

  .about-daniela-media img {
    border-width: 6px;
    border-radius: 0.9rem;
  }

  .about-daniela-experience {
    right: -0.5rem;
    bottom: 1.25rem;
    width: 9rem;
    padding: 0.8rem 0.9rem;
  }

  .about-daniela-experience strong {
    font-size: 1.75rem;
  }

  .about-daniela-content > p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .about-daniela-content .button {
    width: 100%;
    margin-top: 1.75rem;
  }

}

@media (max-width: 380px) {
  .button--header {
    gap: 0.45rem;
    padding-inline: 0.7rem;
  }

  .brand {
    width: 138px;
  }

  .hero-indicators > div {
    padding-inline: 0.18rem;
  }
}

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

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

  .consultation-timeline-flow,
  .consultation-step-number,
  .consultation-step-number::after {
    animation: none;
  }

  .faq-item[open] .faq-answer:not(:empty) {
    animation: none;
  }

  .consultation-step-number {
    opacity: 1;
  }

  .consultation-slideshow-slide {
    transition: none;
  }
}

/* Legal pages */
.legal-page {
  background: var(--surface-warm);
}

.legal-header {
  border-bottom: 1px solid rgb(13 59 59 / 8%);
  background: rgb(255 255 255 / 96%);
}

.legal-header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.legal-brand {
  width: 218px;
  height: 88px;
  display: flex;
  align-items: center;
}

.legal-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.legal-back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  color: var(--brand-medium);
}

.legal-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-sage) 44%, transparent);
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--brand-beige) 36%, white), transparent 58%),
    var(--surface-warm);
}

.legal-hero .eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-medium);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.legal-updated {
  margin: 1.4rem 0 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}

.legal-main {
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.legal-layout {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 2rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--brand-gold);
}

.legal-toc-title {
  margin: 0 0 1rem;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc li + li {
  margin-top: 0.15rem;
}

.legal-toc a {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--brand-medium);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 2rem;
}

.legal-section + .legal-section {
  margin-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  margin: 0 0 1.35rem;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}

.legal-section p,
.legal-section li {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.8;
}

.legal-section p {
  margin: 0;
}

.legal-section .legal-professional-registration {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.5;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 1.15rem;
}

.legal-section ul {
  margin-bottom: 0;
  padding-left: 1.3rem;
}

.legal-section li {
  padding-left: 0.35rem;
}

.legal-section li + li {
  margin-top: 0.5rem;
}

.legal-section li::marker {
  color: var(--brand-gold);
}

.legal-contact-lines {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-gold) 44%, transparent);
}

.legal-contact-lines span,
.legal-contact-lines a {
  display: block;
}

.legal-contact-lines a {
  width: fit-content;
  color: var(--brand-medium);
  text-underline-offset: 0.18em;
}

.legal-contact-lines a:hover,
.legal-contact-lines a:focus-visible,
.legal-inline-link:hover,
.legal-inline-link:focus-visible {
  color: var(--brand-dark);
}

.legal-inline-link {
  color: var(--brand-medium);
  text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-toc {
    position: static;
    padding: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--brand-sage) 54%, white);
    border-left: 3px solid var(--brand-gold);
    border-radius: 0.45rem;
    background: color-mix(in srgb, var(--brand-beige) 26%, white);
  }

  .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .legal-header-inner {
    min-height: 82px;
    gap: 1rem;
  }

  .legal-brand {
    width: 158px;
    height: 72px;
  }

  .legal-back-link {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .legal-hero {
    padding-block: 3.75rem 3rem;
  }

  .legal-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .legal-main {
    padding-block: 3.5rem 4.5rem;
  }

  .legal-layout {
    gap: 2.5rem;
  }

  .legal-toc {
    padding: 1.25rem;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-toc a {
    min-height: 2.65rem;
    font-size: 0.8rem;
  }

  .legal-section + .legal-section {
    margin-top: 2.75rem;
    padding-top: 2.75rem;
  }

  .legal-section h2 {
    font-size: 1.7rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.94rem;
    line-height: 1.75;
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--brand-dark);
  text-decoration: none;
  touch-action: manipulation;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 86%);
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 10px 28px rgb(13 59 59 / 22%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-float-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  border: 1px solid color-mix(in srgb, var(--whatsapp-green) 70%, transparent);
  border-radius: inherit;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float-label {
  position: relative;
  z-index: 2;
  min-height: 1.75rem;
  margin-top: -0.2rem;
  padding: 0.45rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(13 59 59 / 10%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(13 59 59 / 14%);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-float-icon,
.whatsapp-float:focus-visible .whatsapp-float-icon {
  background: var(--whatsapp-green);
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  border-radius: 1rem;
  outline: 3px solid var(--brand-gold);
  outline-offset: 4px;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.48;
  }

  72%,
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
  }

  .whatsapp-float-icon {
    width: 3.125rem;
    height: 3.125rem;
  }

  .whatsapp-float-icon svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-icon::before {
    animation: none;
    opacity: 0.32;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .brand {
    width: clamp(158px, 24vw, 190px);
    height: 76px;
  }

  .main-nav,
  .button--header {
    display: none;
  }

  .menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid color-mix(in srgb, var(--brand-sage) 46%, white);
    border-radius: 0.55rem;
    background: color-mix(in srgb, var(--brand-sage) 9%, white);
    color: var(--brand-dark);
    cursor: pointer;
    touch-action: manipulation;
    transition: border-color 180ms ease, background-color 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: var(--brand-medium);
    background: color-mix(in srgb, var(--brand-sage) 17%, white);
  }

  .menu-toggle:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu:not([hidden]) {
    display: block;
    border-top: 1px solid rgb(13 59 59 / 8%);
    background: #fff;
    box-shadow: 0 18px 34px rgb(13 59 59 / 9%);
  }

  .mobile-menu-inner {
    padding-block: 0.4rem 1.25rem;
  }

  .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease, padding-left 180ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    padding-left: 0.35rem;
    color: var(--brand-medium);
  }

  .mobile-nav a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: -3px;
  }

  .button--mobile-whatsapp {
    width: min(100%, 360px);
    margin-top: 1rem;
    padding: 0.85rem 1.15rem;
    background: var(--whatsapp-green);
    color: #fff;
  }

  .button--mobile-whatsapp:hover,
  .button--mobile-whatsapp:focus-visible {
    background: color-mix(in srgb, var(--whatsapp-green) 86%, black);
    box-shadow: 0 10px 24px rgb(13 59 59 / 14%);
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: clamp(145px, 44vw, 168px);
    height: 70px;
  }

  .mobile-menu-inner {
    padding-bottom: 1.1rem;
  }

  .button--mobile-whatsapp {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle span {
    transition: none;
  }
}
