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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

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

/* VARIABLES */
:root {
  --ivory: #F7F5EE;
  --gold: #C1A45D;
  --white: #FFFFFF;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --palette-green: #183D32;
  --palette-ivory: #F7F5EE;
  --palette-gold: #A88A4A;
  --palette-sage: #E7ECE5;
  --palette-graphite: #242E29;
  --palette-gold-dark: #80652F;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  background: #102F27;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 clamp(24px, 4.5vw, 72px);
}

.nav {
  height: 92px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.brand img {
  display: block;
  width: 320px;
  max-height: 85px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .86);
}

.nav-links a {
  padding: 12px 0;
  transition: opacity .2s ease;
}

.nav-links a:hover {
  opacity: .72;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
  background: rgba(0, 0, 0, .08);
}

/* HERO */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #102F27;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -5;
  background:
    linear-gradient(135deg, #173d32 0%, #244e41 48%, #0c251f 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -4;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg,
      rgba(7, 24, 20, .78) 0%,
      rgba(7, 24, 20, .60) 38%,
      rgba(7, 24, 20, .23) 68%,
      rgba(7, 24, 20, .12) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5, 19, 15, .48) 0%,
      rgba(5, 19, 15, .05) 30%,
      rgba(5, 19, 15, .08) 68%,
      rgba(5, 19, 15, .52) 100%);
}

.hero-content {
  height: 100%;
  width: min(1280px, calc(100vw - 72px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-copy {
  width: min(890px, 72vw);
  padding-bottom: 2vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: rgba(255, 255, 255, .88);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1 {
  margin: 0;
  max-width: 980px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 100px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 675px;
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 34px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  background: var(--gold);
  color: #183D32;
  font-size: 13px;
  font-weight: 600;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  font-size: 13px;
  font-weight: 600;
}

.bottom-meta {
  position: absolute;
  left: clamp(24px, 4.5vw, 72px);
  right: clamp(24px, 4.5vw, 72px);
  bottom: 28px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.scroll-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-mark::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.video-note {
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
}

/* SECTIONS */

.about-section {
  background: var(--ivory);
  color: #183D32;
  padding: 88px 0 120px;
}

.about-container {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #183D32;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(24, 61, 50, .15);
}

.about-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: clamp(72px, 7vw, 120px);
  align-items: start;
}

.about-heading h2 {
  max-width: 760px;
  color: #183D32;
  font-family: var(--serif);
  font-size: clamp(58px, 5vw, 80px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.about-copy {
  max-width: 610px;
  padding-top: 6px;
  color: #183D32;
  line-height: 1.7;
}

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

.about-copy p + p {
  margin-top: 34px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(84px, 10vw, 144px);
  border-top: 1px solid rgba(24, 61, 50, .28);
}

.principle {
  min-width: 0;
  padding: 24px 28px 0 0;
}

.principle + .principle {
  padding-left: 28px;
  border-left: 1px solid rgba(24, 61, 50, .22);
}

.principle-number {
  display: block;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .12em;
}

.principle h3 {
  margin-top: 28px;
  color: #183D32;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.principle p {
  max-width: 300px;
  margin-top: 10px;
  color: rgba(24, 61, 50, .78);
  font-size: 15px;
  line-height: 1.6;
}

.solutions-section {
  background: var(--palette-sage);
  color: var(--palette-green);
  padding: clamp(100px, 10vw, 150px) 0;
}

.solutions-container {
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.solutions-intro {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.solutions-section .section-label {
  color: rgba(24, 61, 50, .72);
}

.solutions-section .section-label::before {
  background: var(--palette-gold);
}

.solutions-intro h2 {
  max-width: 820px;
  margin-top: 44px;
  color: var(--palette-green);
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1.01;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.solutions-intro-copy {
  max-width: 510px;
  padding-top: 54px;
  color: rgba(36, 46, 41, .78);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
}

@media (min-width: 1101px) {
  .solutions-intro {
    align-items: end;
  }

  .solutions-intro-copy {
    padding-top: 0;
  }
}

.solutions-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(80px, 9vw, 132px);
}

.solution-card {
  display: flex;
  min-height: clamp(380px, 30vw, 460px);
  height: clamp(380px, 30vw, 460px);
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  border-radius: 0;
}

.solution-card--01,
.solution-card--04,
.solution-card--05 {
  color: var(--palette-ivory);
}

.solution-card--01 {
  grid-column: span 6;
  background: var(--palette-graphite);
}

.solution-card--02,
.solution-card--03,
.solution-card--06 {
  color: var(--palette-graphite);
  background: var(--palette-ivory);
  box-shadow: 0 10px 24px rgba(36, 46, 41, .13);
}

.solution-card--02 {
  grid-column: span 6;
}

.solution-card--03 {
  grid-column: span 6;
}

.solution-card--04 {
  grid-column: span 6;
  background: var(--palette-graphite);
}

.solution-card--05 {
  grid-column: span 6;
  background: var(--palette-graphite);
}

.solution-card--06 {
  grid-column: span 6;
}

.solution-icon {
  width: clamp(54px, 4.5vw, 72px);
  height: clamp(54px, 4.5vw, 72px);
  display: block;
  flex: none;
}

.solution-card--01 .solution-icon,
.solution-card--04 .solution-icon,
.solution-card--05 .solution-icon {
  color: var(--palette-gold);
}

.solution-card--02 .solution-icon,
.solution-card--03 .solution-icon,
.solution-card--06 .solution-icon {
  color: var(--palette-gold-dark);
}

.solution-card-content {
  max-width: 600px;
  margin-top: clamp(28px, 3vw, 40px);
}

.solution-card-content h3 {
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.solution-card-content p {
  max-width: 520px;
  margin-top: 18px;
  color: inherit;
  font-size: 15px;
  line-height: 1.55;
  opacity: .78;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--palette-gold);
  color: var(--palette-green);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  transition: filter .25s ease;
}

.solution-link span {
  color: var(--palette-green);
  transition: transform .25s ease;
}

.solution-link:hover {
  filter: brightness(.92);
}

.solution-card:hover .solution-link span {
  transform: translate(4px, -4px);
}

.solution-card:focus-within {
  outline: 2px solid var(--palette-gold-dark);
  outline-offset: -6px;
}

.solutions-section a:focus-visible {
  outline: 2px solid var(--palette-gold-dark);
  outline-offset: 5px;
}

@media (min-width: 861px) and (max-width: 1100px) {
  .solutions-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card--01,
  .solution-card--02,
  .solution-card--03,
  .solution-card--04,
  .solution-card--05,
  .solution-card--06 {
    grid-column: span 1;
  }
}

.team-section {
  background: var(--ivory);
  color: #183D32;
  padding: clamp(100px, 11vw, 160px) 0;
}

.team-container {
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.team-intro h2 {
  max-width: 820px;
  margin-top: 44px;
  color: #183D32;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  margin-top: clamp(64px, 8vw, 112px);
}

.team-photo-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-content {
  padding-top: 4px;
}

.team-content h3 {
  color: #183D32;
  font-family: var(--serif);
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.02em;
}

.team-role {
  margin-top: 10px;
  color: rgba(24, 61, 50, .72);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.team-bio {
  max-width: 650px;
  margin-top: 38px;
  color: #183D32;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
}

.team-bio p + p {
  margin-top: 24px;
}

.team-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 4px;
  color: #183D32;
  border-bottom: 1px solid var(--palette-gold);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  transition: border-color .22s ease, opacity .22s ease;
}

.team-profile-link span {
  transition: transform .22s ease;
}

.team-profile-link:hover {
  opacity: .78;
  border-color: var(--palette-gold-dark);
}

.team-profile-link:hover span {
  transform: translate(4px, -4px);
}

.team-profile-link:focus-visible {
  outline: 2px solid var(--palette-gold-dark);
  outline-offset: 5px;
}

.team-highlights {
  margin-top: 52px;
  border-top: 1px solid rgba(24, 61, 50, .28);
}

.team-highlight {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(24, 61, 50, .2);
}

.team-highlight span {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .12em;
}

.team-highlight p {
  color: #183D32;
  font-size: 15px;
  line-height: 1.5;
}

.team-network {
  max-width: 650px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 61, 50, .28);
}

.team-network h4 {
  color: #183D32;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.team-network p {
  margin-top: 10px;
  color: rgba(24, 61, 50, .78);
  font-size: 15px;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  background: #102F27;
  background-image: url("../images/capaonia-amazonia.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: clamp(110px, 12vw, 180px) 0;
  isolation: isolate;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 46, 41, .85);
  z-index: -1;
}

.contact-container {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  margin-top: 48px;
}

.contact-main h2 {
  max-width: 900px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.contact-content {
  padding-top: 10px;
}

.contact-content > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 36px;
}

.contact-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  background: var(--gold);
  color: #183D32;
  font-size: 13px;
  font-weight: 600;
  transition: filter .22s ease;
}

.contact-primary:hover {
  filter: brightness(.92);
}

.contact-meta-item a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  padding-bottom: 3px;
  font-size: 14px;
  transition: opacity .22s ease, border-color .22s ease;
}

.contact-meta-item a:hover {
  opacity: .78;
  border-color: rgba(255, 255, 255, .78);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: clamp(96px, 12vw, 168px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.contact-meta-item {
  min-width: 0;
}

.contact-meta-item > span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.contact-meta-item p,
.contact-meta-item > a {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--palette-gold);
  transition: color .22s ease, opacity .22s ease;
}

.contact-socials a:hover {
  color: var(--palette-ivory);
  opacity: .86;
}

.contact-socials svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials a:focus-visible {
  outline: 2px solid var(--palette-gold);
  outline-offset: 5px;
}

/* FOOTER */

/* UTILITIES */

/* RESPONSIVE */
@media (max-width: 860px) {
  .header {
    padding-inline: 20px;
  }

  .nav {
    position: relative;
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 217px;
    max-height: 61px;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 0;
    background: rgba(16, 47, 39, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    z-index: 20;
  }

  .nav.is-open .nav-links a {
    padding: 10px 0;
  }

  .nav.is-open .nav-contact {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    display: inline-flex;
    z-index: 21;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    width: 100%;
    height: 100svh;
    min-height: 100svh;
  }

  @supports (height: 100dvh) {
    .hero {
      height: 100dvh;
      min-height: 100dvh;
    }
  }

  .hero-content {
    width: calc(100% - 40px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 28px;
  }

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

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .13em;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: .98;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 14px;
  }

  .bottom-meta {
    display: none;
  }

  .about-section {
    padding: 84px 0 92px;
  }

  .about-container {
    width: calc(100% - 40px);
  }

  .about-label {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .about-heading h2 {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.02;
  }

  .about-copy {
    max-width: none;
    padding-top: 0;
    font-size: 17px;
    line-height: 1.65;
  }

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

  .about-copy p + p {
    margin-top: 24px;
  }

  .about-principles {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .principle,
  .principle + .principle {
    padding: 22px 0 0;
    border-left: 0;
  }

  .principle h3 {
    margin-top: 18px;
  }

  .principle p {
    max-width: none;
  }

  .solutions-section {
    padding: 84px 0 92px;
  }

  .solutions-container {
    width: calc(100% - 40px);
  }

  .solutions-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .solutions-intro h2 {
    margin-top: 42px;
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.02;
  }

  .solutions-intro-copy {
    max-width: none;
    padding-top: 0;
    font-size: 17px;
    line-height: 1.65;
  }

  .solutions-bento {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .solution-card--01,
  .solution-card--02,
  .solution-card--03,
  .solution-card--04,
  .solution-card--05,
  .solution-card--06 {
    grid-column: 1 / -1;
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 24px;
  }

  .solution-card-content {
    margin-top: 28px;
    padding-top: 0;
  }

  .solution-card-content h3 {
    margin-top: 18px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .solution-card-content p {
    margin-top: 12px;
    font-size: 15px;
  }

  .solution-link {
    margin-top: 28px;
  }

  .team-section {
    padding: 84px 0 92px;
  }

  .team-container {
    width: calc(100% - 40px);
  }

  .team-intro h2 {
    margin-top: 42px;
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.02;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .team-content {
    padding-top: 0;
  }

  .team-content h3 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .team-bio {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
  }

  .team-highlights {
    margin-top: 40px;
  }

  .team-network {
    margin-top: 40px;
  }

  .contact-section {
    padding: 92px 0 96px;
    background-position: center center;
  }

  .contact-container {
    width: calc(100% - 40px);
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .contact-main h2 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: .98;
  }

  .contact-content {
    padding-top: 0;
  }

  .contact-content > p {
    font-size: 17px;
    line-height: 1.65;
  }

  .contact-actions {
    gap: 24px;
    margin-top: 30px;
  }

  .contact-primary {
    width: 100%;
    min-height: 56px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 84px;
    padding-top: 0;
    border-top: 0;
  }

  .contact-meta-item {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .contact-meta-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .primary-link {
    width: auto;
    min-height: 36px;
    background: var(--gold);
    justify-content: flex-start;
    padding: 0 18px;
  }
}

@media (max-width: 520px) and (max-height: 680px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(38px, 9.8vw, 52px);
  }

  .hero-subtitle {
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* PROFILE PAGE */
.profile-page {
  background: var(--ivory);
  color: #183D32;
}

.profile-header {
  position: relative;
  background: var(--ivory);
}

.profile-header .nav {
  grid-template-columns: 230px 1fr auto;
  border-bottom-color: rgba(24, 61, 50, .2);
}

.profile-header .brand img {
  width: 220px;
  max-height: 64px;
}

.profile-header .nav-contact {
  color: #183D32;
}

.profile-hero {
  padding: clamp(80px, 9vw, 132px) 0 clamp(90px, 11vw, 160px);
  background: var(--ivory);
}

.profile-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(320px, 42fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.profile-hero-copy {
  max-width: 760px;
}

.profile-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(24, 61, 50, .72);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.profile-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--palette-gold);
}

.profile-hero h1 {
  margin-top: 42px;
  color: #183D32;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.profile-role {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(24, 61, 50, .72);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.profile-photo-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.profile-sections {
  background: var(--palette-sage);
  padding: 0 clamp(20px, 4vw, 72px) clamp(80px, 10vw, 144px);
}

.profile-section,
.profile-cta {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
  gap: clamp(32px, 7vw, 112px);
  width: min(1136px, 100%);
  margin-inline: auto;
  padding: 40px 0;
  border-top: 1px solid rgba(24, 61, 50, .2);
}

.profile-section h2,
.profile-cta h2 {
  color: var(--palette-green);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.03em;
}

.profile-cta {
  align-items: center;
  margin-top: 48px;
  padding: 64px 0 0;
  border-top-color: rgba(24, 61, 50, .3);
}

.profile-cta .contact-primary {
  justify-self: start;
}

.profile-page a:focus-visible {
  outline: 2px solid var(--palette-gold-dark);
  outline-offset: 5px;
}

@media (max-width: 860px) {
  .profile-header .nav {
    grid-template-columns: 1fr auto;
  }

  .profile-header .brand img {
    width: 217px;
    max-height: 61px;
  }

  .profile-hero {
    padding: 64px 0 84px;
  }

  .profile-hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
    width: calc(100% - 40px);
  }

  .profile-hero h1 {
    margin-top: 32px;
    font-size: clamp(42px, 11vw, 58px);
  }

  .profile-photo-wrap {
    order: 2;
  }

  .profile-sections {
    padding-inline: 20px;
  }

  .profile-section,
  .profile-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }

  .profile-cta {
    margin-top: 28px;
    padding-top: 40px;
  }

  .profile-cta .contact-primary {
    width: 100%;
  }
}
