/* Homepage art direction: Canva layout with the cinematic restraint of Edge's Wild Studio. */

.home-page {
  --home-cream: #f3efe3;
  --home-olive: #1d2b16;
  --home-olive-deep: #111a10;
  --home-yellow: #f6dc69;
  --home-display: "Cormorant Garamond", Georgia, serif;
  --home-script: "Caveat", cursive;
  background: var(--home-olive-deep);
}

.home-page .site-header {
  padding: 30px clamp(28px, 4vw, 58px);
  border: 0;
}

.home-page .site-header.is-scrolled {
  padding-block: 18px;
  background: linear-gradient(to bottom, rgba(10, 15, 9, .78), rgba(10, 15, 9, .36));
  border: 0;
  backdrop-filter: blur(12px);
}

.home-page .brand {
  color: var(--home-cream);
  font-family: var(--home-script);
  font-size: clamp(28px, 2.8vw, 43px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.home-page .menu-toggle {
  width: 44px;
  min-width: 44px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .menu-toggle::after {
  display: none;
}

.home-page .menu-toggle span,
.home-page .menu-toggle span + span {
  left: 4px;
  top: 50%;
  width: 36px;
  height: 2px;
  margin: 0;
  background: var(--home-cream);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .28);
}

.home-page .menu-toggle span:first-child {
  transform: translateY(-11px);
}

.home-page .menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.home-page .menu-toggle span:nth-child(3) {
  transform: translateY(11px);
}

.home-page .menu-toggle.is-open span:first-child {
  transform: translateY(0) rotate(45deg);
}

.home-page .menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.home-page .menu-toggle.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.home-page .site-nav {
  background:
    linear-gradient(rgba(12, 18, 11, .94), rgba(12, 18, 11, .98)),
    url("../Images/7.jpg") center / cover no-repeat;
  font-family: var(--home-display);
  font-weight: 500;
}

.home-page .home-hero {
  min-height: 100svh;
  padding: 120px clamp(22px, 6vw, 90px) 88px;
  isolation: isolate;
}

.home-page .home-hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(7, 12, 6, .04), rgba(7, 12, 6, .28) 52%, rgba(7, 12, 6, .58) 100%),
    linear-gradient(to bottom, rgba(9, 13, 8, .26), transparent 28%, rgba(9, 13, 8, .3));
}

.home-page .home-hero::after {
  inset: 0;
  z-index: 2;
  border: 0;
  opacity: .34;
  background:
    repeating-linear-gradient(90deg, rgba(245, 240, 228, .03) 0 1px, transparent 1px 4px),
    linear-gradient(112deg, rgba(255, 255, 255, .035), transparent 32%, rgba(0, 0, 0, .1));
  mix-blend-mode: soft-light;
}

.home-page .hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  filter: saturate(.82) contrast(1.08) brightness(.74);
  opacity: 0;
  transform: scale(1.045);
  animation: heroFilmIn 2.8s cubic-bezier(.2, .72, .2, 1) .12s forwards;
}

.home-page .hero-copy {
  z-index: 3;
  width: min(1280px, calc(100vw - 80px));
}

.home-page .hero-copy.reveal {
  --reveal-y: calc(5svh + 38px);
  transition:
    opacity 1.55s cubic-bezier(.2, .72, .2, 1) .42s,
    transform 1.8s cubic-bezier(.16, 1, .3, 1) .42s;
}

.home-page .home-hero h1 {
  position: relative;
  max-width: none;
  color: var(--home-cream);
  font-family: var(--home-display);
  font-size: clamp(60px, 6.6vw, 108px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .35);
  text-wrap: balance;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.45s cubic-bezier(.2, .72, .2, 1) .58s,
    transform 1.65s cubic-bezier(.16, 1, .3, 1) .58s;
}

.home-page .hero-copy.is-visible h1 {
  opacity: 1;
  transform: translateY(0);
}

.home-page .hero-kicker {
  color: var(--home-cream);
  font-family: var(--home-script);
  font-size: clamp(30px, 3.7vw, 58px);
  font-weight: 500;
  line-height: 1;
  margin-top: 24px;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.25s ease .98s,
    transform 1.45s cubic-bezier(.16, 1, .3, 1) .98s;
}

.home-page .hero-copy.is-visible .hero-kicker {
  opacity: 1;
  transform: translateY(0);
}

.home-page .scroll-cue {
  bottom: 30px;
  color: rgba(243, 239, 227, .82);
  opacity: 0;
  animation: heroCueIn 1.2s ease 1.85s forwards;
}

.home-page .scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 86px;
  margin-top: 12px;
  background: linear-gradient(var(--home-cream), transparent);
}

@keyframes heroFilmIn {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1.012);
  }
}

@keyframes heroCueIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .pdf-bio {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: center;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding-block: clamp(92px, 10vw, 150px);
  background:
    radial-gradient(circle at 78% 34%, rgba(246, 220, 105, .055), transparent 26rem),
    repeating-linear-gradient(90deg, rgba(243, 239, 227, .015) 0 1px, transparent 1px 7px),
    var(--home-olive);
  overflow: hidden;
}

.home-page .pdf-bio::before {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -16%;
  width: clamp(220px, 30vw, 540px);
  aspect-ratio: 1;
  background: url("../Images/bottom-plant.png") center / contain no-repeat;
  opacity: .12;
}

.home-page .pdf-bio__copy {
  max-width: 690px;
}

.home-page .pdf-bio__copy::before {
  display: none;
}

.home-page .pdf-bio .eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(243, 239, 227, .66);
}

.home-page .pdf-bio .eyebrow::before {
  content: "";
  flex: 0 0 46px;
  width: 46px;
  height: 60px;
  background: url("../Images/left-top-plant.png") center / contain no-repeat;
  opacity: .86;
  transform: rotate(-7deg);
  transform-origin: center bottom;
}

.home-page .pdf-bio h2 {
  max-width: 660px;
  color: var(--home-cream);
  font-family: var(--home-display);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.home-page .pdf-script {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 24px;
  color: var(--home-cream);
  font-family: var(--home-script);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1;
}

.home-page .pdf-script::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(243, 239, 227, .74);
}

.home-page .pdf-bio__copy > p:not(.eyebrow, .pdf-script) {
  margin: 0 0 18px;
  color: rgba(243, 239, 227, .9);
  font-family: var(--home-display);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.35;
}

.home-page .botanical-portrait {
  position: relative;
  min-height: min(780px, 72vw);
  isolation: isolate;
}

.home-page .botanical-portrait::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 5%;
  height: 24%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 0, 0, .23);
  filter: blur(46px);
  transform: scaleX(.86);
}

.home-page .botanical-layer {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-rotate: 0deg;
  --motion-scale: 1;
  --motion-opacity: 1;
  position: absolute;
  margin: 0;
  opacity: var(--motion-opacity);
  transform: translate3d(var(--motion-x), var(--motion-y), 0) rotate(var(--motion-rotate)) scale(var(--motion-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.home-page .botanical-portrait.image-loaded img {
  animation: none;
}

.home-page .botanical-portrait.motion-ready .botanical-layer {
  transition: none;
}

.home-page .layer-burans {
  --enter-x: -72px;
  --enter-y: 18px;
  --enter-rotate: -4deg;
  --enter-delay: 70ms;
  left: 1%;
  top: 30%;
  z-index: 1;
  width: 55%;
}

.home-page .layer-blue-poppy {
  --enter-x: 76px;
  --enter-y: 18px;
  --enter-rotate: 4deg;
  --enter-delay: 160ms;
  right: 0;
  top: 34%;
  z-index: 2;
  width: 49%;
}

.home-page .layer-fyoli-back {
  --enter-x: 32px;
  --enter-y: -58px;
  --enter-rotate: 5deg;
  --enter-delay: 260ms;
  left: 52%;
  top: 25%;
  z-index: 3;
  width: 31%;
}

.home-page .layer-line-top {
  --enter-x: 18px;
  --enter-y: -78px;
  --enter-rotate: 5deg;
  --enter-delay: 340ms;
  left: 48%;
  top: 2%;
  z-index: 4;
  width: 31%;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .15));
}

.home-page .layer-portrait {
  --enter-x: 0px;
  --enter-y: 64px;
  --enter-rotate: -.6deg;
  --enter-delay: 20ms;
  left: 15%;
  top: 14%;
  z-index: 6;
  width: 68%;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .24));
}

.home-page .layer-mountain {
  --enter-x: 68px;
  --enter-y: 54px;
  --enter-rotate: 2deg;
  --enter-delay: 430ms;
  right: -1%;
  top: 62%;
  z-index: 8;
  width: 72%;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .24));
}

.home-page .layer-fyoli-front {
  --enter-x: -56px;
  --enter-y: 42px;
  --enter-rotate: -6deg;
  --enter-delay: 520ms;
  left: 1%;
  top: 62%;
  z-index: 10;
  width: 34%;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .2));
}

.home-page .layer-line-bottom {
  --enter-x: 58px;
  --enter-y: 82px;
  --enter-rotate: 5deg;
  --enter-delay: 620ms;
  right: -5%;
  top: 71%;
  z-index: 11;
  width: 48%;
  filter: brightness(1.38) contrast(1.16) drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

.home-page .botanical-label {
  z-index: 12;
  color: var(--home-cream);
  font-family: var(--home-display);
  font-size: clamp(30px, 3vw, 47px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .28);
  white-space: nowrap;
}

.home-page .label-burans {
  --enter-x: -54px;
  --enter-y: 0px;
  --enter-delay: 710ms;
  left: -2%;
  top: 34%;
}

.home-page .label-blue {
  --enter-x: 54px;
  --enter-y: 0px;
  --enter-delay: 780ms;
  right: -3%;
  top: 34%;
}

.home-page .label-fyoli {
  --enter-x: -48px;
  --enter-y: 24px;
  --enter-delay: 850ms;
  left: -4%;
  top: 70%;
}

.home-page .pdf-fig {
  min-height: 100svh;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 13, .44), rgba(12, 22, 13, .1) 58%, rgba(12, 22, 13, .5)),
    url("../Images/7.jpg") center / cover no-repeat;
  overflow: hidden;
}

.home-page .pdf-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 16, 9, .2), transparent 35%, rgba(10, 16, 9, .56));
  pointer-events: none;
}

.home-page .pdf-fig__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 110px);
}

.home-page .pdf-polaroid {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.home-page .pdf-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .pdf-polaroid--left {
  left: clamp(28px, 8vw, 130px);
  bottom: 8%;
  width: clamp(250px, 28vw, 430px);
  height: clamp(330px, 38vw, 570px);
  border: 10px solid rgba(243, 239, 227, .92);
  border-bottom-width: 54px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  transform: rotate(-2.4deg);
}

.home-page .pdf-polaroid--left figcaption {
  position: absolute;
  left: 18px;
  bottom: 7px;
  z-index: 2;
  color: #1d2b16;
  font-family: var(--home-script);
  font-size: 32px;
  line-height: 1;
}

.home-page .pdf-polaroid--right {
  left: clamp(210px, 26vw, 420px);
  bottom: 3%;
  width: clamp(220px, 24vw, 360px);
  height: clamp(150px, 19vw, 285px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
  transform: rotate(2.2deg);
}

.home-page .pdf-fig__quote {
  position: absolute;
  top: 15%;
  right: clamp(28px, 7vw, 100px);
  width: min(42vw, 580px);
  color: var(--home-cream);
  font-family: var(--home-display);
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.035em;
  text-align: right;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .honors {
  max-width: none;
  margin: 0;
  padding-block: clamp(80px, 9vw, 130px);
  background:
    radial-gradient(circle at 14% 8%, rgba(246, 220, 105, .05), transparent 24rem),
    var(--home-olive);
}

.home-page .honors-title {
  max-width: 1440px;
  margin: 0 auto clamp(42px, 5vw, 74px);
  color: var(--home-yellow);
  font-family: var(--home-display);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.045em;
}

.home-page .honors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 38px);
  max-width: 1440px;
  margin: 0 auto;
}

.home-page .honor-card {
  position: relative;
  min-height: clamp(470px, 48vw, 720px);
  overflow: hidden;
  background: #10190f;
}

.home-page .honor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 12, 8, .15), transparent 35%, rgba(8, 12, 8, .76));
}

.home-page .honor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04) brightness(.82);
  transition: transform .8s cubic-bezier(.2, .75, .2, 1), filter .8s ease;
}

.home-page .honor-card:hover img {
  transform: scale(1.035);
  filter: saturate(.96) contrast(1.04) brightness(.88);
}

.home-page .honor-card__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 44px) clamp(20px, 2.4vw, 34px);
  text-align: center;
}

.home-page .honor-card h3 {
  color: var(--home-yellow);
  font-family: var(--home-display);
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 600;
  line-height: .92;
}

.home-page .honor-card p {
  margin: 0;
  color: var(--home-yellow);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.home-page .social-ledger,
.home-page .impact-preview,
.home-page .services {
  background-color: var(--home-olive-deep);
}

.home-page .site-footer {
  background: #0a1009;
}

@media (max-width: 1000px) {
  .home-page .pdf-bio {
    grid-template-columns: 1fr;
  }

  .home-page .botanical-portrait {
    min-height: 680px;
  }

  .home-page .pdf-fig__quote {
    width: 52vw;
  }

  .home-page .honor-card {
    min-height: 530px;
  }
}

@media (max-width: 760px) {
  .home-page .site-header {
    padding: 22px 20px;
  }

  .home-page .brand {
    font-size: 29px;
  }

  .home-page .home-hero {
    min-height: 100svh;
    padding-inline: 18px;
  }

  .home-page .hero-copy {
    width: calc(100vw - 36px);
  }

  .home-page .home-hero h1 {
    font-size: clamp(48px, 14.2vw, 76px);
    line-height: .86;
  }

  .home-page .hero-kicker {
    max-width: 88vw;
    font-size: clamp(27px, 8vw, 40px);
  }

  .home-page .scroll-cue {
    left: 20px;
  }

  .home-page .pdf-bio {
    gap: 22px;
    padding: 86px 20px 42px;
  }

  .home-page .pdf-bio__copy::before {
    width: 56px;
    height: 74px;
    margin-left: 0;
  }

  .home-page .pdf-bio h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .home-page .pdf-bio__copy > p:not(.eyebrow, .pdf-script) {
    font-size: 18px;
  }

  .home-page .botanical-portrait {
    min-height: 118vw;
    margin-inline: -4px;
  }

  .home-page .botanical-label {
    font-size: clamp(26px, 8vw, 36px);
  }

  .home-page .label-burans {
    left: 0;
  }

  .home-page .label-blue {
    right: 0;
  }

  .home-page .label-fyoli {
    left: -1%;
  }

  .home-page .pdf-fig,
  .home-page .pdf-fig__inner {
    min-height: 860px;
  }

  .home-page .pdf-fig__quote {
    top: 9%;
    right: 20px;
    width: 76vw;
    font-size: clamp(46px, 14vw, 70px);
  }

  .home-page .pdf-polaroid--left {
    left: 24px;
    bottom: 13%;
    width: min(66vw, 340px);
    height: 430px;
  }

  .home-page .pdf-polaroid--right {
    left: auto;
    right: 22px;
    bottom: 4%;
    width: min(48vw, 260px);
    height: 190px;
  }

  .home-page .honors {
    padding-inline: 20px;
  }

  .home-page .honors-title {
    font-size: clamp(54px, 16vw, 82px);
  }

  .home-page .honors-grid {
    grid-template-columns: 1fr;
  }

  .home-page .honor-card {
    min-height: 126vw;
    max-height: 680px;
  }

  .home-page .honor-card h3 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .home-page .honor-card p {
    font-size: 18px;
  }
}

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

  .home-page .home-hero {
    background: url("../assets/video/aditya-home-poster.jpg") center / cover no-repeat;
  }

  .home-page .hero-copy.reveal,
  .home-page .home-hero h1,
  .home-page .hero-kicker,
  .home-page .scroll-cue {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
