:root {
  --green-950: #002525;
  --green-900: #002d2d;
  --green-800: #003a3a;
  --cream: #fff6e9;
  --gold: #f2dab6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(242, 218, 182, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--white);
  font-family: "Heebo", system-ui, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 153px;
  padding: 42px 80px;
  color: #fff;
  transition: height 0.45s var(--ease), padding 0.45s var(--ease), background 0.45s var(--ease), border 0.45s var(--ease);
}

.site-header.is-scrolled {
  height: 92px;
  padding-block: 18px;
  background: rgba(0, 37, 37, 0.72);
  border-bottom: 1px solid rgba(242, 218, 182, 0.15);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 171px;
  height: 69px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 61px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.12em;
}

.logo-text,
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-text strong,
.footer__logo strong {
  font-size: 27px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.logo-text small,
.footer__logo small {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 35px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  height: 57px;
  padding: 0 28px;
  border: 1.5px solid transparent;
  font-weight: 700;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-3px);
}

.header-cta,
.button--gold {
  background: var(--gold);
  color: var(--green-800);
}

.button--outline {
  background: rgba(242, 218, 182, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 120px 28px 48px;
  background: rgba(0, 37, 37, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: 0.35s var(--ease);
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  font-size: 32px;
}

.mobile-menu .button {
  margin-top: 36px;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 830px;
  overflow: hidden;
  text-align: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroDrift 14s var(--ease) infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 44%, rgba(0, 37, 37, 0.85)),
    rgba(0, 0, 0, 0.28);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1050px, calc(100% - 48px));
  margin-top: 68px;
}

.hero__content p {
  margin: 0 0 4px;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8.75vw, 126px);
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 58px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
}

.watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.04);
  font-family: "Amita", serif;
  font-size: clamp(130px, 24vw, 394px);
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.story {
  display: grid;
  place-items: center;
  min-height: 612px;
  padding: 120px 24px;
}

.story__text {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
  color: var(--cream);
  font-size: clamp(28px, 3.125vw, 45px);
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.story__text p {
  margin: 0;
}

.story__text strong {
  font-weight: 800;
}

.fields {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 413px;
  overflow: hidden;
}

.fields::before,
.cta-band::before,
.process::before,
.articles::before {
  content: attr(data-watermark);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: "Amita", serif;
  font-size: clamp(120px, 23vw, 330px);
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
}

.field-card {
  position: relative;
  min-height: 413px;
  overflow: hidden;
  isolation: isolate;
}

.field-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.field-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1));
}

.field-card:hover img {
  transform: scale(1.08);
}

.field-card h2 {
  width: min(240px, 85%);
  margin: 44px auto 0;
  color: var(--cream);
  font-size: clamp(30px, 2.65vw, 38px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.05em;
}

.opportunities {
  padding: 107px 80px 98px;
}

.opportunities__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.1fr);
  gap: 105px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.opportunities__copy {
  text-align: right;
}

.opportunities h2 {
  max-width: 510px;
  margin: 0 0 72px;
  color: var(--cream);
  font-size: clamp(42px, 4vw, 59px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.opportunities p {
  max-width: 500px;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.05em;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 25px;
}

.audience-grid div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 214px;
  border: 1px dashed var(--line);
  color: var(--cream);
  text-align: center;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
  padding: 36px 20px 28px;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease), border-color 0.35s ease;
}

.opportunities__content.is-visible .audience-grid div {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.opportunities__content.is-visible .audience-grid div:nth-child(2) {
  transition-delay: 90ms;
}

.opportunities__content.is-visible .audience-grid div:nth-child(3) {
  transition-delay: 180ms;
}

.opportunities__content.is-visible .audience-grid div:nth-child(4) {
  transition-delay: 270ms;
}

.opportunities__content.is-visible .audience-grid div:nth-child(5) {
  transition-delay: 360ms;
}

.opportunities__content.is-visible .audience-grid div:nth-child(6) {
  transition-delay: 450ms;
}

.audience-grid div:hover {
  border-color: rgba(242, 218, 182, 0.82);
}

.audience-grid .icon {
  position: relative;
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  width: 52px;
  height: 52px;
}

.icon-arrow::before {
  content: "";
  position: absolute;
  inset: 7px 8px 8px 7px;
  border-top: 5px solid var(--gold);
  border-right: 5px solid var(--gold);
}

.icon-arrow::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 5px;
  right: 10px;
  top: 29px;
  background: var(--gold);
  transform: rotate(-45deg);
  transform-origin: right center;
}

.icon-bars {
  border: 4px solid var(--gold);
  background: repeating-linear-gradient(90deg, transparent 0 6px, var(--gold) 6px 10px);
}

.icon-home::before {
  content: "";
  position: absolute;
  inset: 13px 10px 8px;
  border: 5px solid var(--gold);
  border-top: 0;
}

.icon-home::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: 12px;
  top: 4px;
  border-top: 5px solid var(--gold);
  border-right: 5px solid var(--gold);
  transform: rotate(-45deg);
}

.icon-circle {
  border: 4px dashed var(--gold);
  border-radius: 999px;
}

.icon-diamond::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 5px solid var(--gold);
  transform: rotate(45deg);
}

.icon-square::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 5px solid var(--gold);
}

.icon-square::after {
  content: "";
  position: absolute;
  inset: 17px;
  background: var(--gold);
}

.cta-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 548px;
  overflow: hidden;
  text-align: center;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.06);
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--green-950) 0%, rgba(0, 58, 58, 0.55) 34%, rgba(0, 37, 37, 0.9) 100%),
    rgba(0, 37, 37, 0.42);
}

.cta-band__content {
  position: relative;
  z-index: 1;
  width: min(951px, calc(100% - 48px));
}

.cta-band h2 {
  margin: 0 0 25px;
  color: var(--cream);
  font-size: clamp(38px, 3.75vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-band p {
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 236px;
  background: var(--green-950);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.process__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-left: 0;
  text-align: right;
  overflow: hidden;
}

.process__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -23px;
  top: 0;
  width: 46px;
  height: 100%;
  background:
    linear-gradient(110deg, transparent 0 47%, rgba(255, 255, 255, 0.25) 47% 50%, transparent 50%),
    linear-gradient(70deg, transparent 0 47%, rgba(255, 255, 255, 0.25) 47% 50%, transparent 50%);
  opacity: 0.75;
}

.process__item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(80px, 9.7vw, 140px);
  line-height: 1;
  font-weight: 200;
  transition: color 0.35s ease, transform 0.35s var(--ease);
}

.process__item:hover span {
  color: rgba(242, 218, 182, 0.78);
  transform: translateX(-4px);
}

.process__item p {
  margin: 0;
  font-size: clamp(25px, 2.78vw, 40px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.articles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 617px;
  overflow: hidden;
}

.article-card {
  position: relative;
  overflow: hidden;
  min-height: 617px;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.8s var(--ease);
}

.article-card:hover img {
  transform: scale(1.06);
}

.article-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  min-height: 165px;
  padding: 30px 29px 25px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  text-align: right;
}

.article-card h2 {
  max-width: 340px;
  margin: 0 0 18px auto;
  color: var(--cream);
  font-size: clamp(27px, 2.64vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.article-card p {
  margin: 0;
  font-size: 16px;
}

.contact {
  min-height: 453px;
  display: grid;
  place-items: center;
  padding: 92px 80px;
}

.contact__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  text-align: center;
}

.contact h2 {
  margin: 0 0 44px;
  color: var(--cream);
  font-size: clamp(42px, 4vw, 59px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-form input,
.contact-form button {
  height: 81px;
  border: 1px dashed var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  text-align: center;
  font-size: 20px;
  outline: none;
}

.contact-form input::placeholder {
  color: var(--cream);
  opacity: 1;
}

.contact-form button {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
  font-weight: 700;
  cursor: pointer;
}

.footer {
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 70px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 73px 0 76px;
}

.footer__logo {
  justify-self: end;
  color: #fff;
}

.footer__logo img {
  display: block;
  width: 133px;
  height: 182px;
  object-fit: contain;
}

.footer address {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-style: normal;
  text-align: right;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 32px 62px;
  justify-content: start;
}

.footer nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.footer__strip {
  display: flex;
  justify-content: space-between;
  padding: 12px 80px;
  background: var(--gold);
  color: var(--green-950);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(18px, -8px, 0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 100px;
    padding: 24px 32px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .fields,
  .articles {
    grid-template-columns: 1fr 1fr;
  }

  .field-card:last-child,
  .article-card:last-child {
    grid-column: 1 / -1;
  }

  .opportunities__content {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .opportunities__copy,
  .opportunities h2,
  .opportunities p {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form button {
    grid-column: 1 / -1;
  }

  .footer__main {
    padding-inline: 32px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo,
  .footer address,
  .footer nav {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 84px;
    padding: 18px 22px;
  }

  .logo-mark {
    width: 40px;
    height: 45px;
    font-size: 30px;
  }

  .logo-text strong {
    font-size: 21px;
  }

  .hero {
    min-height: 100svh;
    padding: 130px 20px 70px;
  }

  .hero__image {
    object-position: center;
  }

  .hero__content {
    margin-top: 24px;
  }

  .hero__content p {
    font-size: 29px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
  }

  .button {
    width: min(270px, 100%);
  }

  .story {
    min-height: auto;
    padding: 86px 24px;
  }

  .story__text {
    font-size: 28px;
  }

  .fields,
  .articles,
  .process {
    grid-template-columns: 1fr;
  }

  .field-card,
  .article-card {
    min-height: 420px;
  }

  .field-card:last-child,
  .article-card:last-child {
    grid-column: auto;
  }

  .opportunities,
  .contact {
    padding: 82px 22px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .audience-grid div {
    min-height: 150px;
    font-size: 20px;
  }

  .cta-band {
    min-height: 500px;
  }

  .process__item {
    min-height: 160px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer__strip {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-inline: 20px;
  }
}
