@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("assets/fonts/SequelSans-Book.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("assets/fonts/SequelSans-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("assets/fonts/SequelSans-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("assets/fonts/SequelSans-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --purple: #41304c;
  --purple-deep: #241b2a;
  --orange: #ff8747;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --soft-gray: #eceaec;
  --gray: #6d696e;
  --charcoal: #424242;
  --black: #111111;
  --line: rgba(65, 48, 76, 0.18);
  --shell: 1320px;
  --gutter: 40px;
  --header-height: 88px;
  --font-display: "Satoshi", Arial, sans-serif;
  --font-body: "Sequel Sans", Arial, sans-serif;
  --z-floating: 80;
  --z-menu: 100;
  --z-header: 110;
  --z-toggle: 120;
  --z-skip: 130;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

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

body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

h2 {
  margin-bottom: 30px;
  font-size: 60px;
}

h3 {
  font-size: 27px;
  font-weight: 500;
}

::selection {
  color: var(--white);
  background: var(--purple);
}

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

.section {
  padding: 140px 0;
}

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

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

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--header-height);
  padding: 0 max(34px, calc((100vw - var(--shell)) / 2));
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  height: var(--header-height);
  color: var(--purple);
  border-color: var(--line);
  background: rgba(248, 248, 248, 0.96);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  display: block;
  width: 300px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 220ms ease;
}

.brand-image-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-image-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-image-dark {
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.menu-active) .brand-image-light {
  opacity: 0;
}

.site-header:not(.is-scrolled):not(.menu-active) .brand-image-dark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow: hidden;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: translateX(-105%);
  transition: transform 300ms linear;
}

.nav-link.is-racing-in::after,
.nav-link:focus-visible::after,
.footer-nav a.is-racing-in::after,
.footer-nav a:focus-visible::after {
  transform: translateX(0);
}

.nav-link.is-racing-out::after,
.footer-nav a.is-racing-out::after {
  transform: translateX(105%);
  transition-duration: 400ms;
}

.nav-link.is-racing-reset::after,
.footer-nav a.is-racing-reset::after {
  transform: translateX(-105%);
  transition: none;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  gap: 18px;
  align-items: center;
  color: var(--white);
  border: 1px solid #25d366;
  border-radius: 999px;
  background: #25d366;
  transition: opacity 220ms ease, transform 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  opacity: 0.88;
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  color: var(--white);
  background: #25d366;
  border-color: #25d366;
}

.menu-toggle {
  position: relative;
  z-index: var(--z-toggle);
  display: block;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, top 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 27px; }

.menu-toggle.is-open {
  color: var(--white);
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: var(--z-menu);
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: auto;
  color: var(--white);
  background: #100d12;
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 240ms ease, clip-path 560ms cubic-bezier(0.22, 1, 0.36, 1), visibility 560ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0);
}

.mobile-menu-inner {
  display: grid;
  width: 100%;
  min-height: 100%;
  padding: 130px 72px 72px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: center;
}

.mobile-nav {
  display: grid;
  max-width: 650px;
}

.mobile-nav a {
  display: grid;
  min-height: 66px;
  padding: 0;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: color 200ms ease, opacity 320ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: 70ms; }
.mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: 160ms; }
.mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: 190ms; }
.mobile-menu.is-open .mobile-nav a:nth-child(6) { transition-delay: 220ms; }

.mobile-menu.is-open .mobile-nav a:hover,
.mobile-menu.is-open .mobile-nav a:focus-visible {
  color: var(--orange);
  outline: none;
  transform: translateX(12px);
}

.mobile-nav span {
  width: 48px;
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}

.mobile-contact {
  display: flex;
  max-width: 380px;
  flex-direction: column;
  gap: 18px;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
  font-size: 15px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 360ms 260ms ease, transform 520ms 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-contact a,
.mobile-contact p {
  display: block;
  margin-bottom: 0;
}

.mobile-contact a:hover,
.mobile-contact a:focus-visible {
  color: var(--orange);
}

.menu-label {
  margin-bottom: 8px !important;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-social {
  font-family: var(--font-display);
  font-size: 30px;
}

.menu-contact-details {
  display: grid;
  margin-top: 54px;
  gap: 8px;
}

.site-header.menu-active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.menu-active .brand-image-light {
  opacity: 1;
}

.site-header.menu-active .brand-image-dark {
  opacity: 0;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--purple-deep);
  background: #f8f8f8;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0 0 0 auto;
  width: 59%;
  height: 100%;
}

.hero-media,
.hero-shade {
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media img {
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  animation: hero-settle 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background: rgba(10, 7, 12, 0.32);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  width: min(41vw, 590px);
  max-width: none;
  margin: var(--header-height) auto 0 max(34px, calc((100vw - var(--shell)) / 2));
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
}

.hero h1 {
  min-width: 0;
  max-width: 560px;
  margin: 0;
  color: var(--purple-deep);
  font-size: clamp(44px, 3.2vw, 52px);
  line-height: 1.08;
}

.hero-bottom {
  display: flex;
  min-width: 0;
  max-width: 560px;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.hero-bottom p {
  max-width: 520px;
  margin-bottom: 0;
  color: #675f69;
  font-size: 16px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  margin-right: auto;
  margin-left: 0;
}

.hero-actions .button {
  min-height: 52px;
  padding-inline: 16px;
  font-size: 13px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  padding: 0 20px;
  gap: 11px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(18, 13, 21, 0.14);
  transition: opacity 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.button::before {
  display: none;
}

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

.button:active {
  transform: translateY(1px);
}

.button-whatsapp,
.button-light {
  color: var(--white);
  background: #087c3d;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible,
.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: #066b35;
  opacity: 1;
}

.button-secondary {
  min-width: 0;
  padding: 0 18px !important;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.hero .button-secondary {
  color: var(--purple-deep);
  border-color: rgba(65, 48, 76, 0.42);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  color: var(--purple-deep);
  border-color: var(--purple-deep);
  background: rgba(65, 48, 76, 0.06);
}

@media (min-width: 1181px) {
  .hero-bottom {
    width: 100%;
    max-width: 560px;
  }

  .hero-actions {
    width: auto;
    align-self: flex-start;
    justify-content: flex-start;
    margin: 0;
  }
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.ticker {
  overflow: hidden;
  color: var(--purple-deep);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-set {
  display: flex;
  min-height: 56px;
  padding-right: 34px;
  gap: 34px;
  align-items: center;
  white-space: nowrap;
}

.ticker-set i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}

.section-heading {
  display: grid;
  margin-bottom: 88px;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.62fr);
  column-gap: 110px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.section-heading > p:last-child {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  color: var(--gray);
}

.areas-section {
  background: var(--off-white);
}

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

.area {
  position: relative;
  min-height: 310px;
  padding: 34px 34px 48px 0;
  border-bottom: 1px solid var(--line);
}

.area:not(:nth-child(3n + 1)) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.area-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 70px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-icon-pension {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.area h3 {
  min-height: 60px;
  margin-bottom: 20px;
  font-size: 27px;
}

.area p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: block;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.about-copy h2 {
  max-width: 580px;
  margin-bottom: 0;
  font-size: 48px;
}

.about-copy-body {
  max-width: 700px;
  padding-top: 4px;
}

.about-copy-body p {
  max-width: 680px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.58;
}

.about-copy-body p:last-of-type {
  margin-bottom: 0;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 7px;
  gap: 28px;
  align-items: center;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.about-gallery {
  display: grid;
  width: 100%;
  height: 470px;
  margin-top: 84px;
  grid-auto-columns: min(680px, 54vw);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.about-gallery::-webkit-scrollbar {
  display: none;
}

.about-gallery:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.about-gallery.is-dragging {
  cursor: grabbing;
}

.about-image {
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
  transform: scale(1);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery.is-dragging .about-image {
  transform: scale(0.985);
  transition-duration: 240ms;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image:first-child img {
  object-position: center center;
}

.about-image-featured img {
  object-position: center 48%;
}

.about-image:hover img {
  transform: scale(1.015);
}

.profile-section {
  background: var(--soft-gray);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
  align-items: center;
}

.profile-photo {
  height: 720px;
  margin-bottom: 0;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.profile-copy h2 {
  max-width: 700px;
  font-size: 60px;
}

.profile-lead {
  max-width: 680px;
  color: var(--purple);
  font-size: 22px;
  line-height: 1.5;
}

.profile-copy > p:not(.eyebrow):not(.profile-lead) {
  color: var(--gray);
}

.education-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.education-list div {
  display: grid;
  padding: 24px 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.education-list span {
  color: var(--purple);
}

.education-list strong {
  font-weight: 400;
  color: var(--gray);
}

.recognition-section {
  padding: 118px 0 112px;
  color: var(--white);
  background: var(--purple);
}

.recognition-intro {
  display: grid;
  margin-bottom: 78px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 96px;
  align-items: end;
}

.recognition-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 50px;
  text-wrap: balance;
}

.recognition-intro p {
  max-width: 480px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
}

.recognition-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.recognition-item {
  display: flex;
  min-width: 0;
  min-height: 470px;
  padding: 40px 32px 34px;
  flex-direction: column;
  justify-content: space-between;
}

.recognition-item + .recognition-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.recognition-mark {
  display: flex;
  height: 270px;
  align-items: center;
  justify-content: center;
}

.recognition-mark img {
  display: block;
  width: min(100%, 250px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(8, 5, 12, 0.22));
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-mark-ribbon img {
  width: min(100%, 170px);
}

.recognition-item:hover .recognition-mark img {
  filter: drop-shadow(0 16px 12px rgba(8, 5, 12, 0.3));
  transform: translateY(-7px) scale(1.025);
}

.recognition-meta {
  display: grid;
  padding-top: 24px;
  grid-template-columns: 1fr;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.recognition-meta span,
.recognition-meta small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.recognition-meta span {
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 700;
}

.recognition-meta strong {
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

.recognition-meta small {
  line-height: 1.45;
}

.process-section {
  position: relative;
  height: 300svh;
  background: var(--off-white);
}

.process-sticky {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  padding: 96px 0 72px;
  align-items: center;
}

.process-layout {
  min-width: 0;
}

.process-intro {
  display: grid;
  margin-bottom: 76px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.process-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 52px;
}

.process-intro > p:last-child {
  max-width: 510px;
  margin-bottom: 4px;
  justify-self: end;
  color: var(--gray);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
}

.process-step {
  --step-progress: 0;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 220px;
  padding-top: 28px;
  flex-direction: column;
}

.process-track {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.process-fill {
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(var(--step-progress));
  transform-origin: left center;
  will-change: transform;
}

.process-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(65, 48, 76, 0.24);
  transition: background-color 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-started .process-dot {
  background: var(--orange);
  transform: scale(1.3);
}

.process-number {
  margin-bottom: 18px;
  color: rgba(65, 48, 76, 0.18);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-number-active .process-number {
  color: var(--orange);
}

.process-list h3 {
  min-height: 52px;
  margin-bottom: 12px;
  color: var(--purple-deep);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.process-list p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 900px), (max-height: 619px) {
  .process-section {
    height: auto;
    padding: 96px 0;
  }

  .process-sticky {
    position: static;
    min-height: 0;
    padding: 0;
  }

  .process-intro {
    margin-bottom: 58px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-intro > p:last-child {
    margin-bottom: 0;
    justify-self: start;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-step {
    min-height: 180px;
  }

  .process-list h3 {
    min-height: 0;
  }
}

.consultation-cta {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  overflow: hidden;
  color: var(--white);
  background: var(--purple-deep);
}

.consultation-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.consultation-media img,
.consultation-media .consultation-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.consultation-media img {
  object-fit: cover;
  object-position: center center;
}

.consultation-overlay {
  background: rgba(20, 15, 23, 0.2);
}

.consultation-panel {
  display: flex;
  padding: 80px max(40px, calc((100vw - var(--shell)) / 2 + var(--gutter))) 80px 68px;
  align-items: center;
  background: var(--purple-deep);
}

.consultation-content {
  position: relative;
  max-width: 540px;
  padding-top: 34px;
}

.consultation-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 66px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.consultation-content h2 {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 52px;
}

.consultation-content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.faq-heading h2 {
  font-size: 50px;
}

.faq-heading > p:last-child {
  color: var(--gray);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 92px;
  padding: 24px 58px 24px 0;
  align-items: center;
  color: var(--purple);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-list summary span::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  max-width: 750px;
  margin: -4px 58px 28px 0;
  color: var(--gray);
  font-size: 15px;
}

.contact-section {
  padding: 140px 0;
  color: var(--white);
  background: var(--purple-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: stretch;
}

.contact-content {
  display: flex;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
}

.contact-heading h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 58px;
}

.contact-heading p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-links {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-links a,
.contact-address {
  position: relative;
  display: grid;
  min-height: 92px;
  padding: 24px 40px 24px 0;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-links a {
  transition: transform 220ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateX(12px);
}

.contact-links span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-links a[href^="mailto:"] strong {
  font-size: 16px;
}

.contact-links .contact-arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.contact-map {
  min-height: 650px;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

.site-footer {
  padding: 96px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  background: #110d14;
}

.footer-main {
  display: grid;
  padding-bottom: 78px;
  grid-template-columns: minmax(300px, 1.2fr) minmax(160px, 0.5fr) minmax(280px, 0.8fr);
  gap: 76px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
  display: block;
  width: min(100%, 390px);
}

.footer-brand-block p {
  max-width: 390px;
  margin: 30px 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.footer-brand-block > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.footer-label {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.footer-nav a {
  position: relative;
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  overflow: hidden;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
}

.footer-contact-link,
.footer-address-link {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  padding-bottom: 5px;
  gap: 12px;
  align-items: flex-start;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-contact-link::after,
.footer-address-link::after,
.footer-credit-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible,
.footer-address-link:hover,
.footer-address-link:focus-visible {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-link:hover::after,
.footer-contact-link:focus-visible::after,
.footer-address-link:hover::after,
.footer-address-link:focus-visible::after,
.footer-credit-link:hover::after,
.footer-credit-link:focus-visible::after {
  transform: scaleX(1);
}

.footer-address-link {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: translateX(-105%);
  transition: transform 300ms linear;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange);
}

.footer-bottom {
  display: grid;
  padding-top: 28px;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-credit-link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: var(--white);
  transition: color 280ms ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: var(--orange);
}


.floating-whatsapp {
  position: fixed;
  z-index: var(--z-floating);
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  gap: 8px;
  align-items: center;
  color: var(--white);
  border-radius: 8px;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(18, 13, 21, 0.2);
  font-size: 13px;
  font-weight: 700;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.floating-whatsapp.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp.is-visible.is-suppressed {
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: var(--white);
  opacity: 0.9;
}

.floating-whatsapp:active {
  transform: translateY(1px);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.areas-grid .area:nth-child(3n + 2),
.process-list li:nth-child(2) {
  transition-delay: 90ms;
}

.areas-grid .area:nth-child(3n),
.process-list li:nth-child(3) {
  transition-delay: 180ms;
}

.process-list li:nth-child(4) {
  transition-delay: 270ms;
}

.js .site-header .brand,
.js .menu-toggle,
.js .hero h1,
.js .hero-bottom > p,
.js .hero-actions {
  opacity: 0;
  transform: translateY(24px);
}

.js.is-ready .site-header .brand,
.js.is-ready .menu-toggle,
.js.is-ready .hero h1,
.js.is-ready .hero-bottom > p,
.js.is-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.js .site-header .brand {
  transition: opacity 700ms 80ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms 80ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .menu-toggle {
  transition: opacity 700ms 160ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero h1 {
  transition: opacity 850ms 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-bottom > p {
  transition: opacity 780ms 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-actions {
  transition: opacity 780ms 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-settle {
  from { opacity: 0.4; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

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

  .hero-media img {
    animation-duration: 500ms;
    animation-timing-function: ease-out;
  }

  .js .site-header .brand,
  .js .menu-toggle,
  .js .hero h1,
  .js .hero-bottom > p,
  .js .hero-actions,
  .js .reveal {
    transform: none;
    transition-duration: 320ms;
  }

  .mobile-menu {
    clip-path: none;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .mobile-nav a {
    transform: none;
    transition: color 200ms ease, opacity 280ms ease;
  }

  .mobile-menu.is-open .mobile-nav a:hover,
  .mobile-menu.is-open .mobile-nav a:focus-visible,
  .contact-links a:hover,
  .contact-links a:focus-visible {
    transform: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: 28px;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .desktop-nav {
    gap: 20px;
  }

  .brand {
    width: 260px;
    height: 30px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 42px;
  }

  .hero-content {
    width: 40vw;
    margin: var(--header-height) auto 0 var(--gutter);
    padding: 0;
    gap: 28px;
  }

  .hero-bottom {
    display: flex;
    max-width: none;
    gap: 24px;
    align-items: flex-start;
  }

  .hero-bottom p {
    max-width: 100%;
  }

  .about-grid,
  .profile-grid,
  .process-layout,
  .faq-layout,
  .contact-grid {
    gap: 70px;
  }

  .recognition-intro {
    gap: 70px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.menu-active .brand-image-light {
    opacity: 1;
  }

  .site-header.menu-active .brand-image-dark {
    opacity: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .area:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .area:nth-child(even) {
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }

  .area-icon {
    margin-bottom: 48px;
  }

  .about-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: none;
    grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1.28fr);
    gap: 60px;
  }

  .about-copy h2 {
    margin-bottom: 30px;
  }

  .about-gallery {
    height: 420px;
    margin-top: 68px;
    grid-auto-columns: 62vw;
  }

  .consultation-cta {
    grid-template-columns: 1fr;
  }

  .consultation-media {
    min-height: 460px;
  }

  .consultation-panel {
    padding: 76px var(--gutter) 84px;
  }

  .consultation-content {
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 72px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .profile-photo {
    width: min(100%, 680px);
    height: 720px;
  }

  .profile-copy {
    max-width: 800px;
  }
}

@media (max-width: 800px) {
  :root {
    --gutter: 22px;
    --header-height: 76px;
  }

  body {
    font-size: 16px;
  }

  h2 {
    font-size: 42px;
  }

  .section {
    padding: 96px 0;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .site-header:not(.is-scrolled):not(.menu-active) .brand-image-light {
    opacity: 1;
  }

  .site-header:not(.is-scrolled):not(.menu-active) .brand-image-dark {
    opacity: 0;
  }

  .brand {
    width: 230px;
    height: 26px;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    height: 100svh;
    padding-top: 0;
    align-items: flex-end;
    color: var(--white);
    background: var(--purple-deep);
  }

  .hero-media,
  .hero-media img,
  .hero-shade {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-media,
  .hero-shade {
    clip-path: none;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.65);
  }

  .hero-content {
    display: grid;
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin: 0 auto 24px;
    padding: 0 0 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  }

  .hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--white);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
  }

  .hero-bottom {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 22px;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    align-self: flex-start;
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 0;
  }

  .hero-bottom p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero .button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.68);
  }

  .hero .button-secondary:hover,
  .hero .button-secondary:focus-visible {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-bottom .button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-actions .button-whatsapp,
  .consultation-content .button-whatsapp {
    width: 100%;
    min-height: 60px;
    padding-top: 4px;
    padding-bottom: 4px;
    justify-content: center;
    font-size: 16px;
  }

  .mobile-menu-inner {
    padding: 116px 28px 44px;
    grid-template-columns: 1fr;
    gap: 44px;
    align-content: start;
  }

  .mobile-nav a {
    min-height: 56px;
    font-size: 32px;
  }

  .mobile-contact {
    display: flex;
    max-width: none;
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .section-heading {
    margin-bottom: 56px;
  }

  .about-copy h2,
  .process-intro h2,
  .faq-heading h2 {
    font-size: 42px;
  }

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

  .about-copy-body {
    max-width: 650px;
    padding-top: 0;
  }

  .about-gallery {
    height: 390px;
    margin-top: 60px;
    padding-inline: var(--gutter);
    grid-auto-columns: 78vw;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .profile-copy h2 {
    font-size: 48px;
  }

  .recognition-intro,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .recognition-intro {
    margin-bottom: 58px;
  }

  .recognition-intro p {
    max-width: 620px;
  }

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

  .recognition-item {
    min-height: 0;
    padding: 34px 0;
    flex-direction: row;
    gap: 42px;
    align-items: center;
  }

  .recognition-item + .recognition-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .recognition-mark {
    width: 210px;
    height: 210px;
    flex: 0 0 auto;
  }

  .recognition-mark img {
    max-height: 190px;
  }

  .recognition-mark-ribbon img {
    width: 125px;
  }

  .recognition-meta {
    width: 100%;
  }

  .contact-content,
  .contact-map {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-map {
    min-height: 480px;
  }

  .faq-heading {
    position: static;
  }

  .consultation-content h2 {
    font-size: 46px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 18px;
    --header-height: 70px;
  }

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

  h2 {
    font-size: 35px;
  }

  .site-header {
    height: 70px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    width: 202px;
    height: 23px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 0;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-content {
    display: flex;
    min-width: 0;
    width: calc(100% - 36px);
    max-width: calc(100vw - 36px);
    flex: 0 0 calc(100vw - 36px);
    flex-direction: column;
    margin: 0 18px 18px;
    padding: 0 0 20px;
    gap: 20px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-bottom {
    width: 100%;
    min-width: 0;
  }

  .hero-bottom p {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .button {
    max-width: 100%;
    min-height: 50px;
    padding: 0 18px;
    gap: 10px;
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: flex-start;
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 0;
  }

  .hero-actions .button,
  .consultation-content .button-whatsapp {
    width: 100%;
    min-height: 56px;
    padding: 4px 11px;
    gap: 8px;
    justify-content: center;
    font-size: 16px;
    white-space: nowrap;
  }

  .mobile-menu {
    top: 0;
  }

  .mobile-menu-inner {
    padding: 108px 18px 34px;
    gap: 34px;
  }

  .mobile-nav a {
    min-height: 50px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    font-size: 28px;
  }

  .mobile-contact {
    display: flex;
    font-size: 13px;
  }

  .mobile-contact p,
  .mobile-contact a {
    margin-bottom: 0;
  }

  .mobile-nav span {
    width: 38px;
    font-size: 11px;
  }

  .menu-label {
    margin-bottom: 14px !important;
  }

  .menu-social {
    font-size: 24px;
  }

  .menu-contact-details {
    margin-top: 24px;
    gap: 5px;
  }

  .ticker-set {
    min-height: 50px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

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

  .area,
  .area:nth-child(even) {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
  }

  .area-icon {
    margin-bottom: 36px;
  }

  .area h3 {
    min-height: 0;
    font-size: 26px;
  }

  .about-copy h2,
  .process-intro h2,
  .faq-heading h2 {
    font-size: 35px;
  }

  .about-copy-body p {
    font-size: 16px;
  }

  .about-gallery {
    height: 340px;
    grid-auto-columns: 84vw;
  }

  .profile-photo {
    height: 520px;
  }

  .profile-copy h2 {
    font-size: 40px;
  }

  .profile-lead {
    font-size: 19px;
  }

  .education-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recognition-section {
    padding: 78px 0;
  }

  .recognition-intro h2 {
    font-size: 35px;
  }

  .recognition-item {
    padding: 28px 0;
    gap: 22px;
  }

  .recognition-mark {
    width: 112px;
    height: 140px;
  }

  .recognition-mark img {
    max-height: 120px;
  }

  .recognition-mark-ribbon img {
    width: 76px;
  }

  .recognition-meta {
    padding-top: 18px;
  }

  .recognition-meta strong {
    font-size: 19px;
  }

  .process-section {
    padding: 78px 0;
  }

  .process-list {
    gap: 34px;
  }

  .process-step {
    min-height: 0;
    padding-top: 24px;
  }

  .process-number {
    margin-bottom: 15px;
    font-size: 38px;
  }

  .process-list h3 {
    font-size: 22px;
  }

  .consultation-cta {
    min-height: 0;
  }

  .consultation-media {
    min-height: 330px;
  }

  .consultation-media img {
    object-position: 58% center;
  }

  .consultation-panel {
    padding: 62px var(--gutter) 70px;
  }

  .consultation-content h2 {
    font-size: 38px;
  }

  .faq-list summary {
    min-height: 84px;
    padding-right: 42px;
    font-size: 19px;
  }

  .faq-list details p {
    margin-right: 32px;
  }

  .contact-section {
    padding: 84px 0;
  }

  .contact-heading h2 {
    font-size: 40px;
  }

  .contact-links a,
  .contact-address {
    min-height: 118px;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .contact-links strong {
    font-size: 18px;
  }

  .contact-links a[href^="mailto:"] strong {
    font-size: 16px;
  }

  .contact-map {
    height: 360px;
    min-height: 360px;
  }

  .footer-brand {
    width: min(100%, 330px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand-block {
    grid-column: 1;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .footer-bottom span {
    display: block;
    margin: 4px 0 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: auto;
    min-height: 48px;
    padding: 0 16px;
    justify-content: center;
    border-radius: 8px;
  }

  .floating-whatsapp span {
    display: inline;
  }
}
