:root {
  --bg: #171b22;
  --bg-deep: #10141b;
  --surface: rgba(18, 24, 33, 0.82);
  --surface-strong: rgba(21, 28, 38, 0.94);
  --surface-soft: rgba(133, 160, 136, 0.08);
  --text: #f4efe6;
  --text-soft: rgba(244, 239, 230, 0.74);
  --text-muted: rgba(244, 239, 230, 0.58);
  --line: rgba(212, 181, 112, 0.2);
  --line-strong: rgba(212, 181, 112, 0.36);
  --gold: #d4b570;
  --gold-strong: #e0c588;
  --sage: #8ea691;
  --navy: #203040;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(142, 166, 145, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(212, 181, 112, 0.1), transparent 28%),
    linear-gradient(180deg, #11161e 0%, #171b22 42%, #10141b 100%);
  color: var(--text);
  line-height: 1.6;
}

body,
h1,
h2,
h3,
p,
a,
button,
span,
label {
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  overflow: clip;
}

.site-menu {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 20;
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-menu.is-scrolled {
  opacity: 0.6;
}

.site-menu.is-active {
  opacity: 1;
}

.site-menu__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.4rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 181, 112, 0.3);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.74), rgba(16, 23, 34, 0.8)),
    rgba(11, 15, 21, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.site-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-menu__logo {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-menu__title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-menu__desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.9rem;
}

.site-menu__link,
.site-menu__dropdown-link {
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.site-menu__link:hover,
.site-menu__link:focus-visible,
.site-menu__dropdown-link:hover,
.site-menu__dropdown-link:focus-visible {
  color: var(--text);
}

.site-menu__link--disabled,
.site-menu__dropdown-link--disabled {
  opacity: 0.68;
  cursor: default;
}

.site-menu__dropdown-link--disabled:hover,
.site-menu__dropdown-link--disabled:focus-visible {
  background: transparent;
  color: var(--text-soft);
}

.site-menu__mobile {
  position: relative;
  display: none;
}

.site-menu__toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.03);
  color: var(--text);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-menu__toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-menu__mobile.is-open .site-menu__toggle span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-menu__mobile.is-open .site-menu__toggle span:nth-child(2) {
  opacity: 0;
}

.site-menu__mobile.is-open .site-menu__toggle span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.site-menu__dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  display: grid;
  gap: 0.2rem;
  min-width: 14rem;
  padding: 0.7rem;
  border-radius: 22px;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: rgba(11, 15, 21, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-menu__mobile.is-open .site-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-menu__dropdown-link {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
}

.site-menu__dropdown-link:hover,
.site-menu__dropdown-link:focus-visible {
  background: rgba(244, 239, 230, 0.05);
}

.site-footer {
  position: relative;
  padding: 2.5rem 0 2rem;
}

.site-footer__inner {
  padding: 2.4rem 2rem 2rem;
  border: 1px solid rgba(212, 181, 112, 0.24);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.38), rgba(16, 23, 34, 0.78)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.02), rgba(244, 239, 230, 0.01)),
    rgba(10, 14, 20, 0.72);
  border-radius: 34px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.85fr) minmax(220px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.site-footer__logo {
  width: 5.4rem;
  height: 5.4rem;
  object-fit: contain;
}

.site-footer__brand-copy {
  display: grid;
  gap: 0.6rem;
}

.site-footer__brand-copy h3 {
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
}

.site-footer__label {
  margin-bottom: 0.9rem;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 0.75rem;
}

.site-footer__nav a,
.site-footer__contact a {
  color: var(--text-soft);
  font-size: 0.97rem;
  transition: color 180ms ease;
  overflow-wrap: break-word;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--text);
}

.site-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  text-align: center;
}

.site-footer__copyright {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.section-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.section-spacing {
  padding: 7.5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 40rem;
}

.section-heading--compact {
  margin-bottom: 3rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.45rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #10141b;
  box-shadow: 0 20px 40px rgba(212, 181, 112, 0.18);
}

.button--secondary,
.button--ghost {
  background: rgba(244, 239, 230, 0.02);
  border-color: rgba(244, 239, 230, 0.14);
  color: var(--text);
}

.button--whatsapp {
  background: linear-gradient(135deg, rgba(142, 166, 145, 0.22), rgba(32, 48, 64, 0.78));
  border-color: rgba(142, 166, 145, 0.28);
  color: var(--text);
}

.button--footer {
  background: rgba(244, 239, 230, 0.03);
  border-color: rgba(212, 181, 112, 0.22);
  color: var(--text);
  min-height: 2.85rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 600;
}

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

.button:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.star:focus-visible,
.reviews-toggle:focus-visible {
  outline: 2px solid rgba(212, 181, 112, 0.9);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 1.5rem 0;
}

.hero__backdrop,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  background:
    linear-gradient(135deg, rgba(10, 14, 20, 0.96) 0%, rgba(17, 22, 30, 0.92) 46%, rgba(24, 34, 46, 0.88) 100%),
    radial-gradient(circle at 18% 18%, rgba(212, 181, 112, 0.12), transparent 24%),
    radial-gradient(circle at 86% 26%, rgba(142, 166, 145, 0.12), transparent 28%);
}

.hero__backdrop::before,
.hero__backdrop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 230, 0.06);
}

.hero__backdrop::before {
  inset: 12% auto auto 7%;
  width: 20rem;
  height: 20rem;
}

.hero__backdrop::after {
  inset: auto 8% 14% auto;
  width: 16rem;
  height: 16rem;
}

.hero__glow {
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.6;
}

.hero__glow--gold {
  inset: 8% auto auto 4%;
  width: 18rem;
  height: 18rem;
  background: rgba(212, 181, 112, 0.18);
}

.hero__glow--sage {
  inset: auto 4% 8% auto;
  width: 22rem;
  height: 22rem;
  background: rgba(142, 166, 145, 0.16);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero__layout {
  position: relative;
  max-width: 52rem;
  display: grid;
  gap: 0;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

h1 {
  max-width: 18ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
}

h1 span {
  display: block;
}

.hero__headline-line--primary {
  white-space: nowrap;
}

.hero__headline-line--secondary {
  white-space: nowrap;
}

.hero__headline-line:last-child {
  white-space: nowrap;
}

h1 span:nth-child(2),
h1 span:nth-child(3) {
  font-size: 0.83em;
  line-height: 1.02;
}

h1 span:nth-child(2) {
  color: rgba(244, 239, 230, 0.92);
}

h1 span:nth-child(3) {
  color: var(--gold);
}

.hero__lede {
  max-width: 41rem;
  margin-top: 1.45rem;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  max-width: 42rem;
  margin-top: 1.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__trust span::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--gold);
}

.about {
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 3.4rem 4.5rem;
  align-items: start;
}

.about__intro {
  position: relative;
  display: grid;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 181, 112, 0.22);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.3), rgba(16, 23, 34, 0.68)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.03), rgba(244, 239, 230, 0.015)),
    rgba(16, 20, 27, 0.66);
}

.about__highlights {
  display: grid;
  gap: 0.75rem;
}

.about__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about__highlights span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.about__content {
  display: grid;
  gap: 1.8rem;
}

.about__lead {
  max-width: 44rem;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.7;
}

.about__story {
  display: grid;
  gap: 1.5rem;
}

.about__methodologies {
  display: grid;
  gap: 1rem;
}

.about__methodology-label {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about__closing {
  max-width: 44rem;
  padding-top: 0.2rem;
}

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

.methodology-list article {
  height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(212, 181, 112, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.26), rgba(16, 23, 34, 0.6)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.03), rgba(244, 239, 230, 0.015)),
    rgba(32, 48, 64, 0.08);
}

.methodology-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.4rem;
  line-height: 1.04;
}

.methodology-list p {
  font-size: 0.97rem;
}

.certification__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(212, 181, 112, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.52), rgba(16, 23, 34, 0.86)),
    radial-gradient(circle at top left, rgba(142, 166, 145, 0.16), transparent 32%);
  box-shadow: var(--shadow);
}

.certification__copy {
  display: grid;
  gap: 1.25rem;
}

.certification__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.certification__meta span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.08);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.certification__card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: calc(var(--radius-xl) - 6px);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.28), rgba(16, 23, 34, 0.56)),
    rgba(10, 14, 20, 0.4);
  border: 1px solid rgba(212, 181, 112, 0.2);
}

.certification__label,
.contact-direct__label {
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.certification__association {
  color: var(--text);
  font-size: 1rem;
}

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

.credential-item {
  display: grid;
  gap: 1rem;
  min-height: 10rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 181, 112, 0.22);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.28), rgba(16, 23, 34, 0.62)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.03), rgba(244, 239, 230, 0.015)),
    rgba(32, 48, 64, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.credential-item__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 35% 35%, rgba(212, 181, 112, 0.82), transparent 38%),
    rgba(142, 166, 145, 0.12);
}

.credential-item h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.reviews__layout,
.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.reviews__layout:not(.has-reviews) {
  grid-template-columns: 1fr;
  justify-items: center;
}

.reviews__layout:not(.has-reviews) .review-form-panel {
  width: min(100%, 42rem);
}

.reviews__layout:not(.has-reviews) .reviews-display {
  display: none;
}

.review-form-panel,
.reviews-display,
.contact-form-panel,
.contact-map-panel {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 181, 112, 0.22);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.3), rgba(16, 23, 34, 0.66)),
    linear-gradient(180deg, rgba(244, 239, 230, 0.03), rgba(244, 239, 230, 0.015)),
    rgba(16, 20, 27, 0.78);
}

.review-form,
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field span {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(212, 181, 112, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.18), rgba(16, 23, 34, 0.34)),
    rgba(244, 239, 230, 0.03);
  color: var(--text);
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    opacity 200ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 239, 230, 0.38);
}

.field input:disabled {
  opacity: 0.45;
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.14), rgba(16, 23, 34, 0.24)),
    rgba(244, 239, 230, 0.015);
}

.form-status {
  min-height: 1.4rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #f0b0a8;
}

.form-status.is-success {
  color: #b7d7bb;
}

.review-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.review-note a {
  color: var(--text-soft);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
}

.checkbox-field input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.star {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 239, 230, 0.24);
  font-size: 2rem;
  line-height: 1;
  transform-origin: center;
  transition:
    color 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.star.is-active,
.star.is-hovered {
  color: var(--gold);
  transform: translateY(-1px) scale(1.04);
  text-shadow: 0 0 18px rgba(212, 181, 112, 0.24);
}

.reviews-display {
  display: grid;
  gap: 1.2rem;
}

.reviews-display__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-toggle {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 230, 0.1);
  background: rgba(244, 239, 230, 0.02);
  color: var(--text);
  font-weight: 600;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.reviews-list,
.reviews-more {
  display: grid;
  gap: 1rem;
}

.reviews-more {
  overflow: hidden;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
}

.review-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.26), rgba(16, 23, 34, 0.58)),
    rgba(244, 239, 230, 0.03);
  border: 1px solid rgba(212, 181, 112, 0.2);
}

.review-card--muted {
  background:
    linear-gradient(135deg, rgba(27, 43, 61, 0.22), rgba(16, 23, 34, 0.5)),
    rgba(32, 48, 64, 0.24);
}

.review-card__stars {
  margin-bottom: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.review-card p {
  margin-bottom: 1rem;
}

.review-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.map-frame {
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 239, 230, 0.08);
  min-height: 24rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.3rem 0 1.4rem;
}

.contact-direct a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1rem;
  overflow-wrap: break-word;
}

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

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

.animate-in {
  opacity: 0;
  transform: translateY(28px);
}

.animate-in.is-visible {
  animation: heroLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.button.is-pressed {
  transform: translateY(1px) scale(0.985);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@media (max-width: 1100px) {
  .about__grid,
  .certification__panel,
  .reviews__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-menu {
    inset: 0.8rem 0 auto;
  }

  .site-menu__inner {
    min-height: 4.2rem;
    padding: 0.6rem 0.75rem;
    gap: 0.8rem;
    width: min(calc(100% - 1rem), 100%);
  }

  .site-menu__title,
  .site-menu__desktop {
    display: none;
  }

  .site-menu__mobile {
    display: inline-flex;
    align-items: center;
  }

  .site-menu__logo {
    width: 3rem;
    height: 3rem;
  }

  .site-menu__brand {
    gap: 0;
  }

  .site-menu__toggle {
    width: 2.9rem;
    height: 2.9rem;
  }

  .site-menu__dropdown {
    top: calc(100% + 0.6rem);
    min-width: min(15rem, calc(100vw - 2rem));
  }

  .site-footer {
    padding: 2rem 0 1.6rem;
  }

  .site-footer__inner {
    padding: 1.8rem 1.2rem 1.5rem;
    border-radius: 26px;
  }

  .site-footer__top {
    gap: 1.6rem;
    text-align: center;
  }

  .site-footer__brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer__nav,
  .site-footer__contact,
  .site-footer__brand-copy {
    justify-items: center;
  }

  .site-footer__logo {
    width: 4rem;
    height: 4rem;
  }

  .site-footer__bottom .button--footer {
    width: auto;
    max-width: 20rem;
  }

  .section-inner {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .section-spacing {
    padding: 5.5rem 0;
  }

  .hero__content {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero__layout {
    max-width: 100%;
  }

  .hero__lede {
    max-width: 32rem;
    font-size: 1rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .credentials__grid,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .review-form-panel,
  .reviews-display,
  .contact-form-panel,
  .contact-map-panel,
  .certification__panel {
    padding: 1.35rem;
  }

  .about__intro {
    padding: 1.5rem;
  }

  .about__lead {
    font-size: 1.14rem;
  }

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

  .hero__trust {
    justify-content: flex-start;
    gap: 0.7rem 1rem;
  }
}

@media (max-width: 520px) {
  .section-inner {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-menu {
    inset: 0.6rem 0 auto;
  }

  .site-menu__inner {
    min-height: 3.9rem;
    padding: 0.45rem 0.6rem;
    width: min(calc(100% - 0.6rem), 100%);
  }

  .site-menu__logo {
    width: 2.6rem;
    height: 2.6rem;
  }

  .site-menu__toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  .site-menu__dropdown {
    min-width: min(13.5rem, calc(100vw - 1.2rem));
    right: 0;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero__headline-line--primary,
  .hero__headline-line--secondary,
  .hero__headline-line:last-child {
    white-space: normal;
  }

  .hero__trust span {
    width: 100%;
  }

  .button {
    min-height: 3.1rem;
    padding: 0.82rem 1rem;
  }

  .site-footer__inner,
  .about__intro,
  .review-form-panel,
  .reviews-display,
  .contact-form-panel,
  .contact-map-panel,
  .certification__panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer__brand-copy h3,
  .contact-map-panel h3,
  .review-form-panel h3,
  .reviews-display h3,
  .contact-form-panel h3 {
    line-height: 1.08;
  }
}

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

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