@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #2e70f9;
  --blue-dark: #173f8e;
  --blue-soft: #eaf3ff;
  --ink: #1c448f;
  --muted: #5b76a6;
  --line: #dfe8f5;
  --surface: #f0f6fd;
  --white: #ffffff;
  --success: #117a45;
  --error: #b42318;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(30, 69, 137, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

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

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-shell {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  margin-top: 96px;
}

.surface {
  background:
    radial-gradient(circle at 100% 0%, rgba(151, 202, 255, 0.18), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(255, 218, 194, 0.28), transparent 38%),
    var(--surface);
  border-radius: var(--radius-lg);
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(46, 112, 249, 0.18);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: #155de8;
  box-shadow: 0 10px 24px rgba(46, 112, 249, 0.27);
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(46, 112, 249, 0.35);
  outline-offset: 3px;
}

.button--light {
  color: var(--blue);
  background: var(--white);
  border-color: #e6edf7;
  box-shadow: none;
}

.button--light:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.button--small {
  min-height: 39px;
  padding-inline: 22px;
  font-size: 0.78rem;
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr 250px;
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 22px 44px;
}

.brand {
  position: relative;
  z-index: 52;
  width: 168px;
}

.brand img {
  width: 168px;
  height: 94px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
}

.nav-list {
  display: inline-flex;
  min-width: 620px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: var(--white);
  border-radius: 999px;
  list-style: none;
}

.nav-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 31px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-link::before {
  content: "▦";
  color: var(--blue);
  font-size: 1.15rem;
}

.header-chat {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.header-chat svg {
  width: 20px;
}

.menu-toggle {
  position: relative;
  z-index: 53;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle::after {
  top: 28px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

.hero-home {
  min-height: 720px;
  overflow: hidden;
}

.hero-home__content {
  position: relative;
  display: grid;
  min-height: 608px;
  grid-template-columns: 53% 47%;
  align-items: center;
  padding: 55px 44px 40px;
}

.hero-home__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-home h1 {
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-home h1 span,
.about-hero h1 span {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-home__image {
  position: absolute;
  right: 55px;
  bottom: 0;
  width: min(42%, 545px);
}

.story-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  padding-inline: 50px;
}

.portrait-block {
  text-align: center;
}

.portrait {
  width: 310px;
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 50%;
}

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

.caption-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.caption-line::before {
  width: 36px;
  height: 2px;
  content: "";
  background: var(--blue);
}

.story-copy {
  max-width: 820px;
}

.story-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  margin-top: 48px;
  padding-inline: 50px;
}

.story-media__feature,
.video-frame {
  overflow: hidden;
  background: #000;
  border-radius: 2px;
}

.story-media__feature {
  margin: 0;
}

.story-media__feature img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.services-preview {
  padding: 86px 40px 42px;
  text-align: center;
}

.services-preview__intro {
  max-width: 780px;
  margin: 0 auto 36px;
}

.services-preview__intro h2 {
  margin-bottom: 18px;
}

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

.preview-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
}

.preview-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.preview-card__body {
  padding: 26px 24px 32px;
}

.preview-card h3 {
  margin-bottom: 12px;
}

.preview-card p {
  min-height: 48px;
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.preview-card--qr img {
  height: auto;
  aspect-ratio: 1;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-inline: 34px;
}

.visit-grid > img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.visit-card {
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.pin-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 30px;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
}

.pin-icon svg {
  width: 36px;
}

.visit-card h2 {
  margin-bottom: 20px;
}

.visit-card p {
  margin-bottom: 28px;
}

.cta {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 120%, rgba(14, 208, 236, 0.42) 0 18%, transparent 18.5%),
    linear-gradient(130deg, #0c8cf4, #2c68f6 55%, #3375fa);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta::after {
  position: absolute;
  right: -10%;
  bottom: -60%;
  width: 70%;
  aspect-ratio: 1;
  border: 7px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 55px 24px;
}

.cta__heart {
  width: 75px;
  margin: 0 auto 30px;
}

.cta h2 {
  margin-bottom: 28px;
  color: var(--white);
}

.site-footer {
  margin-top: 100px;
  padding: 0 44px 32px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 58px;
}

.footer-grid h3 {
  margin-bottom: 15px;
  font-size: 1rem;
  letter-spacing: normal;
}

.footer-grid p {
  font-size: 0.88rem;
}

.footer-contact {
  text-align: center;
}

.footer-contact .phone-big {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
}

.footer-menu {
  text-align: right;
}

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

.footer-menu a {
  display: inline-block;
  padding: 4px 0;
  font-size: 0.88rem;
}

.footer-menu a:hover {
  color: var(--blue);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #f4f7fb;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 28px;
}

/* Inner page heroes */
.inner-hero {
  min-height: 690px;
  overflow: hidden;
}

.inner-hero__content {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  padding: 55px 44px 75px;
  text-align: center;
}

.inner-hero__content h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.about-hero__portrait {
  width: 280px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 50%;
}

.about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding-inline: 44px;
}

.about-intro__image {
  width: min(100%, 480px);
  justify-self: center;
}

.about-intro__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-grid li,
.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-grid li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 700;
}

.values-stack {
  margin-top: 120px;
  padding-inline: 44px;
}

.value-row {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  margin-bottom: 115px;
}

.value-row__image {
  width: 410px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.value-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--blue);
  border: 3px solid var(--blue);
  border-radius: 14px;
  font-family: Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.signature {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 600;
}

.signature::before {
  width: 90px;
  height: 2px;
  content: "";
  background: var(--blue);
}

/* Services page */
.services-hero {
  min-height: 610px;
}

.services-hero .inner-hero__content {
  min-height: 475px;
}

.services-hero h1 {
  margin-bottom: 22px;
}

.service-catalog {
  margin-top: -1px;
  padding: 0 44px 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.service-panel,
.service-photo {
  height: 565px;
  min-height: 565px;
}

.service-panel {
  display: flex;
  align-items: center;
  padding: 70px 90px;
  background: var(--white);
}

.service-panel h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-panel__footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Contact page */
.contact-hero {
  min-height: 900px;
  overflow: hidden;
}

.contact-hero .site-header {
  min-height: 112px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  padding: 62px 78px 105px;
}

.contact-details h1 {
  margin-bottom: 145px;
  font-size: clamp(3.25rem, 5vw, 5.4rem);
}

.contact-details h2 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
}

.contact-lines {
  display: grid;
  gap: 22px;
  margin-top: 44px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-lines a:hover {
  color: var(--blue);
}

.map-link {
  margin-top: 30px;
}

.contact-form-card {
  padding: 55px 54px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 30px;
}

.form-field {
  margin-bottom: 18px;
}

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

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #edf0f4;
  color: #203e73;
  background: #f7f9fc;
  border-radius: 2px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input {
  height: 51px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 110px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 112, 249, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 28px;
  font-size: 0.84rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.contact-form-card button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.map-section {
  height: 600px;
  margin-top: 34px;
  overflow: hidden;
  background: #e7e7e4;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 150px 1fr 180px;
    padding-inline: 28px;
  }

  .brand,
  .brand img {
    width: 145px;
  }

  .nav-list {
    min-width: auto;
  }

  .nav-link {
    padding-inline: 18px;
  }

  .phone-link {
    font-size: 0.74rem;
  }

  .hero-home__content {
    grid-template-columns: 58% 42%;
  }

  .story-grid {
    gap: 55px;
  }

  .service-panel {
    padding: 55px;
  }

  .contact-layout {
    gap: 50px;
    padding-inline: 50px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 24px, 720px);
  }

  .section {
    margin-top: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 92px;
    padding: 12px 18px;
  }

  .brand,
  .brand img {
    width: 120px;
    height: 67px;
  }

  .desktop-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    background: rgba(239, 246, 253, 0.98);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .desktop-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
  }

  .nav-list {
    width: min(320px, calc(100% - 48px));
    flex-direction: column;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-list li,
  .nav-link {
    width: 100%;
  }

  .nav-link {
    min-height: 52px;
  }

  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .header-chat {
    grid-column: 3;
  }

  .hero-home {
    min-height: 992px;
  }

  .hero-home__content {
    display: flex;
    min-height: 900px;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 24px 0;
    text-align: center;
  }

  .hero-home__copy {
    max-width: 590px;
  }

  .hero-home h1 {
    font-size: clamp(2.65rem, 9vw, 4rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-home__image {
    top: 320px;
    right: 50%;
    bottom: auto;
    width: min(76%, 430px);
    transform: translateX(50%);
  }

  .story-grid,
  .about-intro,
  .value-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 45px;
    padding-inline: 20px;
  }

  .portrait-block {
    max-width: 400px;
    margin-inline: auto;
  }

  .story-copy {
    max-width: 650px;
    margin-inline: auto;
  }

  .story-media {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .story-media__feature {
    max-width: 520px;
  }

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

  .preview-card {
    max-width: 550px;
    margin-inline: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .about-intro {
    padding-inline: 22px;
  }

  .about-intro__image {
    grid-row: 1;
  }

  .values-stack {
    padding-inline: 22px;
  }

  .value-row {
    gap: 45px;
  }

  .value-row__image {
    width: min(410px, 82vw);
    margin-inline: auto;
  }

  .service-catalog {
    padding-inline: 22px;
  }

  .service-panel,
  .service-photo {
    height: 440px;
    min-height: 440px;
  }

  .service-panel {
    padding: 48px;
  }

  .contact-layout {
    padding: 42px 35px 70px;
  }

  .contact-details h1 {
    margin-bottom: 60px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    width: calc(100% - 20px);
  }

  .surface,
  .cta {
    border-radius: 20px;
  }

  .button {
    min-height: 43px;
    padding-inline: 21px;
    font-size: 0.8rem;
  }

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

  .hero-home__content {
    min-height: 808px;
    padding-top: 38px;
  }

  .hero-home h1 {
    margin-bottom: 24px;
    font-size: 2.55rem;
  }

  .hero-home__image {
    top: 330px;
    width: min(80%, 350px);
  }

  .portrait {
    width: min(280px, 78vw);
  }

  .story-media,
  .story-grid,
  .visit-grid {
    padding-inline: 6px;
  }

  .services-preview {
    padding: 62px 12px 16px;
  }

  .preview-card img {
    height: 230px;
  }

  .preview-card--qr img {
    height: auto;
  }

  .visit-grid > img,
  .visit-card {
    min-height: 0;
    height: 330px;
  }

  .cta {
    min-height: 360px;
  }

  .cta__heart {
    width: 62px;
  }

  .site-footer {
    margin-top: 72px;
    padding-inline: 20px;
  }

  .footer-grid {
    gap: 45px;
  }

  .inner-hero,
  .services-hero {
    min-height: 510px;
  }

  .inner-hero__content,
  .services-hero .inner-hero__content {
    min-height: 418px;
    padding: 38px 20px 55px;
  }

  .inner-hero__content h1 {
    font-size: 2.8rem;
  }

  .about-hero__portrait {
    width: 200px;
  }

  .about-intro {
    gap: 45px;
    padding-inline: 8px;
  }

  .about-intro__image img {
    height: 480px;
  }

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

  .values-stack {
    margin-top: 80px;
    padding-inline: 8px;
  }

  .value-row {
    margin-bottom: 80px;
  }

  .service-catalog {
    padding: 0 6px 16px;
  }

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

  .service-panel,
  .service-photo {
    height: auto;
    min-height: auto;
  }

  .service-panel {
    padding: 42px 28px;
  }

  .service-photo {
    height: 350px;
  }

  .service-panel--individual { order: 1; }
  .service-photo--individual { order: 2; }
  .service-panel--pareja { order: 3; }
  .service-photo--pareja { order: 4; }
  .service-panel--familia { order: 5; }
  .service-photo--familia { order: 6; }
  .service-panel--capacitacion { order: 7; }
  .service-photo--capacitacion { order: 8; }

  .service-panel__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-layout {
    gap: 46px;
    padding: 30px 16px 32px;
  }

  .contact-details h1 {
    margin-bottom: 50px;
    font-size: 3rem;
  }

  .contact-lines {
    font-size: 1rem;
  }

  .contact-form-card {
    padding: 36px 22px;
  }

  .map-section {
    height: 440px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

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

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