:root {
  --brand-950: #3f0709;
  --brand-900: #6b0d12;
  --brand-800: #8f1016;
  --brand-700: #c1121a;
  --brand-600: #e8151b;
  --brand-500: #f61115;
  --brand-200: #ffc9c5;
  --brand-100: #fde9e8;
  --brand-50: #fff5f4;

  --green-600: #16a34a;
  --green-700: #15803d;

  --ink: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --surface: #ffffff;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, 0.18);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

a {
  color: var(--brand-700);
}

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

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

section[id] {
  scroll-margin-top: 90px;
}

section {
  padding-block: 84px;
}

.section-alt {
  background: var(--surface);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .highlights-grid .reveal:nth-child(2),
.js .gallery-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .highlights-grid .reveal:nth-child(3),
.js .gallery-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js .highlights-grid .reveal:nth-child(4),
.js .gallery-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.js .services-grid .reveal:nth-child(2),
.js .about-grid .reveal:nth-child(2),
.js .contact-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav,
  .nav > a:not(.btn)::after {
    transition: none;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 6px 13px;
  border-radius: 999px;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

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

.section-head p {
  margin-top: 14px;
  color: var(--muted);
}

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
}

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

.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s ease;
}

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

.btn-primary {
  background: var(--brand-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-800);
}

.btn-whatsapp {
  background: var(--green-600);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-700);
}

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--brand-600);
  color: var(--brand-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  height: 40px;
  width: auto;
}

.brand-wordmark {
  display: block;
  height: 16px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav > a:not(.btn) {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-600);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.2s ease;
}

.nav > a:not(.btn):hover {
  color: var(--ink);
}

.nav > a:not(.btn):hover::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.nav > a:not(.btn).is-active {
  color: var(--ink);
}

.nav > a:not(.btn).is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav .btn {
  padding: 11px 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-switch a {
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  line-height: 1;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.lang-switch a.is-active {
  background: var(--brand-700);
  color: #fff;
}

.lang-switch a:not(.is-active):hover {
  color: var(--ink);
  background: var(--brand-50);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.is-active .icon-menu {
  display: none;
}

.nav-toggle.is-active .icon-close {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 72px;
  background: radial-gradient(
      900px 420px at 88% -10%,
      rgba(20, 184, 166, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 380px at -10% 24%,
      rgba(14, 116, 144, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-top: 22px;
}

.hero h1 .accent {
  color: var(--brand-700);
}

.hero .lead {
  margin-top: 18px;
  font-size: 1.09rem;
  color: var(--muted);
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.chip .icon {
  width: 16px;
  height: 16px;
  color: var(--brand-700);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
}

.contact-card h2 {
  font-size: 1.15rem;
}

.contact-card > p {
  margin-top: 6px;
  font-size: 0.94rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

a.contact-row:hover {
  background: var(--brand-50);
}

.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
}

.contact-row .label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-row .value {
  display: block;
  font-weight: 600;
  line-height: 1.35;
}

.highlights {
  padding-block: 12px 24px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.highlight .hl-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
}

.highlight h3 {
  font-size: 0.99rem;
}

.highlight p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy p {
  margin-top: 16px;
  color: #334155;
}

.photo-slot {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
}

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.team-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--brand-50);
  color: var(--brand-700);
}

.team-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.team-card p {
  margin-top: 7px;
  font-size: 0.94rem;
  color: var(--muted);
}

.team-card p strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.service-card header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.service-card header p {
  margin-top: 3px;
  font-size: 0.92rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
}

.cardio .service-icon {
  background: var(--brand-100);
  color: var(--brand-700);
}

.dental .service-icon {
  background: var(--brand-50);
  color: var(--brand-700);
}

.service-list {
  display: grid;
  gap: 11px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
}

.service-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.cardio .service-list .icon {
  color: var(--brand-700);
}

.dental .service-list .icon {
  color: var(--brand-600);
}

.services-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 880px;
  margin: 28px auto 0;
  padding: 18px 20px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-lg);
  color: var(--brand-900);
  font-size: 0.97rem;
}

.services-note .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: none;
  color: var(--brand-600);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  background: #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(74, 8, 12, 0) 45%,
    rgba(74, 8, 12, 0.4)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item .zoom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-800);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:hover .zoom-icon,
.gallery-item:focus-visible .zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-item .zoom-icon {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
  }
}

#lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(1040px, 94vw);
  width: 100%;
  overflow: visible;
}

#lightbox::backdrop {
  background: rgba(2, 6, 23, 0.82);
}

.lightbox-figure {
  margin: 0;
}

#lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.6);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#lightbox.is-changing img {
  opacity: 0;
  transform: translateX(var(--slide-dir, 14px));
}

.lightbox-counter {
  margin-top: 12px;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: #cbd5e1;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background-color 0.15s ease;
}

.lightbox-nav:hover {
  background: #fff;
}

.lightbox-prev {
  left: -20px;
}

.lightbox-next {
  right: -20px;
}

@media (max-width: 720px) {
  .lightbox-close {
    top: -14px;
    right: -8px;
    width: 38px;
    height: 38px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 8px;
  align-content: start;
  box-shadow: var(--shadow-sm);
}

.contact-panel .contact-row {
  padding: 12px 10px;
}

.contact-panel .note {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--muted);
}

.map-wrap {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e0f2fe, var(--brand-50));
}

.map-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  padding: 24px;
  text-align: center;
  font: inherit;
  transition: background-color 0.15s ease;
}

.map-cta:hover {
  background: rgba(15, 118, 110, 0.05);
}

.map-cta .map-pin {
  width: 44px;
  height: 44px;
  color: var(--brand-700);
}

.map-cta strong {
  font-size: 1.06rem;
}

.map-cta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: #2a0d10;
  color: #cbd5e1;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-block: 60px 44px;
}

.brand-light {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  color: #94a3b8;
  font-size: 0.94rem;
  max-width: 40ch;
}

.site-footer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-list a:hover {
  color: #ffc9c5;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  color: #cbd5e1;
  transition: color 0.15s ease, border-color 0.15s ease,
    background-color 0.15s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--brand-600);
  background: var(--brand-700);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-block: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffc9c5;
}

.page-hero {
  max-width: 800px;
  margin-inline: auto;
  padding-block: 60px 8px;
}

.prose {
  max-width: 800px;
  margin-inline: auto;
  padding-block: 24px 88px;
}

.prose h2 {
  font-size: 1.28rem;
  margin-top: 2.1em;
  scroll-margin-top: 100px;
}

.prose p,
.prose li {
  color: #334155;
  margin-top: 0.9em;
}

.prose ul {
  padding-left: 1.25em;
  list-style: disc;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .map-wrap {
    min-height: 380px;
  }
}

@media (max-width: 1020px) {
  .brand-mark {
    height: 36px;
  }

  .brand-wordmark {
    height: 14px;
  }

  .lang-switch {
    align-self: flex-start;
    margin-top: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 14px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }

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

  .nav > a:not(.btn)::after {
    display: none;
  }

  .nav > a:not(.btn) {
    padding: 12px 8px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .nav > a:not(.btn):hover,
  .nav > a:not(.btn).is-active {
    background: var(--brand-50);
    color: var(--ink);
  }

  .nav .btn {
    margin-top: 8px;
  }
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  section {
    padding-block: 64px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 48px 36px;
  }

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

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

  .hero {
    padding-block: 56px 56px;
  }

  .contact-card,
  .service-card,
  .contact-panel {
    padding: 22px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-item {
    border-radius: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 32px;
  }

  .brand-wordmark {
    height: 12px;
  }
}
