:root {
  --font-sans: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ink: #173373;
  --ink-deep: #0a1d4c;
  --teal: #2450a0;
  --teal-bright: #2d68c4;
  --mint: #dceaff;
  --lime: #96dcff;
  --paper: #f7f5ef;
  --paper-warm: #eeeae0;
  --white: #ffffff;
  --muted: #64718d;
  --line: rgba(23, 51, 115, 0.14);
  --shadow: 0 28px 70px rgba(10, 29, 76, 0.15);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink-deep);
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 24px;
  top: -100px;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--lime);
  color: var(--ink-deep);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 22px 0;
  color: var(--white);
  transition: padding 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 13px 0;
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 12px 40px rgba(5, 27, 34, 0.09);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}

.brand-logo {
  width: 270px;
  height: auto;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.site-header.scrolled .brand-logo {
  filter: brightness(0) saturate(100%) invert(18%) sepia(51%) saturate(2167%) hue-rotate(205deg) brightness(88%) contrast(94%);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}

.brand-mark::before {
  width: 17px;
  height: 2px;
}

.brand-mark::after {
  width: 2px;
  height: 17px;
}

.brand-mark span {
  position: absolute;
  width: 7px;
  height: 7px;
  right: 6px;
  top: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.025em;
}

.brand-copy small {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 0.2s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.nav-cta {
  min-height: 44px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.site-header.scrolled .nav-cta {
  border-color: var(--ink);
}

.nav-cta:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink-deep);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 26px;
}

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

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

.hero {
  min-height: 820px;
  height: max(820px, 100svh);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: -2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  filter: saturate(0.65) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 65, 0.97) 0%, rgba(12, 34, 80, 0.82) 45%, rgba(12, 34, 80, 0.28) 78%, rgba(12, 34, 80, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 22, 65, 0.84) 0%, transparent 40%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  left: -300px;
  bottom: -370px;
  border: 1px solid rgba(150, 220, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(150, 220, 255, 0.03), 0 0 0 180px rgba(150, 220, 255, 0.02);
}

.hero-shell {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  padding: 150px 0 105px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.hero-copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.hero h1,
.section h2,
.benefits h2,
.location h2,
.final-cta h2 {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(58px, 6.4vw, 96px);
}

.hero h1 span {
  color: var(--mint);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-actions,
.final-cta-shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-whatsapp {
  background: var(--lime);
  color: var(--ink-deep);
  box-shadow: 0 16px 34px rgba(174, 214, 74, 0.2);
}

.button-whatsapp:hover {
  box-shadow: 0 20px 42px rgba(174, 214, 74, 0.28);
}

.wa-dot {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.wa-dot.large {
  width: 44px;
  height: 44px;
  font-size: 10px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  background: var(--paper);
  color: var(--ink-deep);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.appointment-card {
  width: 100%;
  align-self: end;
  margin-bottom: 56px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(13, 38, 92, 0.78);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
}

.appointment-logo {
  width: 50px;
  height: 50px;
  margin: 0 0 18px auto;
  object-fit: contain;
  opacity: 0.9;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.appointment-card h2 {
  margin: 0 0 24px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.appointment-row {
  padding: 16px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.appointment-row > div {
  display: grid;
}

.appointment-row small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.appointment-row strong,
.appointment-row a {
  font-size: 13px;
  font-weight: 700;
}

.mini-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

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

.light-link {
  color: var(--lime);
}

.appointment-card .text-link {
  margin-top: 18px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-style: normal;
}

.intro-strip {
  background: var(--lime);
  color: var(--ink-deep);
}

.intro-shell {
  width: var(--shell);
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-shell > p {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.intro-points {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro-points span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-points span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.section {
  padding: 130px 0;
}

.section-shell,
.benefits-shell,
.location-shell,
.final-cta-shell,
.footer-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section h2,
.benefits h2,
.location h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
}

.about {
  overflow: hidden;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px 110px;
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 120px;
}

.about-copy {
  padding-top: 26px;
}

.about-copy > p {
  color: var(--muted);
}

.about-copy .lead-copy {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
}

.about-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature-line {
  width: 46px;
  height: 1px;
  background: var(--teal);
}

.about-signature div {
  display: grid;
}

.about-signature strong {
  font-size: 13px;
}

.about-signature small {
  color: var(--muted);
  font-size: 11px;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  height: 510px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.04) saturate(0.6);
}

.about-note {
  width: min(310px, 70%);
  margin: -96px -34px 0 auto;
  padding: 28px;
  position: relative;
  border-radius: var(--radius-md);
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-note span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-note p {
  margin: 10px 0 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
}

.about-values {
  display: grid;
}

.about-values article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  border-top: 1px solid var(--line);
}

.about-values article:last-child {
  border-bottom: 1px solid var(--line);
}

.about-values span,
.service-number,
.benefit-list article > span,
.trust-cards article > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-values h3 {
  margin: 0;
  font-size: 15px;
}

.about-values p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.services {
  background: var(--paper-warm);
}

.split-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 90px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  min-height: 360px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-5px);
}

.service-card-body {
  margin-top: auto;
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease;
}

.service-card strong {
  margin-top: 18px;
  display: block;
  color: var(--teal);
  font-size: 11px;
  line-height: 1.55;
  transition: color 0.25s ease;
}

.service-card > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 16px;
  transition: border 0.25s ease, background 0.25s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.service-card:hover strong,
.service-card:hover .service-number {
  color: var(--lime);
}

.service-card:hover > a {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink-deep);
}

.services-cta {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.services-cta p {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.benefits {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.benefits::before {
  content: "";
  width: 620px;
  height: 620px;
  position: absolute;
  left: -320px;
  top: -250px;
  border: 1px solid rgba(201, 238, 228, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(201, 238, 228, 0.025), 0 0 0 170px rgba(201, 238, 228, 0.015);
}

.benefits-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 120px;
  position: relative;
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.63);
}

.benefits-copy .button {
  margin-top: 24px;
}

.benefit-list article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list article > span {
  color: var(--lime);
}

.benefit-list h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.benefit-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 410px 330px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-warm);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4, 26, 32, 0.75));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0, 1), filter 0.4s ease;
}

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

.gallery-main {
  grid-row: 1 / 2;
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-tall img {
  object-position: center 18%;
}

.gallery-wide {
  grid-row: 2;
}

.gallery-item figcaption {
  z-index: 2;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.gallery-item figcaption span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.gallery-item figcaption strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.gallery-quote {
  display: none;
}

.image-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.trust-section {
  padding-top: 60px;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
  align-items: start;
}

.rating-block {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--lime);
}

.rating-block .eyebrow {
  color: var(--ink-deep);
}

.rating-number {
  font-family: var(--font-display), Georgia, serif;
  font-size: 116px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.stars {
  margin-top: 22px;
  letter-spacing: 0.18em;
}

.rating-block > p:not(.eyebrow) {
  margin: 12px 0;
  font-size: 13px;
  font-weight: 700;
}

.rating-block > small {
  display: block;
  font-size: 9px;
  line-height: 1.5;
  opacity: 0.67;
}

.trust-content h2 {
  max-width: 720px;
  margin-bottom: 44px;
}

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

.trust-cards article {
  padding: 28px 24px 0 0;
}

.trust-cards h3 {
  margin: 18px 0 8px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.trust-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.location {
  background: var(--teal);
  color: var(--white);
}

.location-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(380px, 0.75fr) minmax(0, 1.25fr);
}

.location-info {
  padding: 110px max(48px, calc((100vw - 1240px) / 2));
  padding-right: clamp(50px, 6vw, 100px);
}

.location-tabs {
  margin: 38px 0 28px;
  display: inline-flex;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.location-tab {
  min-width: 104px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.location-tab.active {
  background: var(--lime);
  color: var(--ink-deep);
}

.location-panel h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}

.location-panel p,
.nearby-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.nearby-copy {
  max-width: 500px;
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.map-wrap {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #d8ddd6;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  border: 0;
  filter: grayscale(0.75) contrast(0.95) sepia(0.12);
}

.map-badge {
  min-width: 170px;
  padding: 14px 18px;
  display: grid;
  position: absolute;
  left: 24px;
  bottom: 24px;
  border-radius: 14px;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-badge span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-badge strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-whatsapp {
  margin-top: 34px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(63, 83, 24, 0.12);
}

.contact-whatsapp > span:nth-child(2) {
  display: grid;
}

.contact-whatsapp small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-whatsapp strong {
  font-size: 20px;
}

.contact-whatsapp i {
  margin-left: auto;
  font-size: 22px;
  font-style: normal;
}

.contact-details {
  margin: 44px 0 0;
}

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

.contact-details dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.contact-details dd a + a {
  margin-left: 18px;
}

.contact-form {
  padding: clamp(32px, 4.5vw, 60px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading > span {
  font-family: var(--font-display), Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.form-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label:not(.consent) {
  margin-bottom: 20px;
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 44, 53, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 47px;
}

.contact-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 1px 0 var(--teal);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #98a3a6;
}

.contact-form.show-errors :invalid:not([type="checkbox"]) {
  border-color: #a92d2d;
}

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

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #a92d2d;
  font-size: 11px;
  font-weight: 700;
}

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

.submit-button span {
  margin-left: auto;
}

.form-note {
  margin-top: 16px;
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.final-cta {
  padding: 105px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(150, 220, 255, 0.17);
  border-radius: 50%;
}

.final-cta::before {
  left: -260px;
  top: -320px;
}

.final-cta::after {
  right: -260px;
  bottom: -330px;
}

.final-cta-shell {
  position: relative;
  z-index: 2;
}

.final-cta p {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(54px, 6vw, 86px);
}

.final-cta-shell > div {
  justify-content: center;
}

.site-footer {
  padding: 74px 0 28px;
  background: #07163c;
  color: var(--white);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 80px;
}

.footer-brand {
  align-self: start;
}

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

.footer-shell > p {
  max-width: 440px;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.floating-whatsapp {
  z-index: 900;
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink-deep);
  box-shadow: 0 15px 38px rgba(7, 22, 60, 0.28);
  font-size: 11px;
}

.floating-whatsapp > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.floating-whatsapp strong {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .site-nav {
    gap: 18px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.8vw, 82px);
  }

  .appointment-card {
    padding: 24px;
  }

  .intro-shell {
    padding: 22px 0;
  }

  .intro-points span:last-child {
    display: none;
  }

  .about-grid,
  .contact-grid {
    gap: 60px;
  }

  .about-note {
    margin-right: -10px;
  }

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

  .benefits-shell {
    gap: 70px;
  }

  .trust-grid {
    gap: 60px;
  }

  .location-info {
    padding-left: 42px;
    padding-right: 42px;
  }
}

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

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

  .site-header,
  .site-header.scrolled {
    padding: 12px 0;
  }

  .nav-shell {
    gap: 14px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-logo {
    width: 245px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 63px 0 auto;
    height: calc(100svh - 63px);
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0, 1);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display), Georgia, serif;
    font-size: 36px;
    font-weight: 600;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 900px;
  }

  .hero-visual img {
    object-position: 68% 50%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 22, 65, 0.97) 0%, rgba(12, 34, 80, 0.82) 70%, rgba(12, 34, 80, 0.64) 100%);
  }

  .hero-shell {
    min-height: 900px;
    padding: 130px 0 76px;
    grid-template-columns: 1fr;
    gap: 42px;
    align-content: center;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(55px, 12vw, 78px);
  }

  .hero-lead {
    max-width: 600px;
  }

  .appointment-card {
    max-width: 570px;
    margin: 0;
  }

  .hero-scroll {
    display: none;
  }

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

  .intro-points {
    width: 100%;
    justify-content: space-between;
  }

  .section,
  .benefits {
    padding: 95px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-heading,
  .contact-copy {
    position: static;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-visual {
    order: 3;
  }

  .about-values {
    order: 4;
  }

  .about-image-wrap {
    height: 420px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-shell {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 270px;
  }

  .gallery-main {
    grid-column: 1 / 2;
  }

  .gallery-tall {
    grid-column: 2;
  }

  .gallery-wide {
    grid-column: 1;
  }

  .gallery-quote {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-md);
    background: var(--mint);
  }

  .gallery-quote > span {
    font-family: var(--font-display), Georgia, serif;
    font-size: 50px;
    line-height: 0.6;
  }

  .gallery-quote blockquote {
    margin: 0;
    font-family: var(--font-display), Georgia, serif;
    font-size: 23px;
    line-height: 1.2;
  }

  .gallery-quote small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

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

  .rating-block {
    max-width: 520px;
  }

  .location-shell {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 90px 24px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 510px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell > p {
    justify-self: start;
    text-align: left;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .brand-logo {
    width: 218px;
  }

  .hero {
    min-height: 920px;
  }

  .hero-shell {
    min-height: 920px;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 66px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

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

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

  .hero-trust span:nth-child(2) {
    display: none;
  }

  .appointment-card {
    padding: 22px;
  }

  .appointment-card h2 {
    font-size: 26px;
  }

  .intro-points {
    flex-direction: column;
    gap: 8px;
  }

  .intro-points span:last-child {
    display: flex;
  }

  .section,
  .benefits {
    padding: 78px 0;
  }

  .section h2,
  .benefits h2,
  .location h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .about-grid,
  .contact-grid {
    gap: 36px;
  }

  .about-copy .lead-copy {
    font-size: 27px;
  }

  .about-image-wrap {
    height: 340px;
  }

  .about-note {
    width: 84%;
    margin: -58px -4px 0 auto;
  }

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

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

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

  .benefits-shell {
    gap: 44px;
  }

  .benefit-list article {
    grid-template-columns: 38px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 410px 250px 260px;
  }

  .gallery-main,
  .gallery-tall,
  .gallery-wide,
  .gallery-quote {
    grid-column: 1;
    grid-row: auto;
  }

  .image-note {
    text-align: left;
  }

  .trust-section {
    padding-top: 30px;
  }

  .rating-block {
    padding: 30px;
  }

  .rating-number {
    font-size: 92px;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-cards article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }

  .location-info {
    padding: 76px 18px;
  }

  .location-tab {
    min-width: 94px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-details > div {
    grid-template-columns: 90px 1fr;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: clamp(50px, 14vw, 67px);
  }

  .final-cta .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@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;
  }

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