:root {
  --black: #0d0d0d;
  --black-soft: #171717;
  --charcoal: #242424;
  --yellow: #cba46b;
  --yellow-hover: #b58d55;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --grey-100: #e8e8e8;
  --grey-500: #a3a3a3;
  --grey-700: #737373;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--off-white);
}

main {
  display: flex;
  flex-direction: column;
}

button,
a {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
  border-top: 2px solid transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(13, 13, 13, 0.96);
  border-bottom-color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.header-inner {
  width: min(calc(100% - 64px), var(--container));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(255px, 1fr);
  align-items: center;
  gap: 40px;
}

.nav-logo {
  width: fit-content;
  height: 64px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Archivo", sans-serif;
  color: var(--white);
  text-transform: uppercase;
}

.logo-mark {
  width: auto;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 2px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 34px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--grey-100);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown-toggle {
  gap: 7px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-chevron {
  font-size: 0.58rem;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 30;
  min-width: 190px;
  padding: 8px;
  transform: translateX(-50%);
  background: var(--black-soft);
  border: 1px solid var(--charcoal);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--grey-100);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--black);
  background: var(--yellow);
}

.quote-button {
  justify-self: end;
  min-height: 42px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-1px);
}

.quote-arrow {
  font-size: 1rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle:focus-visible,
.nav-link:focus-visible,
.quote-button:focus-visible,
.nav-logo:focus-visible,
.hero-button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

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

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

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

.hero-overlay {
  background: rgba(7, 7, 7, 0.48);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), var(--container));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 62px 0 72px;
}

.hero-content {
  width: min(100%, 1180px);
  text-align: center;
}

.hero-kicker {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--white);
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  font-weight: 400;
  text-wrap: balance;
}

.hero-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title span {
  color: var(--yellow);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.hero-button-discover {
  min-width: 148px;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.hero-button-discover:hover {
  color: var(--black);
  border-color: var(--yellow-hover);
  background: var(--yellow-hover);
}

.about-section {
  padding: 64px 0;
  background: var(--white);
}

.about-inner {
  width: min(calc(100% - 64px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(40px, 5vw, 64px);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.section-label {
  position: relative;
  width: fit-content;
  margin: 0 0 25px;
  padding-bottom: 10px;
  color: var(--charcoal);
  font-family: "Archivo", sans-serif;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--yellow);
}

.about-title {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  max-width: 540px;
  font-size: clamp(2rem, 2.7vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-title span {
  color: var(--yellow);
}

.about-copy {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--grey-700);
  font-size: 0.9rem;
  line-height: 1.62;
}

.about-copy strong {
  color: var(--black);
  font-weight: 700;
}

.about-media {
  min-height: 390px;
  max-height: 440px;
  overflow: hidden;
  background: var(--grey-100);
}

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

.values-section {
  padding: 20px 0 72px;
  background: var(--white);
}

.values-inner {
  width: min(calc(100% - 64px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(40px, 5vw, 64px);
}

.values-media {
  min-height: 390px;
  max-height: 440px;
  overflow: hidden;
  background: var(--grey-100);
}

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

.values-content {
  padding: 22px 0;
}

.values-title {
  max-width: none;
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.values-title span {
  color: var(--yellow);
}

.values-list {
  display: grid;
  gap: 22px;
  max-width: 680px;
  margin-top: 38px;
}

.values-list p {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--grey-700);
  font-size: 1rem;
  line-height: 1.78;
}

.values-list p::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.values-list strong {
  color: var(--black);
  font-weight: 800;
}

.services-section {
  padding: 64px 0 72px;
  overflow: hidden;
  background: var(--off-white);
}

.services-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.services-heading {
  margin-bottom: 30px;
  display: block;
}

.services-heading .section-label {
  margin-bottom: 18px;
}

.services-title {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.55rem, 3.6vw, 3.8rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-title span {
  color: var(--yellow);
}

.services-intro {
  max-width: none;
  margin: 18px 0 0;
  color: var(--grey-700);
  font-size: 0.86rem;
  line-height: 1.65;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-groups {
  display: grid;
  gap: 38px;
}

.service-group-heading {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
}

.service-group-number {
  margin: 0;
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-group-heading h3 {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-group-heading > p:last-child {
  grid-column: 2;
  margin: 0;
  max-width: 620px;
  color: var(--grey-700);
  font-size: 0.78rem;
  line-height: 1.5;
}

.services-track:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 6px;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background-color: var(--charcoal);
  isolation: isolate;
}

.service-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover > img {
  transform: scale(1.045);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.12) 0%, rgba(13, 13, 13, 0.26) 48%, rgba(13, 13, 13, 0.78) 100%);
  transition: background-color 220ms ease;
}

.service-card:hover::before {
  background-color: rgba(13, 13, 13, 0.04);
}

.service-card-design {
  background-image: url("../assets/images/service-design.jpg");
}

.service-card-budget {
  background-image: url("../assets/images/service-budget.jpg");
}

.service-card-project {
  background-image: url("../assets/images/service-project.jpg");
}

.service-card-smart {
  background-image: url("../assets/images/service-smart.jpg");
}

.service-card-content {
  min-height: inherit;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.service-project-name {
  width: fit-content;
  margin: 0 0 10px;
  padding-top: 9px;
  color: var(--yellow);
  border-top: 2px solid var(--yellow);
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h4 {
  max-width: 280px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.12rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.service-card.is-transitioning-out .service-card-content {
  animation: service-card-out 280ms ease-in both;
}

.service-card.is-transitioning-in .service-card-content {
  animation: service-card-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-card.is-transitioning-in {
  animation: service-image-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-number {
  position: relative;
  width: fit-content;
  margin: 0;
  padding-right: 52px;
  font-family: "Archivo", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 600;
}

.service-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 2px;
  background: var(--yellow);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-top: 28px;
  color: var(--white);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 230px;
  margin: 19px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.08rem;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card-content > p:not(.service-number):not(.service-project-name) {
  max-width: 240px;
  margin: 16px 0 0;
  color: var(--grey-100);
  font-size: 0.79rem;
  line-height: 1.5;
}

.service-next {
  margin-top: auto;
  align-self: flex-end;
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--yellow);
  background: rgba(13, 13, 13, 0.58);
  border: 1px solid rgba(255, 212, 0, 0.82);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-next:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateX(3px);
}

.service-next:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.service-next-icon {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}

.service-next-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.service-next-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.service-next:hover .service-next-icon {
  animation: service-arrow-nudge 480ms ease;
}

@keyframes service-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(4px); }
}

@keyframes service-card-out {
  to {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes service-card-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes service-image-in {
  from {
    opacity: 0.82;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.capabilities-section {
  padding: 58px 0 66px;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
}

.capabilities-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.capabilities-header {
  margin-bottom: 30px;
  display: block;
}

.capabilities-label {
  position: relative;
  width: fit-content;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capabilities-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--yellow);
}

.capabilities-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.15rem, 2.9vw, 3.15rem);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.capabilities-intro {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--grey-700);
  font-size: 0.88rem;
  line-height: 1.6;
}

.capabilities-title span {
  color: var(--yellow);
}

.capabilities-controls {
  width: 100%;
  margin: 22px 0 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 0;
}

.capabilities-count {
  min-width: 58px;
  margin: 0;
  color: var(--grey-500);
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.capabilities-control-group {
  display: flex;
  gap: 10px;
}

.capabilities-count span {
  color: var(--yellow);
}

.capabilities-control {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--grey-100);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.capabilities-next {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.capabilities-progress {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: var(--grey-100);
}

.capabilities-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--capability-progress, 12.5%);
  background: var(--yellow);
  transition: width 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capabilities-control:hover,
.capabilities-control:focus-visible {
  color: var(--black);
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.capabilities-control:focus-visible,
.capabilities-track:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.capabilities-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.capabilities-track::-webkit-scrollbar {
  display: none;
}

.capability-card {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 4 / 4.65;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black-soft);
  border: 0;
  scroll-snap-align: start;
  transition: border-color 200ms ease, transform 200ms ease;
}

.capability-card:hover {
  transform: translateY(-4px);
}

.capability-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: filter 300ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-card:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.capability-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.45) 0%, rgba(13, 13, 13, 0.04) 38%, rgba(13, 13, 13, 0.9) 78%, rgba(13, 13, 13, 0.98) 100%);
}

.capability-card-body span {
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.capability-eyebrow {
  max-width: 180px;
  margin: 12px 0 0;
  color: var(--white);
  font-size: 0.6rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capability-copy {
  max-width: 440px;
  margin-top: auto;
}

.capability-card h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-copy > p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--grey-100);
  font-size: 0.82rem;
  line-height: 1.55;
}

.portfolio-section {
  order: 2;
  padding: 48px 0 54px;
  overflow: hidden;
  background: var(--off-white);
}

.portfolio-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.portfolio-heading {
  max-width: none;
}

.portfolio-title {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.portfolio-title span {
  color: var(--yellow);
}

.portfolio-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--grey-700);
  font-size: 0.9rem;
  line-height: 1.65;
}

.portfolio-filters {
  margin: 24px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-filter {
  min-height: 40px;
  padding: 0 18px;
  color: var(--black);
  background: transparent;
  border: 1px solid #d4d4d4;
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-filter:hover,
.portfolio-filter:focus-visible,
.portfolio-filter.is-active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-group-heading {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 12px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid #d4d4d4;
}

.portfolio-group-heading:first-child {
  margin-top: 0;
}

.portfolio-group-heading span {
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.portfolio-group-heading h3 {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-group-heading[hidden] {
  display: none;
}

.portfolio-card {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 0;
  text-align: left;
  cursor: pointer;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.02) 22%, rgba(13, 13, 13, 0.72) 100%);
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.045);
}

.portfolio-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 18px;
}

.portfolio-card-cue {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--black);
  background: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.portfolio-card:hover .portfolio-card-cue,
.portfolio-card:focus-visible .portfolio-card-cue {
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.portfolio-card-meta {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-viewer[hidden] {
  display: none;
}

.portfolio-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  color: var(--white);
  background: #0b0b0b;
}

.portfolio-viewer::before {
  content: "";
  position: absolute;
  inset: -28px;
  background-image: linear-gradient(rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.82)), var(--portfolio-backdrop);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.06);
}

.portfolio-viewer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.12);
}

.portfolio-viewer-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100dvh;
  max-height: none;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 84px 54px;
  background: transparent;
}

.portfolio-viewer-header {
  width: min(calc(100% - 120px), 1280px);
  min-height: 116px;
  margin: 0 auto;
  padding: 22px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.portfolio-viewer-type {
  position: relative;
  width: fit-content;
  margin: 0 0 7px;
  padding-right: 74px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-viewer-type::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 60px;
  height: 1px;
  background: var(--yellow);
}

.portfolio-viewer-header h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.7rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.portfolio-viewer-meta {
  margin: 6px 0 0;
  color: var(--grey-100);
  font-size: 0.8rem;
}

.portfolio-viewer-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.portfolio-viewer-close,
.portfolio-viewer-nav {
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.portfolio-viewer-close {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-width: 0 0 0 1px;
  font-size: 1.7rem;
}

.portfolio-viewer-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: auto;
  display: grid;
  place-items: center;
  background: transparent;
}

.portfolio-viewer-image,
.portfolio-viewer-video {
  width: min(72vw, 960px);
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: block;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
}

.portfolio-viewer-video {
  background: var(--black);
}

.portfolio-viewer-stage > [hidden] {
  display: none;
}

.portfolio-viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.portfolio-viewer-nav[hidden] {
  display: none;
}

.portfolio-viewer-prev { left: 7vw; }
.portfolio-viewer-next {
  right: 7vw;
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.portfolio-viewer-count {
  margin: 0;
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.portfolio-thumbnails {
  width: min(calc(100% - 160px), 1160px);
  height: 84px;
  margin: 0 auto;
  min-width: 0;
  padding: 9px 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
}

.portfolio-thumbnail {
  flex: 0 0 112px;
  width: 112px;
  height: 66px;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border: 2px solid transparent;
  cursor: pointer;
}

.portfolio-thumbnail.is-active {
  border-color: var(--yellow);
}

.portfolio-viewer-footer {
  width: min(calc(100% - 160px), 1160px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.portfolio-viewer-footer-count {
  min-width: 55px;
  margin: 0;
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.portfolio-viewer-progress {
  width: min(520px, 50vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.portfolio-viewer-progress span {
  display: block;
  width: var(--portfolio-progress, 0%);
  height: 100%;
  background: var(--yellow);
  transition: width 240ms ease;
}

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

.portfolio-thumbnail-video {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 5px;
  color: var(--white);
  background: #202020;
  font-family: "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-thumbnail-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.portfolio-thumbnail-video i {
  position: relative;
  color: var(--yellow);
  font-size: 0.9rem;
}

.portfolio-thumbnail-video span {
  position: relative;
}

.portfolio-card > video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.portfolio-viewer-open {
  overflow: hidden;
}

.impact-section {
  order: 1;
  position: relative;
  padding: 36px 0;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--yellow);
}

.impact-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.impact-heading {
  display: block;
  margin-bottom: 28px;
}

.impact-label {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.impact-title {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.impact-title span {
  color: var(--yellow);
}

.impact-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--grey-700);
  font-size: 0.86rem;
  line-height: 1.55;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--grey-100);
  border-left: 1px solid var(--grey-100);
}

.impact-stat {
  position: relative;
  min-height: 220px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  transition: background-color 220ms ease;
}

.impact-stat:hover {
  background: var(--off-white);
}

.impact-index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--grey-500);
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.impact-icon {
  position: relative;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--black);
}

.impact-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--yellow);
}

.impact-icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-number {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.impact-stat h3 {
  position: relative;
  margin: 13px 0 0;
  padding-bottom: 10px;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-stat h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

.impact-description {
  max-width: 220px;
  margin: 11px 0 0;
  color: var(--grey-700);
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact-section {
  order: 4;
  padding: 68px 0 74px;
  color: var(--black);
  background: var(--white);
}

.contact-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.contact-content .section-label {
  color: var(--black);
}

.contact-title {
  max-width: 560px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-title span {
  color: var(--yellow);
}

.contact-intro {
  max-width: 530px;
  margin: 20px 0 0;
  color: var(--grey-700);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-details {
  margin-top: 38px;
  display: grid;
  gap: 22px;
  font-style: normal;
}

.contact-detail {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-detail i {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 1rem;
}

.contact-detail p {
  margin: 0;
  color: var(--grey-700);
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-detail strong {
  color: var(--black);
  font-weight: 700;
}

.contact-detail a {
  color: var(--yellow);
}

.contact-socials {
  margin: 26px 0 0 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  font-size: 1rem;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-social:hover,
.contact-social:focus-visible {
  color: var(--black);
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.contact-social-xhs {
  width: auto;
  padding: 0 13px;
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 18px;
  color: var(--black);
  background: var(--off-white);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field > span {
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 0;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input {
  height: 50px;
}

.contact-field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--yellow-hover);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.18);
}

.contact-submit {
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.contact-submit i {
  font-size: 1.15rem;
}

.map-section {
  order: 3;
  padding: 42px 0 48px;
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
}

.map-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.map-heading {
  margin-bottom: 22px;
  display: block;
}

.map-heading .section-label {
  margin-bottom: 16px;
}

.map-heading h2 {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.map-heading h2 span {
  color: var(--yellow);
}

.map-heading > p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--grey-700);
  font-size: 0.86rem;
  line-height: 1.65;
}

.map-frame {
  position: relative;
  height: clamp(330px, 29vw, 410px);
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid #dcdcdc;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.map-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: var(--yellow);
  pointer-events: none;
}

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

.map-card {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  width: min(340px, calc(100% - 56px));
  padding: 24px;
  color: var(--white);
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.map-card-label {
  margin: 0 0 9px;
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-card h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-card > p:not(.map-card-label) {
  margin: 14px 0 0;
  color: var(--grey-100);
  font-size: 0.78rem;
  line-height: 1.65;
}

.map-card a {
  width: fit-content;
  min-height: 40px;
  margin-top: 20px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
  background: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-card a:hover,
.map-card a:focus-visible {
  background: var(--yellow-hover);
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-inner {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  padding: 58px 0 50px;
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(140px, 0.65fr));
  gap: clamp(36px, 5vw, 76px);
}

.footer-logo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
}

.footer-logo img {
  width: 190px;
  height: 190px;
  flex: 0 0 190px;
  object-fit: contain;
  border-radius: 2px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.footer-brand p,
.footer-column p {
  margin: 22px 0 0;
  color: var(--grey-500);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 0;
}

.footer-column h2 {
  margin: 5px 0 20px;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-phone {
  width: fit-content;
  color: var(--grey-100);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-phone:hover {
  color: var(--yellow);
}

.footer-phone {
  margin-top: 14px;
  display: inline-block;
  color: var(--yellow);
}

.footer-social-column {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.footer-social-column h2 {
  flex-basis: 100%;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  font-size: 1rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--black);
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.footer-social-xhs {
  width: auto;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
}

.footer-bottom {
  padding: 18px 32px;
  text-align: center;
  border-top: 1px solid var(--charcoal);
}

.footer-bottom p {
  margin: 0;
  color: var(--grey-500);
  font-size: 0.72rem;
}

.whatsapp-confirm[hidden] {
  display: none;
}

body.whatsapp-confirm-active {
  overflow: hidden;
}

.whatsapp-confirm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}

.whatsapp-confirm-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(8, 8, 8, 0.72);
  border: 0;
  cursor: pointer;
}

.whatsapp-confirm-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 34px;
  color: var(--black);
  background: var(--white);
  border-top: 5px solid var(--yellow);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.whatsapp-confirm-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  font-size: 1.8rem;
}

.whatsapp-confirm-label {
  margin: 0 0 9px;
  color: var(--grey-700);
  font-family: "Archivo", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.whatsapp-confirm-panel h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-confirm-panel > p:not(.whatsapp-confirm-label) {
  margin: 16px 0 0;
  color: var(--grey-700);
  font-size: 0.86rem;
  line-height: 1.65;
}

.whatsapp-confirm-panel strong {
  color: var(--black);
}

.whatsapp-confirm-actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.whatsapp-confirm-actions button {
  min-height: 46px;
  padding: 0 18px;
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.whatsapp-confirm-cancel {
  color: var(--black);
  background: var(--white);
  border: 1px solid #d3d3d3;
}

.whatsapp-confirm-actions .whatsapp-confirm-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
}

.whatsapp-confirm-cancel:hover,
.whatsapp-confirm-cancel:focus-visible {
  background: var(--off-white);
}

.whatsapp-confirm-actions .whatsapp-confirm-open:hover,
.whatsapp-confirm-actions .whatsapp-confirm-open:focus-visible {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.whatsapp-float > i {
  font-size: 2.15rem;
  line-height: 1;
}

.whatsapp-number {
  position: absolute;
  right: calc(100% + 10px);
  width: max-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover .whatsapp-number,
.whatsapp-float:focus-visible .whatsapp-number {
  opacity: 1;
  transform: translateX(0);
}

