/* assets/css/default-link-button.css */
.default-link-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 0 0;
  color: #0b0b0b;
  font-family: var(--secondary);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 200ms ease,
    color 200ms ease;
}

.default-link-button__text {
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.default-link-button__text::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.default-link-button:hover {
  opacity: 0.88;
}

.default-link-button:hover .default-link-button__text::after {
  transform: scaleX(1);
}

.default-link-button__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid #0b0b0b;
  border-radius: 50%;
  transform: translateY(-1px);
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 240ms ease;
}

.default-link-button__icon-track {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  color: inherit;
}

.default-link-button__icon-track svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
}

.default-link-button__icon-track svg:first-child {
  transform: translateX(0);
}

.default-link-button__icon-track svg:last-child {
  transform: translateX(-30px);
}

.default-link-button:hover .default-link-button__icon {
  background-color: #0b0b0b;
  color: #fff;
  transform: translateY(-1px) scale(1.06);
}

.default-link-button:hover .default-link-button__icon-track svg:first-child {
  animation: defaultLinkButtonArrowOut 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.default-link-button:hover .default-link-button__icon-track svg:last-child {
  animation: defaultLinkButtonArrowIn 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes defaultLinkButtonArrowOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}

@keyframes defaultLinkButtonArrowIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .default-link-button,
  .default-link-button__text::after,
  .default-link-button__icon {
    transition: none;
  }

  .default-link-button:hover .default-link-button__icon-track svg:first-child,
  .default-link-button:hover .default-link-button__icon-track svg:last-child {
    animation: none;
  }
}

/* assets/css/reveal-image.css */
.reveal-image {
    overflow: hidden;
    width: 100%;
}

.reveal-image__mask {
    overflow: hidden;
    width: 100%;
}

.reveal-image__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* assets/css/registration-form.css */
.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.registration-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgb(2 6 23 / 0.78);
  backdrop-filter: blur(8px);
}

.registration-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(52rem, 100%);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  border: 1px solid rgb(255 245 234 / 0.14);
  border-radius: 1rem;
  background: #0a3432;
  box-shadow: 0 2rem 6rem rgb(0 0 0 / 0.48);
  overscroll-behavior: contain;
}

.registration-modal__close {
  position: sticky;
  top: 1rem;
  z-index: 3;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin: 1rem 1rem -3.75rem auto;
  place-items: center;
  border: 1px solid rgb(255 245 234 / 0.18);
  border-radius: 50%;
  background: #fff5ea;
  color: #0a3432;
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 0.24);
  transition: background 180ms ease, transform 180ms ease;
}

.registration-modal__close:hover {
  background: #d7b56d;
  transform: rotate(4deg);
}

.registration-modal__close:focus-visible {
  outline: 3px solid #d7b56d;
  outline-offset: 3px;
}

.registration-modal .registration-interest {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.registration-interest {
  background: #0a3432;
  color: #f8fafc;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 3vw, 2rem);
}

.registration-interest__container {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.registration-interest__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.registration-interest__form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  border: 1px solid rgb(248 250 252 / 0.12);
  border-radius: 0.75rem;
  background: rgb(6 43 41 / 0.82);
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.28);
}

.registration-interest__fields {
  display: grid;
  gap: 1rem;
}

.registration-interest__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.registration-interest__field {
  position: relative;
  display: block;
}

.registration-interest__field span {
  position: absolute;
  top: 50%;
  left: 0.78rem;
  z-index: 1;
  max-width: calc(100% - 1.56rem);
  padding: 0 0.22rem;
  background: transparent;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left center;
  transition:
    color 180ms ease,
    font-size 180ms ease,
    top 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.registration-interest__field input,
.registration-interest__field select {
  min-height: 3.15rem;
  width: 100%;
  border: 1px solid rgb(203 213 225 / 0.2);
  border-radius: 0.5rem;
  background: rgb(4 35 34 / 0.72);
  color: #f8fafc;
  font: inherit;
  outline: none;
  padding: 1rem 0.9rem 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.registration-interest__field select {
  appearance: none;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 2.7rem;
}

.registration-interest__field select option {
  background: #082b29;
  color: #f8fafc;
}

.registration-interest__field select option:disabled {
  color: #94a3b8;
}

.registration-interest__field--select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #cbd5e1;
  border-bottom: 2px solid #cbd5e1;
  pointer-events: none;
  transform: translateY(-62%) rotate(45deg);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.registration-interest__field--select:focus-within::after {
  border-color: #d7b56d;
  transform: translateY(-35%) rotate(225deg);
}

.registration-interest__field input::placeholder {
  color: transparent;
}

.registration-interest__field select:has(option[value=""]:checked) {
  color: transparent;
}

.registration-interest__field input:focus,
.registration-interest__field select:focus {
  border-color: #7eb1ad;
  background: rgb(4 35 34 / 0.9);
  box-shadow: 0 0 0 3px rgb(126 177 173 / 0.18);
}

.registration-interest__field:focus-within span,
.registration-interest__field:has(input:not(:placeholder-shown)) span,
.registration-interest__field:has(select option:not([value=""]):checked) span {
  top: 0;
  background: #082b29;
  color: #d7eae8;
  font-size: 0.72rem;
  transform: translateY(-50%);
}

.registration-interest__form[data-submit-attempted="true"] .registration-interest__field:has(input:invalid) input,
.registration-interest__form[data-submit-attempted="true"] .registration-interest__field:has(select:invalid) select {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgb(248 113 113 / 0.16);
}

.registration-interest__form[data-submit-attempted="true"] .registration-interest__field:has(input:invalid) span,
.registration-interest__form[data-submit-attempted="true"] .registration-interest__field:has(select:invalid) span {
  color: #fecaca;
}

.registration-interest__field:focus-within select,
.registration-interest__field select:has(option:not([value=""]):checked) {
  color: #f8fafc;
}

.registration-interest__checks {
  display: grid;
  gap: 0;
  border: 1px solid rgb(126 177 173 / 0.3);
  border-radius: 0.75rem;
  background: #0d4643;
  overflow: hidden;
}

.registration-interest__check {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: #e0f2f1;
  font-size: 0.875rem;
  font-weight: 750;
  line-height: 1.55;
  padding: 0.95rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.registration-interest__check + .registration-interest__check {
  border-top: 1px solid rgb(215 234 232 / 0.16);
}

.registration-interest__check:hover {
  background: #125a56;
  color: #ffffff;
}

.registration-interest__check input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.18rem 0 0;
  accent-color: #d7b56d;
}

.registration-interest__captcha-group {
  display: grid;
  gap: 0.55rem;
}

.registration-interest__captcha-shell {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 4.875rem;
  min-width: min(100%, 19rem);
  border-radius: 0.5rem;
}

.registration-interest__captcha {
  min-height: 4.875rem;
}

.registration-interest__captcha:empty {
  display: none;
}

.registration-interest__captcha-loading {
  color: #94a3b8;
  font-size: 0.82rem;
}

.registration-interest__captcha--loaded {
  display: block;
  min-width: 0;
}

.registration-interest__captcha-error {
  margin: 0;
  color: #fecaca;
  font-size: 0.82rem;
  line-height: 1.45;
}

.registration-interest__submit {
  color: #fff5ea;
  padding-top: 0;
}

.registration-interest__submit .default-link-button__icon {
  border-color: currentColor;
}

.registration-interest__submit:hover .default-link-button__icon {
  background: #fff5ea;
  color: #0a3432;
}

.registration-interest__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
}

.registration-interest__error {
  margin: 0;
  border-radius: 0.5rem;
  background: rgb(239 68 68 / 0.14);
  color: #fecaca;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0.85rem 1rem;
}

.registration-interest__success {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  border-radius: 0.5rem;
  background: rgb(22 163 74 / 0.14);
  color: #bbf7d0;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0.85rem 1rem;
}

.registration-interest__success svg {
  flex: 0 0 auto;
  margin-top: 0.12rem;
}

.registration-interest__reference {
  display: block;
  margin-top: 0.35rem;
  color: inherit;
  font-size: 0.78rem;
  opacity: 0.82;
}

.registration-interest__success .registration-interest__reference {
  margin-left: auto;
}

.registration-interest__reference code {
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

@media (min-width: 760px) {
  .registration-interest__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-interest__field--wide {
    grid-column: 1 / -1;
  }
}

/* assets/css/entry-disclaimer-modal.css */
.entry-disclaimer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1.25rem;
}

html.entry-disclaimer-required,
html.entry-disclaimer-required body {
  overflow: hidden;
}

html.entry-disclaimer-required .entry-disclaimer[hidden] {
  display: grid !important;
}

.entry-disclaimer__scrim {
  position: absolute;
  inset: 0;
  background: rgb(2 6 23 / 0.64);
}

.entry-disclaimer__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 55rem);
  max-height: min(88vh, 48rem);
  overflow: auto;
  border-radius: 1.25rem;
  background: #f8fafc;
  color: #111827;
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.42);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.entry-disclaimer__eyebrow {
  margin-bottom: 0.8rem;
  font-family: inherit;
}

.entry-disclaimer__dialog h2 {
  max-width: 30rem;
  margin: 0;
  color: #111827;
  font-size: clamp(2.094rem, 5vw, 3.14rem);
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  letter-spacing: 0;
}

.entry-disclaimer__content {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

#root .entry-disclaimer__dialog .entry-disclaimer__content p {
  margin: 0;
  color: #374151;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
}

.entry-disclaimer__check {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.45rem;
  border: 1px solid rgb(17 24 39 / 0.12);
  border-radius: 0.75rem;
  background: #fff;
  color: #1f2937;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 0.95rem;
}

.entry-disclaimer__check input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.18rem 0 0;
  accent-color: #0a3432;
}

.entry-disclaimer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.35rem;
}

.entry-disclaimer__button {
  min-height: 3rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 1.2rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.entry-disclaimer__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.entry-disclaimer__button--secondary {
  border: 1px solid rgb(17 24 39 / 0.18);
  background: transparent;
  color: #111827;
}

.entry-disclaimer__button--secondary:hover {
  border-color: #111827;
}

.entry-disclaimer__button--primary {
  background: #0a3432;
  color: #fff;
}

.entry-disclaimer__button--primary:hover:not(:disabled) {
  background: #0d4643;
}

.entry-disclaimer__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@media (max-width: 520px) {
  .entry-disclaimer {
    padding: 0.75rem;
  }

  .entry-disclaimer__dialog {
    border-radius: 1rem;
    max-height: 92vh;
  }

  .entry-disclaimer__actions {
    justify-content: flex-end;
  }

  .entry-disclaimer__button {
    width: auto;
  }
}

/* home/home-background-video.css */
.home-page {
  position: relative;
  isolation: isolate;
}

.home-background-video {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #071126 url("../images/hero-poster.webp") center / cover no-repeat;
  pointer-events: none;
}

.home-background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.home-page > main {
  position: relative;
  z-index: 2;
}

.home-page > .site-footer {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .home-background-video video {
    transform: none;
  }
}

/* home/hero/hero-section.css */
.home-hero {
  min-height: 100vh;
  min-height: 100svh;
  background: transparent;
  color: #ffffff;
}

.home-hero__shell {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-height: 100vh;
  min-height: 100svh;
  background: transparent;
  isolation: isolate;
  overflow: hidden;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.54) 0%, rgb(0 0 0 / 0.24) 48%, rgb(0 0 0 / 0.44) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.18) 0%, rgb(0 0 0 / 0.34) 45%, rgb(0 0 0 / 0.58) 100%);
}

.home-hero__scroll-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.home-hero__content {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  padding: clamp(1rem, 3vh, 2rem) clamp(1.7rem, 3.2vw, 2rem) 8rem;
  text-align: left;
}

.home-hero h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.617rem, 6.4vw, 7.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.home-hero h1 span {
  white-space: nowrap;
}

.home-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  max-width: 50rem;
}

.home-hero__intro p {
  margin: 0;
  color: rgb(255 255 255 / 0.9);
  font-family: var(--secondary);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.618;
}

.home-hero__cta {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--secondary);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-hero__cta:hover {
  opacity: 1;
}

.home-hero__cta-icon {
  position: relative;
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #ffffff;
  color: #071126;
}

.home-hero__cta-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__cta-arrow--current {
  transform: translate(-50%, -50%);
}

.home-hero__cta-arrow--incoming {
  transform: translate(-200%, 100%);
}

.home-hero__cta:hover .home-hero__cta-arrow--current {
  transform: translate(100%, -200%);
}

.home-hero__cta:hover .home-hero__cta-arrow--incoming {
  transform: translate(-50%, -50%);
}

.home-hero__footer {
  position: absolute;
  right: clamp(1.7rem, 3.2vw, 2rem);
  bottom: clamp(1.2rem, 2.5vh, 1.75rem);
  left: clamp(1.7rem, 3.2vw, 2rem);
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.home-hero__clock {
  color: rgb(255 255 255 / 0.82);
  font-family: var(--secondary);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .home-hero__content {
    width: 100%;
    padding: 3rem 1rem 8rem;
  }

  .home-hero h1 {
    max-width: 100%;
  }

  .home-hero h1 span {
    white-space: normal;
  }

  .home-hero__intro {
    max-width: 34rem;
  }

  .home-hero__footer {
    right: 1rem;
    bottom: 1.2rem;
    left: 1rem;
  }
}

@media (max-width: 430px) {
  .home-hero__clock {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__scroll-shade {
    will-change: auto;
  }

  .home-hero__cta-arrow {
    transition: none;
  }

  .home-hero__cta:hover .home-hero__cta-arrow--current {
    transform: translate(-50%, -50%);
  }

  .home-hero__cta:hover .home-hero__cta-arrow--incoming {
    transform: translate(-200%, 100%);
  }
}

/* home/about/about-section.css */
.about-section {
  background: #fff5ea;
  color: #111827;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1rem, 3vw, 2rem);
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.about-section__eyebrow {
  margin-bottom: 1.1rem;
}

.about-section .section-heading {
  margin: 0;
  color: #111111;
}

.about-section__copy > p:not(.about-section__eyebrow, .about-section__lead) {
  margin: 1.2rem 0 0;
  color: rgb(17 24 39 / 0.7);
  font-family: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;
}

.about-section__signoff {
  display: grid;
  gap: 0.35rem;
  width: fit-content;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgb(17 24 39 / 0.22);
  padding-top: 1.15rem;
}

.about-section__signoff strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.about-section__signoff span {
  color: rgb(17 24 39 / 0.62);
  font-family: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.about-section__image {
  width: 100%;
  height: clamp(34rem, 54vw, 48rem);
  overflow: hidden;
  border-radius: 0.5rem;
  background: #d5c4ad;
}

.about-section__image .reveal-image__mask,
.about-section__image .reveal-image__image {
  width: 100%;
  height: 100%;
}

.about-section__image .reveal-image__image {
  object-position: center;
}

@media (max-width: 900px) {
  .about-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about-section__copy {
    max-width: 42rem;
  }

  .about-section__image {
    height: clamp(30rem, 92vw, 42rem);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding-inline: 0.75rem;
  }

  .about-section__image {
    height: 28rem;
  }
}

/* home/promoter/promoter-section.css */
.promoter-section {
  background: #fff5ea;
  color: #111827;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1rem, 3vw, 2rem);
}

.promoter-section__inner {
  display: grid;
  grid-template-columns: minmax(28rem, 1fr) minmax(0, 0.92fr);
  gap: 5rem;
  align-items: center;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.promoter-section__eyebrow {
  margin-bottom: 1.1rem;
}

.promoter-section .section-heading {
  margin: 0;
  color: #111111;
}

.promoter-section__lead {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  color: #111827;
  font-family: var(--secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 600;
  line-height: 1.55;
}

.promoter-section__copy > p:not(.promoter-section__eyebrow, .promoter-section__lead) {
  margin: 1.2rem 0 0;
  color: rgb(17 24 39 / 0.7);
  font-family: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;
}

.promoter-section__signoff {
  display: grid;
  gap: 0.35rem;
  width: fit-content;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgb(17 24 39 / 0.22);
  padding-top: 1.15rem;
}

.promoter-section__signoff strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.promoter-section__signoff span {
  color: rgb(17 24 39 / 0.62);
  font-family: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.promoter-section__image {
  width: 100%;
  height: clamp(34rem, 54vw, 48rem);
  overflow: hidden;
  border-radius: 0.5rem;
  background: #d5c4ad;
}

.promoter-section__image .reveal-image__mask,
.promoter-section__image .reveal-image__image {
  width: 100%;
  height: 100%;
}

.promoter-section__image .reveal-image__image {
  object-position: center;
}

@media (max-width: 900px) {
  .promoter-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .promoter-section__copy {
    max-width: 42rem;
  }

  .promoter-section__image {
    height: clamp(30rem, 92vw, 42rem);
  }
}

@media (max-width: 640px) {
  .promoter-section {
    padding-inline: 0.75rem;
  }

  .promoter-section__image {
    height: 28rem;
  }
}

/* home/fund-details/fund-details-section.css */
.fund-details-section {
  background: #fff5ea;
  color: #111827;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1rem, 3vw, 2rem);
}

.fund-details-section__inner {
  width: min(100%, 92rem);
  margin: 0 auto;
}

.fund-details-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.46fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.fund-details-section__eyebrow {
  margin-bottom: 0.9rem;
}

.fund-details-section .section-heading {
  margin: 0;
  color: #111111;
}

.fund-details-section__intro {
  max-width: 30rem;
  margin: 0;
  color: rgb(17 24 39 / 0.68);
  font-family: var(--secondary);
  font-size: 1rem;
  line-height: 1.68;
}

.fund-details-section__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgb(255 245 234 / 0.12);
  border-radius: 0.75rem;
  background: #0a3422;
  box-shadow: 0 1.5rem 4rem rgb(10 52 50 / 0.16);
}

.fund-details-section__metric {
  display: grid;
  min-height: 12rem;
  align-content: end;
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.fund-details-section__metric-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid rgb(215 181 109 / 0.4);
  border-radius: 50%;
  background: rgb(215 181 109 / 0.08);
  color: #d7b56d;
}

.fund-details-section__metric-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.fund-details-section__metric + .fund-details-section__metric {
  border-left: 1px solid rgb(255 245 234 / 0.14);
}

.fund-details-section__metric strong {
  color: #fff5ea;
  font-family: var(--heading);
  font-size: clamp(2.094rem, 4vw, 3.388rem);
  font-weight: 500;
  line-height: 1;
}

.fund-details-section__metric-label {
  margin-top: 0.8rem;
  color: #d7b56d;
  font-family: var(--secondary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.fund-details-section__table-card {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgb(215 181 109 / 0.35);
  border-radius: 0.75rem;
  background: #0a3422;
  box-shadow: none;
}

.fund-details-section__table-card h3 {
  margin: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  color: #fffaf1;
  font-size: clamp(1.618rem, 3vw, 2.094rem);
  font-weight: 500;
  line-height: 1.2;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.fund-details-section table {
  width: 100%;
  border-collapse: collapse;
}

.fund-details-section caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.fund-details-section tr:not(:last-child) {
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.fund-details-section th,
.fund-details-section td {
  padding: 1rem clamp(1.4rem, 3vw, 2rem);
  text-align: left;
  vertical-align: middle;
}

.fund-details-section th {
  width: 34%;
  color: #d7b56d;
  font-family: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fund-details-section td {
  color: rgb(255 250 241 / 0.82);
  font-family: var(--secondary);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .fund-details-section__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

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

  .fund-details-section__metric:nth-child(3) {
    border-left: 0;
  }

  .fund-details-section__metric:nth-child(n + 3) {
    border-top: 1px solid rgb(255 245 234 / 0.14);
  }
}

@media (max-width: 560px) {
  .fund-details-section {
    padding-inline: 0.75rem;
  }

  .fund-details-section__metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .fund-details-section__metric {
    min-height: 9rem;
  }

  .fund-details-section__metric + .fund-details-section__metric {
    border-top: 1px solid rgb(255 245 234 / 0.14);
    border-left: 0;
  }

  .fund-details-section tr {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 1.2rem;
  }

  .fund-details-section th,
  .fund-details-section td {
    width: auto;
    padding: 0;
  }
}

/* home/fund-structure-map/fund-structure-map.css */
.fund-structure-map {
  overflow: hidden;
  background: #fff5ea;
  color: #10201f;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
}

.fund-structure-map__inner {
  width: min(100%, 92rem);
  margin: 0 auto;
}

.fund-structure-map__image {
  position: relative;
  margin: 0;
}

.fund-structure-map__image img {
  display: block;
  width: 100%;
  height: auto;
}

.fund-structure-map__enlarge {
  display: none;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.image-lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.9);
  backdrop-filter: blur(6px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(92svh, 60rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 0.8rem;
  background: #111;
  color: #fff;
}

.image-lightbox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem;
  background: rgb(17 17 17 / 0.96);
}

.image-lightbox__zoom-controls {
  display: flex;
  gap: 0.4rem;
}

.image-lightbox__toolbar button {
  min-width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 0.4rem;
  background: #fff5ea;
  color: #0a3422;
  font: 700 1rem/1 var(--secondary);
}

.image-lightbox__zoom-controls [data-zoom-reset] {
  min-width: 4.5rem;
  font-size: 0.75rem;
}

.image-lightbox__close {
  font-size: 1.5rem !important;
}

.image-lightbox__toolbar button:focus-visible,
.fund-structure-map__enlarge:focus-visible {
  outline: 3px solid #d7b56d;
  outline-offset: 2px;
}

.image-lightbox__viewport {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  align-items: center;
  justify-items: center;
  place-items: center;
  touch-action: none;
  cursor: grab;
}

.image-lightbox__viewport:active {
  cursor: grabbing;
}

.image-lightbox__viewport img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  transform-origin: center;
  user-select: none;
  will-change: transform;
}

.image-lightbox__hint {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 1rem 0.7rem;
  background: #111;
  color: rgb(255 255 255 / 0.72);
  font: 500 0.72rem/1.4 var(--secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .fund-structure-map__image {
    cursor: zoom-in;
  }

  .fund-structure-map__enlarge {
    position: absolute;
    display: flex;
    right: 0.65rem;
    bottom: 0.65rem;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgb(255 255 255 / 0.35);
    border-radius: 999px;
    background: rgb(10 52 34 / 0.94);
    color: #fff;
    font: 700 0.7rem/1 var(--secondary);
    letter-spacing: 0.04em;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 0.4rem 1.2rem rgb(0 0 0 / 0.24);
    text-transform: uppercase;
  }

  .fund-structure-map__enlarge span {
    font-size: 1rem;
  }
}

@media (max-width: 620px) {
  .fund-structure-map {
    padding-inline: 0.75rem;
  }

}

/* home/why-choose-us/why-choose-us-section.css */
.why-choose-us {
  background: #fff5ea;
  color: #10201f;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1rem, 3vw, 2rem);
}

.why-choose-us__inner {
  width: min(100%, 92rem);
  margin: 0 auto;
}

.why-choose-us__eyebrow {
  margin-bottom: 1rem;
}

.why-choose-us__statement {
  max-width: 23ch;
  margin: 0;
  color: #111111;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  font-weight: 500;
  line-height: 1.04;
}

.why-choose-us__summary {
  max-width: 64rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  border-left: 3px solid #d7b56d;
  color: rgb(16 32 31 / 0.82);
  font-family: var(--secondary);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.62;
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
}

.why-choose-us__advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.why-choose-us__advantage {
  position: relative;
  display: flex;
  min-height: clamp(24rem, 34vw, 30rem);
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgb(215 181 109 / 0.2);
  background: #0a3422;
  color: #fffaf1;
  padding: clamp(1.75rem, 3vw, 2.6rem);
  box-shadow: 0 1.2rem 2.8rem rgb(10 52 50 / 0.12);
}

.why-choose-us__advantage::after {
  position: absolute;
  right: -20%;
  bottom: -38%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 50%;
  content: "";
}

.why-choose-us__advantage-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(215 181 109 / 0.72);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.06);
  color: #d7b56d;
}

.why-choose-us__advantage-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.why-choose-us__advantage h3 {
  max-width: 14ch;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  color: #ffffff;
  font-family: var(--heading);
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
}

.why-choose-us__advantage > p {
  position: relative;
  z-index: 1;
  max-width: 31rem;
  margin: 1.6rem 0 0;
  color: rgb(255 250 241 / 0.8);
  font-family: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .why-choose-us__advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-us__advantage:last-child {
    grid-column: 1 / -1;
    min-height: 22rem;
  }
}

@media (max-width: 640px) {
  .why-choose-us {
    padding-inline: 0.75rem;
  }

  .why-choose-us__statement {
    font-size: clamp(2.617rem, 11vw, 3.6rem);
  }

  .why-choose-us__advantages {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-choose-us__advantage,
  .why-choose-us__advantage:last-child {
    grid-column: auto;
    min-height: 22rem;
  }
}

/* home/investment-philosophy/investment-philosophy-section.css */
.investment-philosophy {
  --philosophy-stack-top: clamp(5.5rem, 10vh, 7.5rem);

  background: #fff5ea;
  color: #111827;
  padding: clamp(6rem, 11vw, 10rem) clamp(1rem, 3vw, 2rem);
}

.investment-philosophy__inner {
  width: min(100%, 92rem);
  margin: 0 auto;
}

.investment-philosophy__intro {
  display: grid;
  justify-items: center;
  max-width: 72rem;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.investment-philosophy__eyebrow {
  margin-bottom: 1.1rem;
  border: 1px solid rgb(17 24 39 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.36);
  padding: 0.45rem 0.8rem;
}

.investment-philosophy__eyebrow::before {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #d7b56d;
  content: "";
}

.investment-philosophy__statement {
  max-width: 50rem;
  margin: 0;
  color: #111111;
  font-size: clamp(2.617rem, 6vw, 3.388rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.investment-philosophy__cards {
  position: relative;
  width: min(100%, 72rem);
  height: 430svh;
  margin: 0 auto;
}

.investment-philosophy__stage {
  position: sticky;
  top: var(--philosophy-stack-top);
  height: min(49rem, calc(100svh - var(--philosophy-stack-top) - 1.5rem));
  min-height: 36rem;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.investment-philosophy__card {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: #0a3432;
  backface-visibility: hidden;
  will-change: transform;
}

.investment-philosophy__card:nth-child(1) {
  z-index: 1;
}

.investment-philosophy__card:not(:first-child) {
  visibility: hidden;
}

.investment-philosophy__card:nth-child(2) {
  z-index: 2;
}

.investment-philosophy__card:nth-child(3) {
  z-index: 3;
}

.investment-philosophy__card:nth-child(4) {
  z-index: 4;
}

.investment-philosophy__card:nth-child(5) {
  z-index: 5;
}

.investment-philosophy__card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(4 10 25 / 0.14) 0%, rgb(4 10 25 / 0.08) 36%, rgb(4 10 25 / 0.72) 100%),
    linear-gradient(90deg, rgb(4 10 25 / 0.2) 0%, transparent 65%);
  content: "";
  pointer-events: none;
}

.investment-philosophy__card-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.investment-philosophy__card:hover .investment-philosophy__card-image {
  transform: scale(1.025);
}

.investment-philosophy__card-topline {
  position: absolute;
  top: clamp(1rem, 2.5vw, 2rem);
  left: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  gap: 0.55rem;
}

.investment-philosophy__card-topline span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: 999px;
  background: #0a3422;
  color: #ffffff;
  font-family: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.investment-philosophy__card-topline span:first-child {
  border-color: rgb(215 181 109 / 0.62);
  background: #d7b56d;
  color: #0a3432;
}

.investment-philosophy__card-content {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  left: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(21rem, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 0.85rem;
  background: #0a3422;
  color: #ffffff;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 0.2);
  backdrop-filter: blur(16px);
}

.investment-philosophy__card-heading > span {
  display: block;
  margin-bottom: 0.8rem;
  color: #d7b56d;
  font-family: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.investment-philosophy__card h3 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading);
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.investment-philosophy__description {
  display: grid;
  gap: 0.8rem;
}

.investment-philosophy__description p {
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-family: var(--secondary);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .investment-philosophy {
    --philosophy-stack-top: 5.5rem;
  }

  .investment-philosophy__card {
    min-height: 0;
  }

  .investment-philosophy__card-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .investment-philosophy__card h3 {
    max-width: 24ch;
  }
}

@media (max-width: 640px) {
  .investment-philosophy {
    --philosophy-stack-top: 4.75rem;

    padding-inline: 0.75rem;
  }

  .investment-philosophy__intro {
    margin-bottom: 3.5rem;
  }

  .investment-philosophy__statement {
    font-size: clamp(2.617rem, 12vw, 3.75rem);
  }

  .investment-philosophy__cards {
    height: 450svh;
  }

  .investment-philosophy__stage {
    height: calc(100svh - var(--philosophy-stack-top) - 1rem);
    min-height: 36rem;
  }

  .investment-philosophy__card {
    border-radius: 1rem;
  }

  .investment-philosophy__card-content {
    max-height: calc(100% - 5.5rem);
    overflow-y: auto;
    padding: 1.25rem;
  }

  .investment-philosophy__card h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .investment-philosophy__description p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investment-philosophy__cards {
    height: auto;
  }

  .investment-philosophy__stage {
    position: static;
    display: grid;
    height: auto;
    min-height: 0;
    gap: 1.5rem;
    overflow: visible;
    box-shadow: none;
  }

  .investment-philosophy__card {
    position: relative;
    min-height: clamp(36rem, 76svh, 49rem);
    transform: none;
    will-change: auto;
  }

  .investment-philosophy__card-image {
    transition: none;
  }
}

/* home/team/team-section.css */
.team-section {
  background: #fff5ea;
  color: #111111;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.team-section__inner {
  width: min(100%, 92rem);
  margin: 0 auto;
}

.team-section__eyebrow {
  margin-bottom: 0.7rem;
}

.team-section .section-heading {
  max-width: 30rem;
  margin: 0 0 clamp(2rem, 5vw, 3.6rem);
  color: #111111;
}

.team-card__portrait {
  overflow: hidden;
  background-color: #d9c09b;
}

.team-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.45rem);
  margin-top: clamp(2rem, 5vw, 3.2rem);
}

.team-group {
  margin-top: clamp(4.5rem, 9vw, 7rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgb(17 24 39 / 0.18);
}

.team-group__heading {
  margin: 0;
  color: #111827;
  font-family: var(--heading);
  font-size: var(--section-heading-size);
  font-weight: 500;
  line-height: 1.2;
}

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

.team-card {
  display: grid;
  grid-template-rows: minmax(22rem, 30rem) auto;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #0a3432;
  box-shadow: 0 0.9rem 2.2rem rgb(10 52 50 / 0.1);
}

.team-card__portrait {
  min-height: 0;
}

.team-card__label {
  display: grid;
  align-content: start;
  background: #0a3422;
  color: #fff5ea;
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
}

.team-card__label h3 {
  margin: 0;
  color: #fff5ea;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.team-card__role {
  margin: 0.7rem 0 0;
  color: rgb(255 245 234 / 0.82);
  font-family: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.team-card__divider {
  width: 2.4rem;
  height: 2px;
  margin: 1rem 0;
  background: #d7b56d;
}

.team-card__bio {
  margin: 0;
  color: rgb(255 245 234 / 0.72);
  font-family: var(--secondary);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}

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

}

@media (max-width: 640px) {
  .team-section {
    padding-inline: 0.75rem;
  }

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

  .team-group__heading {
    font-size: 2.617rem;
  }

  .team-card {
    grid-template-rows: minmax(28rem, 34rem) auto;
  }
}

/* home/contact-cta/contact-cta-section.css */
.contact-cta-section {
  position: relative;
  z-index: 1;
  margin-bottom: calc(-1 * var(--cta-footer-overlap));
  background: linear-gradient(to bottom,
      #fff5ea 0,
      #fff5ea calc(100% - var(--cta-footer-overlap)),
      transparent calc(100% - var(--cta-footer-overlap)),
      transparent 100%);
}

.contact-cta-section__media {
  position: relative;
  display: grid;
  align-items: end;
  width: min(92rem, calc(100% - 3rem));
  min-height: clamp(35rem, 63vw, 50rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgb(7 13 36 / 0.58) 0%, rgb(7 13 36 / 0.22) 60%, rgb(7 13 36 / 0.4) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.08) 20%, rgb(0 0 0 / 0.48) 100%),
    var(--contact-cta-image, linear-gradient(#24364a, #071126)) center / cover no-repeat;
}

.contact-cta-section__content {
  width: min(40rem, calc(100% - clamp(2rem, 5vw, 4rem)));
  margin: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid rgb(255 245 234 / 0.16);
  border-radius: 0.45rem;
  background: #0a3422;
  color: #fff5ea;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 0.28);
  /* backdrop-filter: blur(12px); */
}

.contact-cta-section__eyebrow {
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.contact-cta-section h2 {
  margin: 0;
  color: #fff5ea;
  font-size: clamp(2.617rem, 4vw, 3.388rem);
  font-weight: 500;
  line-height: 1.2;
}

.contact-cta-section h2 em {
  font-weight: 500;
}

.contact-cta-section h2 span {
  display: block;
}

.contact-cta-section__copy {
  max-width: 31rem;
  margin: clamp(1.4rem, 3vw, 2rem) 0 0;
  color: rgb(255 245 234 / 0.82);
  font-family: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.618;
}

.contact-cta-section__details {
  display: grid;
  gap: 0.42rem;
  margin: 1.25rem 0 0;
  color: rgb(255 245 234 / 0.82);
  font-family: var(--secondary);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-cta-section__details div {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.4rem;
}

.contact-cta-section__details dt {
  color: #d7b56d;
  font-weight: 700;
}

.contact-cta-section__details dd {
  margin: 0;
}

.contact-cta-section__emails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.contact-cta-section__emails a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-cta-section__emails a:hover {
  color: #ffffff;
}

.contact-cta-section__button {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff5ea;
}

.contact-cta-section__button .default-link-button__icon {
  border-color: currentColor;
}

.contact-cta-section__button:hover .default-link-button__icon {
  background: #fff5ea;
  color: #070d24;
}

@media (max-width: 640px) {
  .contact-cta-section__media {
    width: min(100% - 2rem, 92rem);
    min-height: 42rem;
    background-position: 56% center;
  }

  .contact-cta-section__content {
    width: calc(100% - 1.5rem);
    margin: 0.75rem;
    padding: 1.5rem;
  }

  .contact-cta-section h2 {
    font-size: 2.85rem;
  }

  .contact-cta-section__details div {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
