:root {
  --ah-green: #19342f;
  --ah-green-deep: #122824;
  --ah-green-black: #0e201c;
  --ah-gold: #baa963;
  --ah-gold-light: #d9cc91;
  --ah-paper: #f4f1e9;
  --ah-paper-deep: #eae5d9;
  --ah-white: #fffdf8;
  --ah-ink: #172c28;
  --ah-line: rgba(23, 44, 40, 0.2);
  --ah-page: min(94vw, 1780px);
  --ah-gutter: max(24px, 3.15vw);
  --ah-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --ah-ease-wipe: cubic-bezier(0.77, 0, 0.18, 1);
  --ah-hero-progress: 0;
  --ah-who-progress: 0;
  --ah-what-progress: 0;
  --ah-project-intro: 0;
  --ah-project-copy: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ah-green-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ah-paper);
  color: var(--ah-ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ah-locked {
  overflow: hidden;
}

button,
input,
textarea {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

img,
video {
  display: block;
  width: 100%;
}

#avila-site {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  background: var(--ah-paper);
}

.ah-paper {
  background: var(--ah-paper);
  color: var(--ah-ink);
}

.ah-green {
  background: var(--ah-green);
  color: var(--ah-white);
}

.ah-display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 8.2vw, 10.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.ah-display em {
  font-weight: 400;
}

.ah-section-tag,
.ah-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ah-section-tag::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.ah-section-tag--light {
  color: var(--ah-gold-light);
}

.ah-section-grid {
  width: var(--ah-page);
  margin-inline: auto;
}

.ah-arrow {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  transition: transform 0.45s var(--ah-ease);
}

.ah-arrow--diagonal {
  transform: rotate(-45deg);
}

#avila-site button > i,
#avila-site article > i {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.45s var(--ah-ease);
}

#avila-site .ah-line-link:hover > i,
#avila-site .ah-line-link:focus-visible > i,
#avila-site .ah-projects__open:hover > i,
#avila-site .ah-projects__open:focus-visible > i {
  transform: translateX(8px);
}

.ah-line-link {
  display: inline-flex;
  min-width: 240px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.ah-line-link:hover .ah-arrow,
.ah-line-link:focus-visible .ah-arrow,
.ah-projects__open:hover .ah-arrow,
.ah-projects__open:focus-visible .ah-arrow {
  transform: translateX(8px);
}

.ah-round-link {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ah-line);
  border-radius: 50%;
  transition:
    color 0.4s ease,
    background 0.4s ease,
    transform 0.4s var(--ah-ease);
}

.ah-round-link:hover,
.ah-round-link:focus-visible {
  color: var(--ah-white);
  background: var(--ah-green);
  transform: rotate(45deg);
}

.ah-round-link:hover .ah-arrow--diagonal,
.ah-round-link:focus-visible .ah-arrow--diagonal {
  transform: rotate(-90deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.85s ease var(--delay, 0ms),
    transform 0.95s var(--ah-ease) var(--delay, 0ms),
    clip-path 1.1s var(--ah-ease-wipe) var(--delay, 0ms);
}

[data-reveal="heading"] {
  clip-path: inset(0 0 28% 0);
  transform: translateY(76px);
}

[data-reveal="image"] {
  clip-path: inset(12% 0 12% 0);
  transform: translateY(70px) scale(1.05);
}

[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

.ah-preloader {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ah-green-deep);
  color: var(--ah-gold);
  transition:
    visibility 0s 1.1s,
    clip-path 1.1s var(--ah-ease-wipe);
}

.ah-preloader::after {
  content: "Global Real Estate & Strategic Investments";
  position: absolute;
  bottom: 4vh;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ah-preloader .ah-mark {
  width: 66px;
  animation: ah-preloader-mark 1.1s var(--ah-ease) both;
}

.ah-preloader > span {
  position: absolute;
  width: 110px;
  height: 1px;
  margin-top: 120px;
  overflow: hidden;
  background: rgba(186, 169, 99, 0.25);
}

.ah-preloader > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ah-gold);
  animation: ah-preloader-line 0.85s 0.1s var(--ah-ease) both;
}

#avila-site.is-loaded .ah-preloader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

@keyframes ah-preloader-mark {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ah-preloader-line {
  from {
    transform: translateX(-102%);
  }
  to {
    transform: translateX(0);
  }
}

.ah-mark {
  width: 50px;
  fill: currentColor;
}

.ah-header {
  position: fixed;
  z-index: 700;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--ah-gutter);
  color: var(--ah-white);
  transition:
    height 0.45s var(--ah-ease),
    color 0.4s ease,
    background 0.45s ease,
    backdrop-filter 0.45s ease;
}

#avila-site.is-scrolled .ah-header {
  height: 70px;
  color: var(--ah-gold-light);
  background: rgba(18, 40, 36, 0.82);
  backdrop-filter: blur(18px);
}

.ah-brand {
  position: relative;
  width: 190px;
  height: 62px;
  overflow: hidden;
}

.ah-brand img {
  position: absolute;
  inset: -28px -12px;
  width: calc(100% + 24px);
  height: calc(100% + 56px);
  object-fit: contain;
}

.ah-desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
}

.ah-desktop-nav button {
  position: relative;
  padding: 9px 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-desktop-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ah-ease);
}

.ah-desktop-nav button:hover::after,
.ah-desktop-nav button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ah-menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-content: center;
  gap: 7px;
}

.ah-menu-toggle span {
  width: 28px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 0.4s var(--ah-ease);
}

.ah-menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.ah-menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.ah-menu {
  position: fixed;
  z-index: 650;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--ah-gutter) 40px;
  color: var(--ah-white);
  background: var(--ah-green-deep);
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.8s var(--ah-ease-wipe),
    visibility 0s 0.8s;
}

.ah-menu.is-open {
  visibility: visible;
  clip-path: inset(0);
  transition:
    clip-path 0.8s var(--ah-ease-wipe),
    visibility 0s;
}

.ah-menu__index {
  margin-bottom: 35px;
  color: var(--ah-gold);
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ah-menu > button {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}

.ah-menu > button small {
  color: var(--ah-gold);
  font-size: 0.56rem;
}

.ah-menu > button > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  letter-spacing: -0.04em;
}

.ah-hero {
  position: relative;
  height: 114svh;
  color: var(--ah-white);
  background: var(--ah-green-deep);
}

.ah-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ah-green-deep);
}

.ah-hero__media {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(calc(1.025 + (var(--ah-hero-progress) * 0.075)))
    translateY(calc(var(--ah-hero-progress) * -2.5%));
  will-change: transform;
}

.ah-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 20, 0.55), rgba(8, 24, 20, 0.08) 38%, rgba(8, 24, 20, 0.68)),
    linear-gradient(90deg, rgba(10, 29, 25, 0.5), transparent 58%);
}

.ah-hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ah-green-deep);
  opacity: calc(var(--ah-hero-progress) * 0.28);
}

.ah-hero__content {
  position: absolute;
  z-index: 2;
  left: var(--ah-gutter);
  right: var(--ah-gutter);
  bottom: 14vh;
}

.ah-hero__kicker {
  margin-bottom: clamp(22px, 3vh, 38px);
  color: var(--ah-gold-light);
  opacity: 0;
  animation: ah-hero-enter 1s 1.15s var(--ah-ease) forwards;
}

.ah-hero h1 {
  max-width: 1480px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.4vw, 9.1rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.88;
}

.ah-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(90px);
  animation: ah-hero-enter 1.25s 1.05s var(--ah-ease) forwards;
}

.ah-hero h1 span:last-child {
  margin-left: 12.5vw;
  color: var(--ah-gold-light);
  animation-delay: 1.16s;
}

.ah-hero__link {
  position: absolute;
  right: 0;
  bottom: 4px;
  opacity: 0;
  animation: ah-hero-enter 1s 1.4s var(--ah-ease) forwards;
}

.ah-hero__foot {
  position: absolute;
  z-index: 2;
  left: var(--ah-gutter);
  right: var(--ah-gutter);
  bottom: 3.4vh;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-hero__foot span:last-child {
  text-align: right;
}

.ah-scroll-cue {
  position: absolute;
  z-index: 3;
  top: 47%;
  right: calc(var(--ah-gutter) - 8px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.53rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.ah-scroll-cue i {
  position: relative;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.ah-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ah-white);
  animation: ah-scroll-line 2s ease-in-out infinite;
}

@keyframes ah-hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ah-scroll-line {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

.ah-hero__exit {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 14svh;
  background: var(--ah-paper);
  transform: translateY(calc((1 - var(--ah-hero-progress)) * 100%));
  transform-origin: bottom;
}

.ah-who {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: clamp(42px, 3.4vw, 64px) 0;
  overflow: hidden;
}

.ah-who__shell {
  position: relative;
  z-index: 1;
  width: min(68vw, 1300px);
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: clamp(54px, 5.5vw, 108px);
  align-items: stretch;
  margin-inline: auto;
}

.ah-who__visual {
  min-width: 0;
}

.ah-who__title {
  min-height: clamp(50px, 4.2vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
}

.ah-who__title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.2vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.ah-who__title .ah-section-tag {
  flex: 0 0 auto;
  color: rgba(23, 44, 40, 0.62);
}

.ah-who__title .ah-section-tag::before {
  width: 22px;
}

.ah-who__media {
  position: relative;
  height: clamp(440px, 56svh, 560px);
  overflow: hidden;
}

.ah-who__media img {
  height: 108%;
  object-fit: cover;
  transform: translateY(calc((var(--ah-who-progress) - 0.5) * -5%));
  will-change: transform;
}

.ah-who__media > span {
  position: absolute;
  left: 16px;
  bottom: 15px;
  padding: 9px 12px;
  color: var(--ah-white);
  background: rgba(18, 40, 36, 0.45);
  backdrop-filter: blur(12px);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-who__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: clamp(50px, 4.2vw, 72px);
}

.ah-who__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 58px);
}

.ah-who__copy article {
  padding: 14px 0 clamp(26px, 3vh, 38px);
  border-top: 1px solid var(--ah-line);
}

.ah-who__copy small {
  display: block;
  margin: 0 0 clamp(18px, 2.3vh, 28px);
  color: var(--ah-gold);
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ah-who__copy p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.35vw, 1.72rem);
  letter-spacing: -0.025em;
  line-height: 1.31;
}

.ah-values {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(58px, auto));
  column-gap: clamp(28px, 3vw, 58px);
  margin-top: auto;
  padding-top: clamp(24px, 3vh, 38px);
  border-top: 1px solid var(--ah-line);
}

.ah-value {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  min-width: 0;
  padding: 11px 10px 11px 0;
  overflow: hidden;
  border-top: 1px solid var(--ah-line);
  isolation: isolate;
  transition:
    color 0.42s ease,
    border-color 0.42s ease;
}

.ah-value:nth-child(1),
.ah-value:nth-child(4) {
  border-top: 0;
}

.ah-value:nth-child(3),
.ah-value:nth-child(5) {
  border-bottom: 1px solid var(--ah-line);
}

.ah-value::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(186, 169, 99, 0.14);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ah-ease);
}

.ah-value span {
  color: var(--ah-gold);
  font-size: 0.51rem;
  letter-spacing: 0.14em;
  transition: color 0.42s ease;
}

.ah-value h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.12vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  transition: transform 0.5s var(--ah-ease);
}

.ah-value i {
  justify-self: end;
  width: 24px;
  height: 1px;
  background: rgba(186, 169, 99, 0.62);
  transform: scaleX(0.45);
  transform-origin: right;
  transition:
    width 0.55s var(--ah-ease),
    transform 0.55s var(--ah-ease);
}

.ah-value:hover,
.ah-value:focus-within {
  border-color: rgba(186, 169, 99, 0.6);
}

.ah-value:hover::before,
.ah-value:focus-within::before {
  transform: scaleX(1);
  transform-origin: left;
}

.ah-value:hover h3,
.ah-value:focus-within h3 {
  transform: translateX(7px);
}

.ah-value:hover i,
.ah-value:focus-within i {
  width: 42px;
  transform: scaleX(1);
}

.ah-who__cta {
  min-width: 170px;
  width: 170px;
  margin-top: 34px;
  padding-block: 6px;
}

.ah-who__cta .ah-arrow {
  width: 34px;
  height: 34px;
}

.ah-presence {
  position: relative;
  z-index: 4;
  height: 145svh;
  min-height: 1100px;
  color: var(--ah-white);
  background: var(--ah-green);
}

.ah-presence__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
}

.ah-presence__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 55%, rgba(186, 169, 99, 0.13), transparent 34%),
    linear-gradient(130deg, var(--ah-green), var(--ah-green-deep));
}

.ah-presence__heading {
  position: absolute;
  z-index: 2;
  top: clamp(88px, 10vh, 120px);
  left: var(--ah-gutter);
  width: min(44vw, 700px);
}

.ah-presence__heading h2 {
  margin-top: 25px;
  font-size: clamp(3rem, 5.1vw, 6.5rem);
}

.ah-map {
  position: absolute;
  z-index: 1;
  left: var(--ah-gutter);
  bottom: 2vh;
  width: 61vw;
  max-width: 1180px;
  aspect-ratio: 2.045 / 1;
}

.ah-map__world {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
  opacity: 0.28;
  filter: sepia(1) saturate(0.45);
}

.ah-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--ah-gold-light);
  transform: translate(-50%, -50%);
}

.ah-pin > i {
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--ah-green);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.ah-pin::before,
.ah-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
}

.ah-pin::before {
  animation: ah-pin-pulse 2.4s ease-out infinite;
}

.ah-pin::after {
  animation: ah-pin-pulse 2.4s 1.2s ease-out infinite;
}

.ah-pin > span {
  position: absolute;
  left: 50%;
  top: 24px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 0.35s ease;
}

.ah-pin.is-active > i,
.ah-pin:hover > i,
.ah-pin:focus-visible > i {
  background: var(--ah-gold-light);
  transform: scale(1.35);
}

.ah-pin.is-active > span {
  color: var(--ah-gold-light);
}

@keyframes ah-pin-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

.ah-location-card {
  position: absolute;
  z-index: 4;
  right: var(--ah-gutter);
  bottom: clamp(24px, 3.8vh, 46px);
  width: min(27vw, 430px);
  max-height: calc(100svh - 180px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ah-ink);
  background: var(--ah-paper);
  box-shadow: 0 35px 90px rgba(4, 15, 12, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.985);
  transform-origin: right bottom;
  transition:
    opacity 0.4s ease,
    transform 0.65s var(--ah-ease);
}

.ah-location-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ah-location-card__top {
  min-height: 56px;
  display: grid;
  grid-template-columns: 52px 1fr 58px;
  align-items: center;
  border-bottom: 1px solid rgba(23, 44, 40, 0.12);
  background: var(--ah-paper);
}

.ah-location-card__menu {
  width: 52px;
  height: 56px;
  display: grid;
  place-content: center;
  gap: 3px;
}

.ah-location-card__menu i {
  width: 15px;
  height: 1.5px;
  display: block;
  background: var(--ah-gold);
}

.ah-location-card__top h3 {
  margin: 0;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ah-location-card__close {
  position: relative;
  width: 58px;
  height: 56px;
  background: #35695f;
  transition: background 0.3s ease;
}

.ah-location-card__close:hover,
.ah-location-card__close:focus-visible {
  background: var(--ah-green);
}

.ah-location-card__close i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--ah-gold-light);
  transform: translate(-50%, -50%) rotate(45deg);
}

.ah-location-card__close i:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ah-location-card__image {
  position: relative;
  flex: 0 0 clamp(210px, 26svh, 300px);
  min-height: 0;
  overflow: hidden;
  background: var(--ah-green-deep);
}

.ah-location-card__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition:
    opacity 0.55s ease,
    transform 1.2s var(--ah-ease);
}

.ah-location-card__image img.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.ah-location-card__body {
  min-height: 0;
  padding: clamp(16px, 1.5vw, 22px) clamp(18px, 1.8vw, 28px) clamp(18px, 2vw, 28px);
  overflow-y: auto;
  scrollbar-color: rgba(184, 164, 85, 0.5) transparent;
  scrollbar-width: thin;
}

.ah-location-card__stars {
  color: #d8c66e;
  font-size: clamp(1.25rem, 1.5vw, 1.65rem);
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
}

.ah-location-card__category {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  margin: 7px 0 15px;
}

.ah-location-card__category i {
  height: 1px;
  background: rgba(23, 44, 40, 0.62);
}

.ah-location-card__category small {
  color: var(--ah-gold);
  font-size: 0.53rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ah-location-card__body > p {
  margin: 0;
  color: rgba(23, 44, 40, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  line-height: 1.45;
}

.ah-location-card__body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.ah-location-card__body li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 25px;
  color: rgba(23, 44, 40, 0.65);
  font-size: clamp(0.58rem, 0.62vw, 0.67rem);
  line-height: 1.25;
}

.ah-location-fact__icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #cfb850;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.ah-location-card__body .ah-line-link {
  min-width: 100%;
  min-height: 43px;
  margin-top: 3px;
}

.ah-what {
  position: relative;
  z-index: 5;
  margin-top: -36px;
  padding: clamp(54px, 5vw, 88px) 0 clamp(64px, 6vw, 105px);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -22px 50px rgba(5, 22, 18, 0.16);
}

.ah-what__intro {
  width: var(--ah-page);
  min-height: clamp(150px, 18svh, 190px);
  display: grid;
  grid-template-columns: 0.3fr 0.9fr 1.05fr;
  align-items: center;
  gap: clamp(30px, 4vw, 80px);
  margin-inline: auto;
}

.ah-what__intro h2 {
  max-width: 740px;
  font-size: clamp(3rem, 3.2vw, 4.1rem);
  line-height: 0.92;
  white-space: nowrap;
}

.ah-what__intro .ah-section-tag {
  margin-top: 0;
}

.ah-what__intro > p:last-child {
  width: min(100%, 580px);
  max-width: 580px;
  justify-self: end;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.55vw, 1.85rem);
  line-height: 1.42;
}

.ah-services {
  width: var(--ah-page);
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  margin: clamp(46px, 4.5vw, 82px) auto 0;
}

.ah-services__media {
  --ah-services-media-height: clamp(480px, 70svh, 720px);

  position: sticky;
  top: max(78px, calc((100svh - var(--ah-services-media-height)) / 2));
  height: var(--ah-services-media-height);
  align-self: start;
  overflow: hidden;
  background: var(--ah-paper-deep);
}

.ah-services__media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.08);
  transition:
    opacity 0.6s ease,
    clip-path 1s var(--ah-ease-wipe),
    transform 1.4s var(--ah-ease);
}

.ah-services__media img.is-active {
  opacity: 1;
  clip-path: inset(0);
  transform: scale(1.015);
}

.ah-services__counter {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  padding: 11px 13px;
  color: var(--ah-white);
  background: rgba(18, 40, 36, 0.52);
  backdrop-filter: blur(12px);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.ah-services__list article {
  min-height: clamp(320px, 38svh, 400px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--ah-line);
  opacity: 0.42;
  transition: opacity 0.5s ease;
}

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

.ah-services__list article.is-active {
  opacity: 1;
}

.ah-services__list article > small {
  color: var(--ah-gold);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ah-services__list h3 {
  margin: 22px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.2vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.ah-services__list p {
  max-width: 480px;
  margin: 0 0 24px;
  color: rgba(23, 44, 40, 0.72);
  font-size: 0.8rem;
  line-height: 1.7;
}

.ah-projects {
  --ah-project-green: #091d1e;
  position: relative;
  z-index: 4;
  color: var(--ah-white);
  background: var(--ah-project-green);
}

.ah-projects__heading {
  position: sticky;
  z-index: 8;
  top: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.ah-projects__heading h2 {
  position: absolute;
  top: max(106px, 10.2svh);
  left: var(--ah-gutter);
  margin: 0;
  color: var(--ah-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 2.45vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 24px rgba(3, 13, 10, 0.34);
  will-change: transform, opacity, clip-path;
}

@media (max-width: 680px) {
  .ah-projects__heading h2 {
    top: 96px;
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
  }
}

.ah-project {
  --ah-project-intro: 0;
  --ah-project-copy: 0;
  position: relative;
  min-height: 255svh;
  isolation: isolate;
  background: var(--ah-project-green);
}

.ah-project__colour,
.ah-project__content {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  margin-bottom: -100svh;
}

.ah-project__colour {
  z-index: 2;
  pointer-events: none;
  background: var(--ah-project-green);
  opacity: var(--ah-project-intro);
  will-change: opacity;
}

.ah-project__content {
  z-index: 4;
  pointer-events: none;
  opacity: var(--ah-project-copy);
  will-change: opacity;
}

.ah-project__top {
  position: absolute;
  top: max(92px, 9.2svh);
  left: var(--ah-gutter);
  right: var(--ah-gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ah-project__top > span {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-project__copy {
  position: absolute;
  left: var(--ah-gutter);
  bottom: 8.8svh;
  width: min(46vw, 760px);
}

.ah-project__copy h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 2.75vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(3, 13, 10, 0.32);
}

.ah-project__open {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 8px 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  pointer-events: auto;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ah-project__open i {
  font-size: 0.95rem;
  font-style: normal;
  transition: transform 0.35s var(--ah-ease);
}

.ah-project__open:hover i,
.ah-project__open:focus-visible i {
  transform: translateX(5px);
}

.ah-project__details {
  position: absolute;
  right: var(--ah-gutter);
  bottom: 4.2svh;
  left: 52%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 48px);
  align-items: end;
}

.ah-project__details span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ah-project__details small,
.ah-project__details b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ah-project__details small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.49rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ah-project__details b {
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ah-project__main-track {
  position: relative;
  z-index: 1;
  height: 180svh;
}

.ah-project__main {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--ah-project-green);
}

.ah-project__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 12, 0.12), transparent 38%, rgba(4, 15, 12, 0.52)),
    linear-gradient(90deg, rgba(4, 15, 12, 0.22), transparent 52%);
  pointer-events: none;
}

.ah-project__main img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.ah-project__gallery {
  position: relative;
  z-index: 3;
  margin-top: -135svh;
}

.ah-project__slide {
  min-height: 105svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4svh 0;
}

.ah-project__slide figure {
  width: min(83.333vw, 1600px);
  height: min(72svh, 780px);
  margin: 0;
  overflow: hidden;
  background: var(--ah-project-green);
  box-shadow: 0 26px 90px rgba(1, 11, 8, 0.18);
}

.ah-project__slide img {
  height: 100%;
  object-fit: cover;
}

.ah-project:nth-child(2) .ah-project__slide:first-child img,
.ah-project:nth-child(3) .ah-project__slide:first-child img {
  object-position: center 42%;
}

.ah-project:last-child .ah-project__slide:last-child img {
  object-position: center 58%;
}

.ah-partners {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: clamp(52px, 5.3vw, 92px) 0 clamp(70px, 7vw, 125px);
  background: #ffffff;
}

.ah-partners__shell {
  width: min(91vw, 1480px);
  margin-inline: auto;
}

.ah-partners__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(42px, 6vw, 110px);
  align-items: center;
  padding: 0 18px clamp(48px, 5.5vw, 82px);
}

.ah-partners__all {
  min-width: 170px;
  padding: 10px 13px 9px;
  border: 1px solid rgba(23, 44, 40, 0.72);
  color: var(--ah-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 1.85vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  transition:
    color 0.38s ease,
    background 0.38s ease,
    border-color 0.38s ease;
}

.ah-partners__all:hover,
.ah-partners__all:focus-visible,
.ah-partners__all.is-active {
  color: var(--ah-white);
  background: var(--ah-green);
  border-color: var(--ah-green);
}

.ah-partners__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 58px);
}

.ah-partners__filters button {
  position: relative;
  flex: 0 1 auto;
  padding: 12px 0;
  color: rgba(23, 44, 40, 0.72);
  font-size: clamp(0.5rem, 0.62vw, 0.64rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.ah-partners__filters button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--ah-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s var(--ah-ease);
}

.ah-partners__filters button:hover,
.ah-partners__filters button:focus-visible,
.ah-partners__filters button.is-active {
  color: var(--ah-green);
}

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

.ah-partners__grid {
  --ah-partners-fade: clamp(38px, 7vw, 118px);

  position: relative;
  min-height: 220px;
  display: block;
  padding: clamp(36px, 4vw, 62px) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--ah-partners-fade),
    #000 calc(100% - var(--ah-partners-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--ah-partners-fade),
    #000 calc(100% - var(--ah-partners-fade)),
    transparent 100%
  );
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.ah-partners__track {
  --ah-partners-distance: 0px;
  --ah-partners-duration: 32s;

  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation:
    ah-partners-marquee
    var(--ah-partners-duration)
    linear
    infinite;
}

.ah-partners__group {
  --ah-partners-gap: clamp(34px, 4.5vw, 76px);

  flex: none;
  display: flex;
  align-items: center;
  gap: var(--ah-partners-gap);
  padding-right: var(--ah-partners-gap);
}

.ah-partners__grid:hover .ah-partners__track,
.ah-partners__grid:focus-within .ah-partners__track {
  animation-play-state: paused;
}

.ah-partners__grid.is-filtering {
  opacity: 0.18;
  transform: translateY(7px);
}

.ah-partner-card {
  position: relative;
  flex: 0 0 clamp(160px, 14vw, 230px);
  min-width: 0;
  min-height: 96px;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 1;
}

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

.ah-partner-card.is-entering {
  animation: ah-partner-enter 0.58s var(--ah-ease) both;
}

.ah-partner-card img {
  width: min(var(--ah-logo-width, 150px), 100%);
  max-height: 76px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.42s var(--ah-ease);
}

.ah-partner-card.is-loaded img {
  opacity: 0.72;
  transform: scale(1);
}

.ah-partner-card:hover img {
  opacity: 1;
  transform: scale(1.045);
}

.ah-partner-card__fallback {
  display: none;
  max-width: 160px;
  color: rgba(186, 169, 99, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-align: center;
}

.ah-partner-card.is-placeholder img {
  display: none;
}

.ah-partner-card.is-placeholder .ah-partner-card__fallback {
  display: block;
}

@keyframes ah-partner-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

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

@keyframes ah-partners-marquee {
  to {
    transform: translate3d(
      calc(-1 * var(--ah-partners-distance)),
      0,
      0
    );
  }
}

@media (max-width: 1180px) {
  .ah-partners__head {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .ah-partners__all {
    width: max-content;
  }

  .ah-partners__filters {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ah-partner-card {
    flex-basis: clamp(150px, 19vw, 210px);
  }
}

@media (max-width: 760px) {
  .ah-partners {
    padding-top: 48px;
  }

  .ah-partners__shell {
    width: calc(100vw - 40px);
  }

  .ah-partners__head {
    padding-inline: 0;
    padding-bottom: 34px;
  }

  .ah-partners__filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .ah-partners__filters button {
    text-align: left;
  }

  .ah-partners__grid {
    --ah-partners-fade: 34px;

    min-height: 172px;
    padding: 28px 0;
  }

  .ah-partners__group {
    --ah-partners-gap: 30px;
  }

  .ah-partner-card {
    flex-basis: 142px;
    min-height: 68px;
  }

  .ah-partner-card img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .ah-partners__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ah-partners__grid {
    --ah-partners-fade: 24px;
  }

  .ah-partners__group {
    --ah-partners-gap: 24px;
  }

  .ah-partner-card {
    flex-basis: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ah-partners__grid {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .ah-partners__track {
    animation: none;
    transform: none;
  }

  .ah-partners__group[aria-hidden="true"] {
    display: none;
  }
}

.ah-strategy {
  --ah-strategy-progress: 0.5;

  position: relative;
  z-index: 4;
  padding: clamp(68px, 6vw, 105px) 0;
  overflow: hidden;
  background: #eeefef;
  color: var(--ah-green-deep);
}

.ah-strategy__grid {
  position: relative;
  width: var(--ah-page);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: clamp(72px, 8vw, 138px);
  margin-inline: auto;
}

.ah-strategy__grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(18, 40, 36, 0.34);
  transform: translateX(-50%);
}

.ah-strategy__panel,
.ah-strategy__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ah-strategy__panel {
  min-height: clamp(500px, 58svh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ah-strategy__panel--approach {
  padding-right: clamp(58px, 7vw, 130px);
}

.ah-strategy__panel--opportunities {
  grid-column: 2;
  padding-left: clamp(58px, 7vw, 130px);
}

.ah-strategy .ah-section-tag {
  margin-bottom: clamp(22px, 2.4vw, 36px);
  color: rgba(18, 40, 36, 0.68);
}

.ah-strategy__title {
  max-width: 740px;
  margin: 0 0 clamp(18px, 2vw, 28px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.2vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
}

.ah-strategy__lead {
  max-width: 590px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.12vw, 1.28rem);
  letter-spacing: -0.015em;
  line-height: 1.43;
}

.ah-strategy__heading {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr);
  gap: clamp(22px, 2.5vw, 42px);
  align-items: center;
  margin-top: clamp(32px, 3.6vw, 54px);
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.ah-strategy__heading--reverse {
  grid-template-columns: minmax(60px, 1fr) auto;
  margin-top: 0;
}

.ah-strategy__heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.55vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.ah-strategy__heading span {
  width: 100%;
  height: 1px;
  background: rgba(18, 40, 36, 0.48);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ah-ease);
}

.ah-strategy__heading--reverse span {
  transform-origin: right;
}

.ah-strategy__heading.is-visible span {
  transform: scaleX(1);
}

.ah-strategy__list {
  display: grid;
  gap: clamp(16px, 1.7vw, 26px);
}

.ah-strategy__list > div {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 28px;
}

.ah-strategy__list i {
  width: 3px;
  height: 22px;
  display: block;
  background: var(--ah-gold-light);
  transform: scaleY(0.72);
  transition: transform 0.45s var(--ah-ease);
}

.ah-strategy__list p {
  margin: 0;
  font-size: clamp(0.58rem, 0.62vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  transition:
    color 0.4s ease,
    transform 0.45s var(--ah-ease);
}

.ah-strategy__list > div:hover i {
  transform: scaleY(1);
}

.ah-strategy__list > div:hover p {
  color: var(--ah-green);
  transform: translateX(7px);
}

.ah-strategy__media {
  height: clamp(470px, 59svh, 620px);
  margin: 0;
  overflow: hidden;
  background: rgba(18, 40, 36, 0.12);
}

.ah-strategy__media--miami {
  align-self: end;
  margin-left: clamp(48px, 6vw, 112px);
}

.ah-strategy__media--mountain {
  grid-column: 1;
  margin-right: clamp(48px, 6vw, 112px);
}

.ah-strategy__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 40, 36, 0.02),
      rgba(18, 40, 36, 0.16)
    ),
    linear-gradient(
      90deg,
      rgba(201, 186, 126, 0.08),
      transparent 45%
    );
  pointer-events: none;
}

.ah-strategy__media img {
  height: 112%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  will-change: transform;
}

.ah-strategy__media--miami img {
  transform:
    scale(1.045)
    translateY(
      calc(
        (var(--ah-strategy-progress) - 0.5) * -5%
      )
    );
}

.ah-strategy__media--mountain img {
  transform:
    scale(1.045)
    translateY(
      calc(
        (var(--ah-strategy-progress) - 0.5) * 5%
      )
    );
}

@media (max-width: 920px) {
  .ah-strategy {
    padding-block: 78px;
  }

  .ah-strategy__grid {
    grid-template-columns: 1fr;
    row-gap: 54px;
  }

  .ah-strategy__grid::before {
    display: none;
  }

  .ah-strategy__panel,
  .ah-strategy__panel--approach,
  .ah-strategy__panel--opportunities {
    grid-column: 1;
    min-height: 0;
    padding: 0;
  }

  .ah-strategy__media,
  .ah-strategy__media--miami,
  .ah-strategy__media--mountain {
    grid-column: 1;
    width: 100%;
    height: 58svh;
    min-height: 430px;
    margin: 0;
  }

  .ah-strategy__panel--approach {
    grid-row: 1;
  }

  .ah-strategy__media--miami {
    grid-row: 2;
  }

  .ah-strategy__media--mountain {
    grid-row: 3;
  }

  .ah-strategy__panel--opportunities {
    grid-row: 4;
  }

  .ah-strategy__title {
    white-space: normal;
  }

  .ah-strategy__lead {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .ah-strategy {
    padding-block: 58px;
  }

  .ah-strategy__grid {
    row-gap: 42px;
  }

  .ah-strategy__title {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
  }

  .ah-strategy__lead {
    font-size: 1rem;
  }

  .ah-strategy__heading {
    gap: 18px;
    margin-top: 34px;
  }

  .ah-strategy__heading h3 {
    font-size: 1.4rem;
  }

  .ah-strategy__list {
    gap: 18px;
  }

  .ah-strategy__list p {
    font-size: 0.62rem;
  }

  .ah-strategy__media,
  .ah-strategy__media--miami,
  .ah-strategy__media--mountain {
    height: 52svh;
    min-height: 360px;
  }
}


.ah-team {
  position: relative;
  z-index: 5;
  padding: clamp(110px, 11vw, 200px) 0 clamp(110px, 10vw, 180px);
}

.ah-team__heading {
  width: var(--ah-page);
  display: grid;
  grid-template-columns: 0.37fr 1.13fr 0.5fr;
  align-items: end;
  margin-inline: auto;
}

.ah-team__heading h2 {
  max-width: 970px;
  font-size: clamp(4rem, 7vw, 8.8rem);
}

.ah-team__heading h2 em {
  color: var(--ah-gold);
}

.ah-team__heading > p:last-child {
  max-width: 280px;
  margin: 0 0 1vh 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

.ah-team__grid {
  width: var(--ah-page);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(35px, 5vw, 90px) 20px;
  margin: clamp(90px, 11vw, 190px) auto 0;
}

.ah-team__grid article > div {
  position: relative;
  aspect-ratio: 0.83 / 1;
  overflow: hidden;
  background: #dededb;
}

.ah-team__grid img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.015);
  transition:
    filter 0.65s ease,
    transform 0.9s var(--ah-ease);
}

.ah-team__grid article:hover img {
  filter: grayscale(0.2);
  transform: scale(1.065);
}

.ah-team__grid article > div span {
  position: absolute;
  left: 13px;
  bottom: 12px;
  color: var(--ah-white);
  font-size: 0.54rem;
}

.ah-team__grid h3 {
  margin: 18px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.ah-team__grid p {
  margin: 0;
  color: var(--ah-gold);
  font-size: 0.54rem;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ah-site-footer {
  position: relative;
  z-index: 4;
  min-height: clamp(650px, 68svh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ah-white);
  background: var(--ah-green-deep);
}

.ah-site-footer__backdrop {
  position: absolute;
  inset: 0;
}

.ah-site-footer__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 38, 32, 0.91),
      rgba(18, 52, 44, 0.82) 48%,
      rgba(14, 42, 36, 0.89)
    ),
    linear-gradient(
      180deg,
      rgba(12, 32, 28, 0.16),
      rgba(8, 27, 23, 0.58)
    );
}

.ah-site-footer__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.025);
}

.ah-site-footer__inner,
.ah-site-footer__copyright {
  position: relative;
  z-index: 2;
}

.ah-site-footer__inner {
  width: min(66vw, 1080px);
  flex: 1 0 auto;
  margin-inline: auto;
  padding:
    clamp(62px, 5.5vw, 92px)
    0
    clamp(160px, 15vw, 210px);
}

.ah-site-footer__main {
  display: grid;
  grid-template-columns:
    minmax(230px, 0.78fr)
    minmax(390px, 1.22fr);
  gap: clamp(84px, 7vw, 120px);
  align-items: start;
}

.ah-site-footer__location {
  margin: 0;
  font-style: normal;
}

.ah-site-footer__location h2,
.ah-site-footer__form-wrap > h2 {
  margin: 0 0 20px;
  color: var(--ah-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.25vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ah-site-footer__location > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.22;
}

.ah-site-footer__contact-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--ah-gold-light);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 0.35s ease,
    transform 0.35s var(--ah-ease);
}

.ah-site-footer__contact-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.ah-site-footer__contact-link:hover,
.ah-site-footer__contact-link:focus-visible {
  color: var(--ah-white);
  transform: translateX(5px);
}

.ah-site-footer__social {
  margin-top: 26px;
}

.ah-site-footer__social h3 {
  margin: 0 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.ah-site-footer__social > div {
  display: flex;
  gap: 12px;
}

.ah-site-footer__social a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ah-gold-light);
  transition:
    color 0.35s ease,
    transform 0.35s var(--ah-ease);
}

.ah-site-footer__social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.ah-site-footer__social a:hover,
.ah-site-footer__social a:focus-visible {
  color: var(--ah-white);
  transform: translateY(-3px);
}

.ah-site-footer__form {
  display: grid;
  gap: 14px;
}

.ah-site-footer__form label {
  display: block;
}

.ah-site-footer__form input,
.ah-site-footer__form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  padding: 11px 13px;
  resize: none;
  color: var(--ah-white);
  background: rgba(235, 231, 214, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.71rem;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.ah-site-footer__form input {
  min-height: 38px;
}

.ah-site-footer__form textarea {
  min-height: 84px;
}

.ah-site-footer__form input::placeholder,
.ah-site-footer__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.ah-site-footer__form input:focus,
.ah-site-footer__form textarea:focus {
  border-color: rgba(217, 204, 145, 0.62);
  background: rgba(235, 231, 214, 0.28);
  box-shadow: 0 0 0 3px rgba(217, 204, 145, 0.08);
}

.ah-site-footer__submit-row {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: clamp(44px, 5.5vw, 86px);
  align-items: center;
  margin-top: 4px;
}

.ah-site-footer__submit-row button {
  min-height: 34px;
  padding: 9px 18px;
  color: var(--ah-green-deep);
  background: var(--ah-gold-light);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s var(--ah-ease);
}

.ah-site-footer__submit-row button:hover,
.ah-site-footer__submit-row button:focus-visible {
  color: var(--ah-white);
  background: var(--ah-green);
  transform: translateY(-2px);
}

.ah-site-footer__thankyou {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ah-white);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.ah-site-footer__thankyou strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 1.65vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.ah-site-footer__thankyou small {
  margin-top: 5px;
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ah-site-footer__navigation {
  width: min(90%, 760px);
  margin: clamp(40px, 4vw, 56px) auto 0;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(217, 204, 145, 0.58);
  border-bottom: 1px solid rgba(217, 204, 145, 0.58);
  text-align: center;
}

.ah-site-footer__navigation nav {
  display: flex;
  justify-content: center;
  gap: 0;
}

.ah-site-footer__navigation nav a {
  position: relative;
  padding-inline: 5px;
  color: var(--ah-gold-light);
  font-size: 0.55rem;
  font-weight: 700;
}

.ah-site-footer__navigation nav a:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: rgba(217, 204, 145, 0.8);
}

.ah-site-footer__navigation a {
  transition: color 0.3s ease;
}

.ah-site-footer__navigation a:hover,
.ah-site-footer__navigation a:focus-visible {
  color: var(--ah-white);
}

.ah-site-footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.ah-site-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
}

.ah-site-footer__legal i {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.ah-site-footer__copyright {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px var(--ah-gutter);
  color: rgba(255, 255, 255, 0.88);
  background: #050505;
  font-size: 0.58rem;
  font-style: italic;
  text-align: center;
}

.ah-site-footer__copyright i {
  width: 14px;
  height: 1px;
  background: var(--ah-gold-light);
}

.ah-site-footer__design-credit {
  position: absolute;
  right: var(--ah-gutter);
  top: 50%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-decoration: none;
  transform: translateY(-50%);
  transition: color 0.28s ease;
}

.ah-site-footer__design-credit:hover,
.ah-site-footer__design-credit:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

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

@media (max-width: 920px) {
  .ah-site-footer {
    min-height: 660px;
  }

  .ah-site-footer__inner {
    width: var(--ah-page);
    padding-bottom: 125px;
  }

  .ah-site-footer__main {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 54px;
  }

  .ah-site-footer__navigation {
    width: min(92%, 760px);
  }
}

@media (max-width: 680px) {
  .ah-site-footer {
    min-height: auto;
  }

  .ah-site-footer__inner {
    width: var(--ah-page);
    padding: 64px 0 82px;
  }

  .ah-site-footer__main {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ah-site-footer__submit-row {
    grid-template-columns: 88px 1fr;
    gap: 26px;
  }

  .ah-site-footer__thankyou {
    justify-self: end;
  }

  .ah-site-footer__navigation {
    width: 100%;
    margin-top: 54px;
  }

  .ah-site-footer__navigation nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .ah-site-footer__legal {
    flex-wrap: wrap;
  }

  .ah-site-footer__copyright {
    min-height: 64px;
    padding-bottom: 24px;
    font-size: 0.52rem;
  }

  .ah-site-footer__design-credit {
    right: 50%;
    top: auto;
    bottom: 8px;
    width: max-content;
    font-size: 8px;
    transform: translateX(50%);
  }
}

.ah-project-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  visibility: hidden;
  overflow: auto;
  color: var(--ah-ink);
  background: var(--ah-paper);
  transform: translateY(100%);
  transition:
    transform 0.85s var(--ah-ease-wipe),
    visibility 0s 0.85s;
}

.ah-project-modal.is-open {
  visibility: visible;
  transform: translateY(0);
  transition:
    transform 0.85s var(--ah-ease-wipe),
    visibility 0s;
}

.ah-project-modal__close {
  position: fixed;
  z-index: 3;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 26px);
  right: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--ah-paper);
  box-shadow: 0 10px 35px rgba(13, 32, 28, 0.18);
}

.ah-project-modal__close span {
  grid-area: 1 / 1;
  width: 25px;
  height: 1px;
  background: var(--ah-ink);
}

.ah-project-modal__close span:first-child {
  transform: rotate(45deg);
}

.ah-project-modal__close span:last-child {
  transform: rotate(-45deg);
}

.ah-project-modal__media {
  min-height: 100svh;
}

.ah-project-modal__media img {
  height: 100%;
  object-fit: cover;
}

.ah-project-modal__body {
  padding: 15vh 6vw 8vh;
}

.ah-project-modal__body > small {
  color: var(--ah-gold);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-project-modal__body h2 {
  margin: 7vh 0 10vh;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6.6vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.ah-project-modal__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ah-line);
  border-bottom: 1px solid var(--ah-line);
}

.ah-project-modal__facts > span {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.ah-project-modal__facts small {
  color: rgba(23, 44, 40, 0.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.53rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ah-project-modal__body > p {
  max-width: 560px;
  margin: 8vh 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.8vw, 2.15rem);
  line-height: 1.45;
}

@media (max-width: 1180px) {
  :root {
    --ah-page: calc(100vw - 48px);
    --ah-gutter: 24px;
  }

  .ah-location-card {
    width: min(38vw, 400px);
  }

  .ah-location-card__image {
    flex-basis: clamp(210px, 25svh, 280px);
  }

  .ah-team__heading {
    grid-template-columns: 0.3fr 1.2fr;
  }

  .ah-team__heading > p:last-child {
    grid-column: 2;
    margin: 40px 0 0;
  }
}

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

  .ah-menu-toggle {
    display: grid;
  }

  .ah-hero h1 span:last-child {
    margin-left: 0;
  }

  .ah-hero__link {
    position: static;
    margin-top: 42px;
  }

  .ah-what__intro {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .ah-what__intro > p:last-child {
    width: 78%;
    max-width: 620px;
    justify-self: end;
    margin-left: 0;
  }

  .ah-what__intro .ah-section-tag {
    margin-top: 0;
  }

  .ah-who__shell {
    width: calc(100vw - 48px);
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ah-who__content {
    padding-top: 0;
  }

  .ah-who__copy {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .ah-values {
    margin-top: 42px;
  }

  .ah-presence {
    height: auto;
    min-height: 0;
    padding: 110px 24px;
  }

  .ah-presence__stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .ah-presence__heading {
    position: relative;
    top: auto;
    left: auto;
    width: 75%;
  }

  .ah-map {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 70px;
  }

  .ah-location-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    max-height: none;
    margin: 45px auto 0;
    transform-origin: center top;
  }

  .ah-location-card__image {
    flex-basis: clamp(300px, 42vw, 420px);
  }

  .ah-location-card__body {
    overflow: visible;
  }

  .ah-services {
    grid-template-columns: 0.78fr 1fr;
    gap: 36px;
  }

  .ah-services__media {
    --ah-services-media-height: clamp(440px, 64svh, 620px);
  }

  .ah-project__copy {
    width: min(58vw, 680px);
  }

  .ah-project__details {
    left: 48%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .ah-project__slide figure {
    width: calc(100vw - 48px);
  }



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


  .ah-project-modal {
    grid-template-columns: 1fr;
  }

  .ah-project-modal__media {
    min-height: 70svh;
  }
}

@media (max-width: 680px) {
  :root {
    --ah-page: calc(100vw - 40px);
    --ah-gutter: 20px;
  }

  .ah-display {
    font-size: clamp(3.6rem, 18vw, 6.2rem);
  }

  .ah-header {
    height: 70px;
  }

  .ah-brand {
    width: 150px;
    height: 54px;
  }

  .ah-hero {
    height: 112svh;
  }

  .ah-hero__sticky {
    min-height: 620px;
  }

  .ah-hero__content {
    bottom: 18vh;
  }

  .ah-hero h1 {
    font-size: clamp(3.35rem, 16.3vw, 5.9rem);
    line-height: 0.89;
  }

  .ah-hero h1 span:last-child {
    margin-top: 9px;
  }

  .ah-hero__link {
    min-width: 210px;
  }

  .ah-hero__foot {
    grid-template-columns: 1fr 1fr;
  }

  .ah-hero__foot span:last-child,
  .ah-scroll-cue {
    display: none;
  }

  .ah-what__intro > p:last-child {
    width: 92%;
    margin-left: 0;
  }

  .ah-who {
    padding: 78px 0 0;
  }

  .ah-who__shell {
    width: calc(100vw - 40px);
    gap: 38px;
  }

  .ah-who__title {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .ah-who__title h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .ah-who__media {
    height: 58svh;
    min-height: 420px;
  }

  .ah-who__copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ah-who__copy p {
    font-size: 1.45rem;
  }

  .ah-values {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    margin-top: 30px;
    padding-top: 20px;
  }

  .ah-value {
    grid-template-columns: 36px 1fr auto;
    min-height: 62px;
    border-top: 1px solid var(--ah-line);
    border-bottom: 0;
  }

  .ah-value:first-child {
    border-top: 0;
  }

  .ah-value:last-child {
    border-bottom: 1px solid var(--ah-line);
  }

  .ah-presence {
    padding-inline: 20px;
  }

  .ah-presence__heading {
    width: 100%;
  }

  .ah-presence__heading h2 {
    font-size: 3.65rem;
  }

  .ah-map {
    margin-top: 55px;
  }

  .ah-pin {
    width: 26px;
    height: 26px;
  }

  .ah-pin > i {
    inset: 7px;
  }

  .ah-pin > span {
    display: none;
  }

  .ah-location-card__top {
    grid-template-columns: 46px 1fr 52px;
  }

  .ah-location-card__menu {
    width: 46px;
    height: 52px;
  }

  .ah-location-card__close {
    width: 52px;
    height: 52px;
  }

  .ah-location-card__top {
    min-height: 52px;
  }

  .ah-location-card__top h3 {
    padding-inline: 6px;
    font-size: 0.88rem;
  }

  .ah-location-card__image {
    flex-basis: clamp(220px, 66vw, 320px);
  }

  .ah-location-card__body {
    padding: 18px 20px 22px;
  }

  .ah-location-card__body > p {
    font-size: 0.75rem;
  }

  .ah-location-card__body li {
    font-size: 0.68rem;
  }

  .ah-what {
    padding-top: 58px;
    padding-bottom: 70px;
    border-radius: 24px 24px 0 0;
  }

  .ah-what__intro {
    gap: 24px;
  }

  .ah-services {
    display: block;
    margin-top: 60px;
  }

  .ah-services__media {
    position: sticky;
    z-index: 2;
    top: 70px;
    height: 38svh;
    min-height: 285px;
  }

  .ah-services__list article {
    min-height: 50svh;
    padding-top: 24svh;
  }

  .ah-services__list h3 {
    font-size: 3rem;
  }

  .ah-project {
    min-height: 235svh;
  }

  .ah-project__colour,
  .ah-project__content,
  .ah-project__main {
    min-height: 620px;
  }

  .ah-project__top {
    top: 96px;
  }

  .ah-project__top > span {
    max-width: 120px;
    text-align: right;
  }

  .ah-project__copy {
    bottom: 14svh;
    width: calc(100vw - 40px);
  }

  .ah-project__copy h2 {
    max-width: 88vw;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .ah-project__details {
    left: 20px;
    bottom: 4.5svh;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .ah-project__details span:nth-child(-n + 2) {
    display: none;
  }

  .ah-project__main-track {
    height: 170svh;
  }

  .ah-project__gallery {
    margin-top: -125svh;
  }

  .ah-project__slide {
    min-height: 95svh;
    padding: 4svh 0;
  }

  .ah-project__slide figure {
    width: calc(100vw - 40px);
    height: 54svh;
    min-height: 360px;
  }


  .ah-team__heading {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ah-team__heading > p:last-child {
    grid-column: auto;
    margin: 0 0 0 18%;
  }

  .ah-team__grid {
    gap: 50px 12px;
  }

  .ah-team__grid h3 {
    font-size: 1.18rem;
  }


  .ah-project-modal__body {
    padding: 90px 20px 70px;
  }

  .ah-project-modal__body h2 {
    font-size: 4rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

/* P */
#avila-site img[src^="URL_ASSET/"] {
  visibility: hidden;
}

#avila-site .ah-hero__media[poster^="URL_ASSET/"] {
  background: #132421;
}

/* P */

#avila-site .ah-hero {
  position: relative;
  height: 114svh;
  color: var(--ah-white);
  background: var(--ah-green-deep);
}

#avila-site .ah-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #10373a;
}

#avila-site .ah-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 47%;
  transform:
    scale(
      calc(
        1.015 +
        var(--ah-hero-progress) * 0.045
      )
    )
    translateY(
      calc(
        var(--ah-hero-progress) * -1.5%
      )
    );
  will-change: transform;
}

#avila-site .ah-hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 43, 45, 0.66) 0%,
      rgba(7, 39, 39, 0.54) 42%,
      rgba(4, 31, 27, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 40, 40, 0.28),
      rgba(8, 45, 44, 0.08) 50%,
      rgba(5, 36, 34, 0.24)
    );
  pointer-events: none;
}

#avila-site .ah-hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #103632;
  opacity:
    calc(
      var(--ah-hero-progress) * 0.18
    );
}

#avila-site .ah-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding:
    clamp(100px, 10svh, 126px)
    24px
    clamp(76px, 8.4svh, 98px);
}

#avila-site .ah-hero__center {
  align-self: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translateY(
    clamp(18px, 2.5svh, 32px)
  );
}

#avila-site .ah-hero__logo {
  width: clamp(330px, 27vw, 500px);
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px);
  animation:
    ah-home-hero-show
    1.05s
    0.28s
    var(--ah-ease)
    forwards;
}

#avila-site .ah-hero__title {
  max-width: 1100px;
  margin:
    clamp(25px, 3svh, 36px)
    0
    0;
  color: var(--ah-white);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

#avila-site .ah-hero__title span {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation:
    ah-home-hero-show
    0.95s
    0.48s
    var(--ah-ease)
    forwards;
}

#avila-site .ah-hero__title span:first-child {
  color: #fffdf8;
  font-size: clamp(2.55rem, 3.05vw, 3.7rem);
  font-weight: 300;
  letter-spacing: 0.008em;
}

#avila-site .ah-hero__title span:last-child {
  margin:
    clamp(8px, 1svh, 13px)
    0
    0;
  color: #d8c47c;
  font-size: clamp(1.35rem, 1.78vw, 2.08rem);
  font-weight: 300;
  letter-spacing: 0.025em;
  animation-delay: 0.62s;
}

#avila-site .ah-hero__cta {
  width: min(375px, 78vw);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 178, 89, 0.94);
  color: #fffdf8;
  background: rgba(8, 36, 32, 0.12);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: clamp(0.88rem, 1.12vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation:
    ah-home-hero-show
    0.9s
    0.78s
    var(--ah-ease)
    forwards;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.45s var(--ah-ease);
}

#avila-site .ah-hero__cta:hover,
#avila-site .ah-hero__cta:focus-visible {
  color: #17332e;
  background: #d8c47c;
  border-color: #d8c47c;
  transform: translateY(-3px);
}

#avila-site .ah-hero__scroll {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(24px, 3svh, 36px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 253, 248, 0.82);
  text-decoration: none;
}

#avila-site .ah-hero__scroll span {
  width: 19px;
  height: 19px;
  display: block;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translateY(-5px) rotate(45deg);
  animation:
    ah-home-hero-arrow
    1.75s
    ease-in-out
    infinite;
}

#avila-site .ah-hero__exit {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 14svh;
  background: var(--ah-paper);
  transform:
    translateY(
      calc(
        (1 - var(--ah-hero-progress)) * 100%
      )
    );
  transform-origin: bottom;
}

@keyframes ah-home-hero-show {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ah-home-hero-arrow {
  0%,
  100% {
    opacity: 0.55;
    transform:
      translateY(-7px)
      rotate(45deg);
  }

  50% {
    opacity: 1;
    transform:
      translateY(1px)
      rotate(45deg);
  }
}

@media (max-width: 920px) {
  #avila-site .ah-hero {
    height: 112svh;
  }

  #avila-site .ah-hero__sticky {
    min-height: 650px;
  }

  #avila-site .ah-hero__content {
    padding:
      92px
      24px
      72px;
  }

  #avila-site .ah-hero__center {
    transform: translateY(14px);
  }

  #avila-site .ah-hero__logo {
    width: clamp(285px, 46vw, 390px);
  }

  #avila-site
  .ah-hero__title
  span:first-child {
    font-size: clamp(2.1rem, 5.3vw, 3rem);
  }

  #avila-site
  .ah-hero__title
  span:last-child {
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  }

  #avila-site .ah-hero__cta {
    width: min(330px, 76vw);
    min-height: 52px;
  }
}

@media (max-width: 680px) {
  #avila-site .ah-hero {
    height: 108svh;
  }

  #avila-site .ah-hero__sticky {
    min-height: 620px;
  }

  #avila-site .ah-hero__media {
    object-position: 52% center;
  }

  #avila-site .ah-hero__content {
    grid-template-rows: 1fr auto;
    padding:
      78px
      18px
      58px;
  }

  #avila-site .ah-hero__center {
    width: 100%;
    transform: translateY(7px);
  }

  #avila-site .ah-hero__logo {
    width: clamp(215px, 64vw, 275px);
  }

  #avila-site .ah-hero__title {
    width: 100%;
    margin-top: 22px;
  }

  #avila-site
  .ah-hero__title
  span:first-child {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.03;
  }

  #avila-site
  .ah-hero__title
  span:last-child {
    max-width: 330px;
    margin:
      9px
      auto
      0;
    font-size: clamp(0.96rem, 4.6vw, 1.28rem);
    line-height: 1.1;
  }

  #avila-site .ah-hero__cta {
    width: min(280px, calc(100vw - 48px));
    min-height: 48px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  #avila-site .ah-hero__scroll {
    right: 16px;
    bottom: 22px;
    width: 28px;
    height: 28px;
  }

  #avila-site .ah-hero__scroll span {
    width: 15px;
    height: 15px;
    border-width: 0 3px 3px 0;
  }
}

@media (max-width: 420px) {
  #avila-site .ah-hero__content {
    padding-top: 72px;
  }

  #avila-site .ah-hero__logo {
    width: min(225px, 65vw);
  }

  #avila-site
  .ah-hero__title
  span:first-child {
    font-size: clamp(1.55rem, 7.7vw, 1.95rem);
  }

  #avila-site
  .ah-hero__title
  span:last-child {
    font-size: clamp(0.88rem, 4.2vw, 1.08rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  #avila-site .ah-hero__logo,
  #avila-site .ah-hero__title span,
  #avila-site .ah-hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }

  #avila-site .ah-hero__scroll span {
    animation: none;
  }
}

#avila-site .ah-presence {
  overflow: hidden;
  color: var(--ah-ink);
  background: #eeefef;
}

#avila-site .ah-presence__stage::before {
  background-color: #eeefef;
  background-image:
    radial-gradient(
      circle at 37% 52%,
      rgba(186, 169, 99, 0.1),
      transparent 36%
    );
}

#avila-site .ah-map__world {
  z-index: 0;
  opacity: 0.2;
  filter:
    brightness(0)
    saturate(100%)
    invert(17%)
    sepia(13%)
    saturate(1215%)
    hue-rotate(115deg)
    brightness(91%)
    contrast(90%);
  mix-blend-mode: multiply;
}

#avila-site .ah-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.24);
  -webkit-mask:
    url("https://avilaholdingsgroup.com/wp-content/uploads/2026/07/9e61900e83200acea15bba4825fd0227.png")
    center / contain no-repeat;
  mask:
    url("https://avilaholdingsgroup.com/wp-content/uploads/2026/07/9e61900e83200acea15bba4825fd0227.png")
    center / contain no-repeat;
}

#avila-site .ah-presence .ah-section-tag--light {
  color: #9e8c45;
}

#avila-site .ah-pin {
  z-index: 2;
  width: 24px;
  height: 24px;
  color: var(--ah-gold);
}

#avila-site .ah-pin > i {
  inset: 5px;
  border-width: 1.5px;
  box-shadow:
    0 0 0 3px rgba(238, 239, 239, 0.72),
    0 0 0 4px rgba(184, 164, 85, 0.42);
}

#avila-site .ah-pin::before,
#avila-site .ah-pin::after {
  border-width: 1.5px;
}

#avila-site .ah-pin > span {
  color: rgba(23, 44, 40, 0.9);
  font-size: clamp(0.58rem, 0.55vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

#avila-site .ah-pin.is-active > span {
  color: #917d32;
}

#avila-site
.ah-location-card__top
h3[data-ah-location-title] {
  min-width: 0;
  padding: 7px 10px;
  overflow: hidden;
  font-size: var(
    --ah-location-title-size,
    clamp(0.9rem, 1vw, 1.08rem)
  ) !important;
  letter-spacing: -0.015em !important;
  line-height: 1.2 !important;
  text-overflow: clip;
  white-space: nowrap;
}

#avila-site
.ah-pin[data-ah-location="miami"]
> span,
#avila-site
.ah-pin[data-ah-location="venezuela"]
> span {
  left: calc(100% + 10px);
  top: 3px;
  transform: none;
}

#avila-site
.ah-pin[data-ah-location="colombia"]
> span,
#avila-site
.ah-pin[data-ah-location="spain"]
> span,
#avila-site
.ah-pin[data-ah-location="brazil"]
> span {
  left: auto;
  right: calc(100% + 10px);
  top: 3px;
  transform: none;
}

@media (min-width: 1181px) {
  #avila-site .ah-presence {
    height: 100svh;
    min-height: 760px;
  }

  #avila-site .ah-map {
    left: -7vw;
    bottom: -20vh;
    width: 150vw;
    max-width: none;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  #avila-site .ah-presence {
    height: 100svh;
    min-height: 760px;
  }

  #avila-site .ah-map {
    left: -8vw;
    bottom: 1vh;
    width: 132vw;
    max-width: none;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
  #avila-site .ah-presence {
    padding-bottom: 72px;
  }

  #avila-site .ah-map {
    width: 160%;
    max-width: none;
    margin-top: 52px;
    margin-left: -8%;
  }
}

@media (max-width: 920px) {
  #avila-site
  .ah-location-card[aria-hidden="true"] {
    display: none;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  #avila-site .ah-presence {
    padding-bottom: 64px;
  }

  #avila-site .ah-map {
    width: 190vw;
    max-width: none;
    margin-top: 48px;
    margin-left: -10vw;
  }

  #avila-site .ah-pin > span {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  #avila-site
  .ah-pin[data-ah-location="colombia"] {
    left: 21.1% !important;
    top: 55.6% !important;
  }

  #avila-site
  .ah-pin[data-ah-location="venezuela"] {
    left: 25.9% !important;
    top: 50.6% !important;
  }
}
