@font-face {
  font-family: "Tusker Grotesk";
  src: url("Assets/Fonts/TuskerGrotesk-2800Super.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tusker Grotesk 4600";
  src: url("Assets/Fonts/TuskerGrotesk-4600Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tusker Grotesk 4700";
  src: url("Assets/Fonts/TuskerGrotesk-4700Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #e5deda;
  color: #000;
}

.site-menu {
  position: fixed;
  z-index: 9999999999999;
  top: clamp(18px, 2.15vw, 42px);
  right: clamp(18px, 2.15vw, 42px);
  width: clamp(250px, 20vw, 350px);
  pointer-events: none;
  filter: invert(1);
  mix-blend-mode: difference;
}

.site-menu__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 68px;
  padding: 0;
  border: 0;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  color: #000;
  cursor: pointer;
  pointer-events: auto;
}

.site-menu__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-menu__edition {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, 0.86vw, 16px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: opacity 0.24s ease, transform 0.32s ease;
}

.site-menu__star {
  display: block;
  width: clamp(28px, 2.58vw, 50px);
  height: clamp(28px, 2.58vw, 50px);
  object-fit: contain;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.site-menu__panel {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  width: 100%;
  min-height: clamp(278px, 21vw, 390px);
  padding: clamp(104px, 7.5vw, 140px) clamp(36px, 2.85vw, 55px) clamp(42px, 3.2vw, 62px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(7px, 0.65vw, 13px);
  border-radius: clamp(24px, 2vw, 38px);
  background: #eee9e5;
  box-shadow: 0 16px 50px rgb(75 55 45 / 0.08);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.08);
  transform-origin: top right;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.site-menu__panel a {
  color: #961414;
  font-family: "Tusker Grotesk 4700", sans-serif;
  font-size: clamp(38px, 3.2vw, 62px);
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: -0.025em;
  text-decoration: none;
  transform-origin: left center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-menu__panel a:hover,
.site-menu__panel a:focus-visible {
  color: #000;
  outline: none;
  transform: translateX(5px);
}

.site-menu.is-open .site-menu__toggle {
  padding: clamp(18px, 1.5vw, 28px) clamp(18px, 1.5vw, 28px) 0 0;
}

.site-menu.is-open .site-menu__edition {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
}

.site-menu.is-open .site-menu__star {
  filter: invert(15%) sepia(81%) saturate(3737%) hue-rotate(352deg) brightness(77%) contrast(100%);
  transform: rotate(90deg);
}

.site-menu.is-open .site-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}


@media (prefers-reduced-motion: reduce) {

  .site-menu__toggle,
  .site-menu__edition,
  .site-menu__panel,
  .site-menu__panel a {
    transition-duration: 0.01ms;
  }
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 552px;
  min-height: 100svh;
  padding: 2.15vw;
  overflow: hidden;
}

.hero__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 3.55vw;
}

.hero__manifesto,
.hero__edition-label,
.hero__coordinates,
.hero__asset-label,
.hero__caption {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.72vw;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__edition-label,
.hero__asset-label,
.hero__caption {
  font-weight: 500;
}

.hero__edition-label {
  font-size: 0.86vw;
}

.hero__manifesto-line,
.hero__edition-line,
.hero__coordinate,
.hero__caption-line {
  display: block;
}

.hero__edition {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.hero__star {
  display: block;
  width: 2.58vw;
  height: 2.58vw;
  object-fit: contain;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 12.5vw minmax(0, 1fr);
  min-height: calc(100svh - 6.46vw);
  margin-top: 0.43vw;
}

.hero__utility-rail {
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.72vw;
  margin-top: calc(55.4svh - 6.13vw + 4.8vw);
  padding-bottom: 0;
}

.hero__eye-artwork,
.hero__barcode,
.hero__portrait {
  margin: 0;
}

.hero__eye-artwork {
  width: 7.25vw;
  height: 6.33vw;
  overflow: hidden;
}

.hero__eye-artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__barcode-group {
  position: absolute;
  top: auto;
  bottom: 0.4vw;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32vw;
}

.hero__barcode {
  width: 6.25vw;
  height: 4.1vw;
  font-family: "Libre Barcode 39", cursive;
  font-size: 4.1vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.hero__barcode::before {
  content: "*AURA004*";
  display: block;
  transform: scaleX(0.3);
  transform-origin: left center;
}

.hero__coordinates {
  margin-bottom: -0.97vw;
}

.hero__editorial-field {
  grid-column: 2;
  position: relative;
  top: -5.85vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-top: 0;
  padding-left: 0;
}

.hero__title {
  position: relative;
  left: -1vw;
  width: max-content;
  max-width: 100%;
  margin: 0;
  line-height: 0.79;
  white-space: nowrap;
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 47vw;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #961414;
  transform: scaleX(1.12) scaleY(0.88);
  transform-origin: top left;
}

.hero__title-mobile {
  display: none;
}

.hero__caption-copy,
.hero__caption-line {
  display: block;
}

.hero__caption-copy--mobile {
  display: none;
}

.hero__caption {
  margin-top: 2.6vw;
  margin-left: -1vw;
  position: relative;
  top: calc(100svh - 45.164vw);
}

.hero__portrait {
  position: absolute;
  z-index: 1;
  top: -18.9vw;
  right: -11.5vw;
  width: 54vw;
}

.hero__portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  background: #961414;
  color: #e5deda;
}

.trust-marquee--mobile {
  display: none;
}

.trust-marquee__viewport {
  width: 100%;
  overflow: hidden;
  padding-block: 22px;
}

.trust-marquee__track,
.trust-marquee__group {
  display: flex;
  align-items: center;
  width: max-content;
}

.trust-marquee__track {
  will-change: transform;
}

.trust-marquee__group {
  flex-shrink: 0;
  gap: clamp(12px, 1vw, 20px);
  padding-right: clamp(12px, 1vw, 20px);
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(58px, 4.2vw, 80px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-9px);
}

.trust-marquee__separator {
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 0.42em;
  line-height: 1;
  display: inline-grid;
  width: 1em;
  height: 1em;
  place-items: center;
  overflow: hidden;
  color: transparent;
}

.trust-marquee__separator::before {
  content: "\2726";
  color: #e5deda;
  font-size: 1em;
  line-height: 1;
}

@media (min-width: 1024px) {
  .trust-marquee__viewport {
    padding-block: 30px;
  }

  .trust-marquee--desktop {
    margin-top: clamp(-10px, 10vw, -92px);
  }

  .hero {
    min-height: max(720px, 100svh);
    padding: clamp(22px, 2.15vw, 42px);
  }

  .hero__header {
    height: clamp(36px, 3.55vw, 68px);
  }

  .hero__content {
    grid-template-columns: clamp(128px, 12.5vw, 240px) minmax(0, 1fr);
    min-height: calc(100svh - clamp(62px, 6.46vw, 124px));
    margin-top: clamp(4px, 0.43vw, 8px);
  }

  .hero__title {
    left: clamp(-19px, -1vw, -10px);
    font-size: clamp(450px, 47vw, 902px);
  }

  .hero__portrait {
    top: clamp(-379px, -19.7vw, -206px);
    right: clamp(-221px, -11.5vw, -118px);
    width: clamp(520px, 54vw, 1037px);
  }

  .hero__eye-artwork {
    width: clamp(70px, 7.25vw, 139px);
    height: clamp(61px, 6.33vw, 121px);
  }
}

@media (min-width: 1921px) and (min-aspect-ratio: 16 / 10) and (max-aspect-ratio: 19 / 10) {
  .hero__title {
    font-size: 960px;
  }

  .hero__utility-rail {
    margin-top: calc(55.4svh - 5.24vw);
  }

  .hero__caption {
    top: calc(100svh - 42.024vw - 46px);
  }

  .hero__portrait {
    right: -246px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: 56.25vw;
    min-height: 0;
    padding: 2.15vw;
  }

  .hero__content {
    height: calc(56.25vw - 6.46vw);
    min-height: 0;
  }

  .hero__utility-rail {
    margin-top: 26.9vw;
  }

  .hero__caption {
    top: 10.9vw;
  }
}


@media (min-width: 1200px) and (max-width: 1823px) {
  .hero {
    min-height: max(720px, 117svh);
    padding: clamp(22px, 2.15vw, 42px);
  }

  .hero__barcode-group {
    padding-bottom: 0.7rem;
  }
}


@media (max-width: 767px) {
  .site-menu {
    top: clamp(10px, 2.5vw, 12px);
    right: clamp(18px, 5.5vw, 25px);
    width: min(262px, calc(100vw - 36px));
  }

  .site-menu__toggle {
    min-height: 62px;
    gap: clamp(6px, 2vw, 9px);
  }

  .site-menu.is-open .site-menu__toggle {
    padding: 20px 20px 0 0;
  }

  .site-menu__edition {
    font-size: clamp(10px, 2.68vw, 12.3px);
  }

  .site-menu__star {
    width: clamp(19px, 6.04vw, 28px);
    height: clamp(19px, 6.04vw, 28px);
  }

  .site-menu__panel {
    top: 0;
    min-height: 340px;
    padding: 90px 36px 48px;
    border-radius: 26px;
    gap: 8px;
  }

  .site-menu__panel a {
    font-size: clamp(36px, 9.3vw, 44px);
    line-height: 0.86;
    letter-spacing: -0.015em;
  }

  .hero {
    --mobile-frame-offset: max(0px, calc((100vw - 460px) / 2));
    position: relative;
    width: 100%;
    min-height: max(100svh, clamp(500px, 155vw, 713px));
    padding: 0;
    isolation: isolate;
  }

  .hero__header {
    position: static;
    height: 0;
  }

  .hero__manifesto,
  .hero__coordinates,
  .hero__asset-label,
  .hero__caption {
    font-size: clamp(7px, 2.25vw, 10.35px);
  }

  .hero__manifesto {
    position: absolute;
    z-index: 3;
    top: clamp(230px, 72vw, 331px);
    left: calc(var(--mobile-frame-offset) + clamp(18px, 5.5vw, 25px));
  }

  .hero__edition {
    z-index: 4;
    top: clamp(8px, 2.5vw, 12px);
    right: calc(var(--mobile-frame-offset) + clamp(18px, 5.5vw, 25px));
    gap: clamp(6px, 2vw, 9px);
  }

  .hero__edition-label {
    font-size: clamp(10px, 2.68vw, 12.3px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero__star {
    width: clamp(19px, 6.04vw, 28px);
    height: clamp(19px, 6.04vw, 28px);
  }

  .hero__content {
    position: static;
    display: block;
    min-height: 0;
    margin: 0;
  }

  .hero__editorial-field {
    position: static;
    padding: 0;
  }

  .hero__title {
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(var(--mobile-frame-offset) + clamp(18px, 5.5vw, 25px));
    max-width: none;
    font-size: clamp(269px, 84vw, 386px);
    line-height: 0.79;
    letter-spacing: -0.01em;
    transform: translateY(clamp(48px, 13vw, 58px)) scaleX(0.85) scaleY(0.83);
    transform-origin: top left;
  }

  .hero__utility-rail {
    position: absolute;
    z-index: 3;
    top: clamp(277px, 86.5vw, 398px);
    left: calc(var(--mobile-frame-offset) + clamp(18px, 5.5vw, 25px));
    display: flex;
    gap: 0;
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero__coordinates {
    margin-bottom: clamp(2px, 0.75vw, 4px);
  }

  .hero__eye-artwork {
    width: clamp(54px, 16.8vw, 77px);
    height: clamp(47px, 14.6vw, 67px);
    margin-bottom: clamp(9px, 2.85vw, 13px);
  }

  .hero__barcode-group {
    position: relative;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    gap: clamp(2px, 0.75vw, 4px);
  }

  .hero__barcode {
    width: clamp(34px, 10.7vw, 49px);
    height: clamp(22px, 7vw, 32px);
    font-size: clamp(22px, 7vw, 32px);
  }

  .hero__portrait {
    z-index: 2;
    top: clamp(-28px, -6vw, -19px);
    right: calc(var(--mobile-frame-offset) + clamp(-216px, -47vw, -150px));
    bottom: auto;
    width: clamp(480px, 150vw, 690px);
  }

  .hero__caption {
    position: absolute;
    z-index: 3;
    top: clamp(392px, 122.5vw, 564px);
    left: calc(var(--mobile-frame-offset) + clamp(18px, 5.5vw, 25px));
    margin: 0;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: inline;
  }

  .hero__caption-copy--desktop {
    display: none;
  }

  .hero__caption-copy--mobile {
    display: block;
  }

  .trust-marquee__viewport {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
  }

  .trust-marquee__group {
    gap: clamp(10px, 3vw, 14px);
    padding-right: clamp(10px, 3vw, 14px);
    font-size: clamp(48px, 14vw, 64px);
    transform: translateY(3px);
  }

  .trust-marquee {
    --mobile-marquee-height: clamp(83px, 26vw, 120px);
    position: relative;
    z-index: 6;
    height: var(--mobile-marquee-height);
    margin-top: calc(0px - var(--mobile-marquee-height));
  }

  .trust-marquee--desktop {
    display: none;
  }

  .hero>.trust-marquee--mobile {
    display: block;
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 0;
    height: var(--mobile-marquee-height);
    margin-top: 0;
  }
}

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

  .trust-marquee__track {
    transform: none !important;
  }
}

.narrative-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 8% 10% 19% 23% 1fr;
  column-gap: clamp(8px, 1vw, 20px);
  align-items: start;
  width: 100%;
  min-height: 768px;
  aspect-ratio: 1 / 1;
  padding: clamp(16px, 2.5vw, 48px);
  overflow: hidden;
  height: auto;
  background: #e5deda;
  color: #000;
}

.narrative-section__copy,
.narrative-section__metadata {
  margin: 0;
  min-width: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(6px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.narrative-section__copy--top {
  grid-column: 7 / span 2;
  grid-row: 1;
  align-self: start;
  width: min(100%, 24ch);
}

.narrative-section__copy--right {
  grid-column: 11 / span 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  width: min(100%, 22ch);
  transform: translateX(clamp(8px, 0.8vw, 16px));
}

.narrative-section__title {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 2.5vw, 48px);
  grid-column: 1 / -1;
  grid-row: 3 / span 2;
  align-self: start;
  margin: 0;
  transform: translateX(clamp(-20px, -1vw, -8px));
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(180px, 26vw, 520px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.narrative-section__title span {
  display: block;
  line-height: 0.9;
  white-space: nowrap;
}

.narrative-section__eye,
.narrative-section__portrait,
.narrative-section__figure {
  margin: 0;
}

.narrative-section__eye img,
.narrative-section__portrait img,
.narrative-section__figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.narrative-section__eye {
  z-index: 3;
  grid-column: 8 / span 5;
  grid-row: 3;
  align-self: start;
  width: 100%;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  transform: translateY(clamp(-60px, -3vw, -36px));
}

.narrative-section__eye img {
  object-fit: cover;
}

.narrative-section__star {
  z-index: 5;
  display: block;
  width: clamp(26px, 4.2vw, 64px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(12%) sepia(71%) saturate(3996%) hue-rotate(354deg) brightness(81%) contrast(99%);
}

.narrative-section__star--eye {
  grid-column: 8;
  grid-row: 3;
  align-self: center;
  justify-self: start;
  transform: translate(-50%, calc(42% - clamp(60px, 3vw, 36px)));
}

.narrative-section__copy--middle {
  z-index: 4;
  grid-column: 6 / span 3;
  grid-row: 3;
  align-self: end;
  margin-top: 0;
  justify-self: start;
  width: clamp(240px, 16vw, 310px);
  transform: translate(clamp(8px, 0.5vw, 12px), clamp(108px, 8.4vw, 168px));
  padding-bottom: 1rem;
}

.narrative-section__portrait {
  z-index: 2;
  grid-column: 1 / span 4;
  grid-row: 5;
  align-self: start;
  width: 100%;
  aspect-ratio: 0.78 / 1;
  background: #000;
  overflow: hidden;
  transform: translateY(clamp(180px, 15vw, 300px));
}

.narrative-section__portrait img {
  object-fit: cover;
  object-position: 50% 11%;
}

.narrative-section__star--portrait {
  grid-column: 1;
  grid-row: 5;
  align-self: start;
  justify-self: start;
  transform: translate(-42%, calc(20% + clamp(180px, 15vw, 300px)));
}

.narrative-section__metadata {
  z-index: 4;
  grid-column: 5 / span 2;
  grid-row: 5;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25vw;
  font-size: clamp(4px, 0.47vw, 9px);
  line-height: 1.15;
  text-transform: uppercase;
  transform: translateY(clamp(180px, 15vw, 300px));
}

.narrative-section__statement,
.narrative-section__coordinates,
.narrative-section__asset {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.narrative-section__asset {
  gap: 0.2vw;
}

.narrative-section__barcode {
  display: block;
  width: 3.2vw;
  height: 2.45vw;
  overflow: hidden;
  font-family: "Libre Barcode 39", cursive;
  font-size: 2.45vw;
  line-height: 1;
}

.narrative-section__barcode::before {
  content: "*AURA004*";
  display: block;
  transform: scaleX(0.32);
  transform-origin: left center;
}

.narrative-section__figure {
  z-index: 4;
  grid-column: 6 / span 7;
  grid-row: 4 / -1;
  align-self: end;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translate(clamp(-72px, -3.6vw, -36px), clamp(24px, 2.3vw, 44px));
}

.narrative-section__figure img {
  object-fit: contain;
  object-position: bottom center;
}

@media (min-width: 768px) {
  .narrative-section {
    height: calc(100vw + clamp(180px, 15vw, 300px) + clamp(48px, 3vw, 64px));
    min-height: calc(100vw + clamp(180px, 15vw, 300px) + clamp(48px, 3vw, 64px));
    aspect-ratio: auto;
    grid-template-rows: 8vw 10vw 19vw 23vw minmax(0, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .narrative-section {
    height: 118vw;
    min-height: 118vw;
  }

  .narrative-section__title {
    gap: 2.5vw;
  }

  .narrative-section__eye {
    transform: translateY(-3vw);
  }

  .narrative-section__star--eye {
    transform: translate(-50%, calc(42% - 3vw));
  }

  .narrative-section__copy--right {
    transform: translateX(0.8vw);
  }

  .narrative-section__copy--middle {
    width: 18.75vw;
    transform: translate(0.5vw, 9.4vw) !important;
  }

  .narrative-section__portrait {
    transform: translateY(15vw);
  }

  .narrative-section__star--portrait {
    transform: translate(-42%, calc(20% + 15vw));
  }

  .narrative-section__metadata {
    transform: translateY(15vw);
  }

  .narrative-section__figure {
    transform: translate(-3.6vw, 2.3vw);
  }
}

.narrative-section__star--portrait {
  display: none;
}

.narrative-section__star--eye {
  display: none;
}

@media (max-width: 767px) {
  .narrative-section {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 8vw 10vw 19vw 23vw minmax(0, 1fr);
    column-gap: 1vw;
    height: calc(118vw + 32vh);
    min-height: calc(118vw + 17vh);
    /* max-height: calc(118vw + 17vh); */
    max-width: 100%;
    aspect-ratio: auto;
    padding: 2.5vw;
    overflow: hidden;
  }

  .narrative-section>* {
    min-width: 0;
  }

  .narrative-section__copy,
  .narrative-section__metadata {
    position: static;
    font-size: max(5px, 0.72vw);
  }

  .narrative-section__copy {
    font-size: max(10px, 1vw);
    width: 150%;
  }

  .narrative-section__copy--top {
    grid-column: 3 / span 4;
    transform: translateX(-1vw);
  }

  .narrative-section__copy--right {
    grid-column: 10 / span 4;
    transform: translate(1vw, 16.67vw);
    width: 180%;
    transform: translateY(100px);
  }

  .narrative-section__title {
    position: static;
    display: flex;
    gap: 3.5vw;
    font-size: 26vw;
    transform: translate(-1vw, 70vw);
  }

  .narrative-section__eye {
    position: static;
    transform: translateY(21.6vw) scale(1.2) translateX(-10px);
    transform: translateY(140px);
  }

  .narrative-section__star--eye {
    position: static;
    transform: translate(-50%, calc(42% + 27.56vw));
  }

  .narrative-section__copy--middle {
    position: static;
    width: 40vw;
    transform: translate(1.5vw, 72vw);
    padding-bottom: 0rem;
    width: 220%;
    padding-left: 0.5rem;
  }

  .narrative-section__portrait {
    position: static;
    align-self: end;
    transform: none;
  }

  .narrative-section__star--portrait {
    position: static;
    align-self: end;
    transform: translate(-42%, 20%);
  }

  .narrative-section__metadata {
    position: static;
    align-self: end;
    height: 39.75vw;
    gap: 1.25vw;
    font-size: max(4px, 0.47vw);
    transform: none;
  }

  .narrative-section__figure {
    position: static;
    transform: translate(-3.6vw, 2.3vw);
  }
}

.results-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: clamp(6px, 1vw, 20px);
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(16px, 3.5vw, 64px);
  overflow: hidden;
  background: #e5deda;
  color: #000;
}

.results-section__title,
.results-section__intro,
.results-section__stat,
.results-section__value,
.results-section__stat-copy h3,
.results-section__stat-copy p {
  margin: 0;
}

.results-section__title {
  z-index: 1;
  display: flex;
  flex-direction: column;
  grid-column: 1 / span 5;
  grid-row: 1 / span 3;
  align-self: start;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(46px, 12vw, 230px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.results-section__title span {
  display: block;
  white-space: nowrap;
}

.results-section__intro {
  grid-column: 7 / span 3;
  grid-row: 3 / span 2;
  align-self: start;
  max-width: 24ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(7px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.results-section__stat {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 20px);
  min-width: 0;
}

.results-section__stat--projects {
  grid-column: 7 / span 5;
  grid-row: 5 / span 2;
}

.results-section__stat--experience {
  grid-column: 1 / span 5;
  grid-row: 7 / span 2;
}

.results-section__stat--industries {
  grid-column: 8 / span 5;
  grid-row: 8 / span 2;
}

.results-section__stat--satisfaction {
  grid-column: 3 / span 5;
  grid-row: 10 / span 3;
}

.results-section__value {
  flex: 0 0 auto;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(58px, 12vw, 230px);
  font-weight: 600;
  line-height: 0.74;
  letter-spacing: -0.045em;
}

.results-section__value span {
  display: inline-block;
  margin-left: 0.04em;
  font-size: 0.54em;
  vertical-align: 0.18em;
}

.results-section__stat-copy {
  min-width: 0;
  max-width: 19ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(6px, 0.85vw, 16px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  padding-top: 2rem;
  padding-left: 0.5rem;
}

.results-section__stat-copy h3 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.results-section__stat-copy p {
  margin-top: 0.65em;
  font-size: 0.9em;
  font-weight: 400;
}



@media (max-width: 767px) {
  .results-section {
    margin-top: 50px;
    padding: 8px;
    height: 80vh;
  }

  .results-section__intro {
    grid-column: 7 / span 3;
    grid-row: 2 / span 2;
    align-self: start;
    max-width: 44ch;
    width: 160%;
    font-family: "Poppins", sans-serif;
    font-size: clamp(7px, 2.5vw, 18px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .results-section__stat-copy h3 {
    font-size: 2em;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
  }

  .results-section__stat-copy p {
    margin-top: 0.55em;
    font-size: 1.2em;
    font-weight: 400;
  }

  .Satisfaction-p{
    width: 190%;
  }

  .results-section__stat-copy {
    min-width: 0;
    max-width: 19ch;
    font-family: "Poppins", sans-serif;
    font-size: clamp(6px, 0.85vw, 16px);
    line-height: 1.03;
    letter-spacing: -0.04em;
    padding-top: 0rem;
    padding-left: 0;
    padding-bottom: 0.3rem;
  }

  .results-section__title {
    font-size: 15vw;
  }

  .results-section__value {
    flex: 0 0 auto;
    color: #961414;
    font-family: "Tusker Grotesk 4600", sans-serif;
    font-size: clamp(58px, 20vw, 230px);
    font-weight: 600;
    line-height: 0.74;
    letter-spacing: -0.045em;
}

  .results-section__stat--projects {
    grid-column: 7 / span 5;
    grid-row: 4 / span 2;
  }

  .results-section__stat--experience {
    grid-column: 1 / span 5;
    grid-row: 6 / span 2;
    margin-top: 2rem;
  }

  .results-section__stat--industries {
    grid-column: 8 / span 5;
    grid-row: 8 / span 2;
    margin-top: 2rem;
  }

  .results-section__stat--satisfaction {
    grid-column: 3 / span 5;
    grid-row: 11 / span 3;
  }
}

/* Section 4: projects */
.projects-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 420px;
  overflow: hidden;
  background: #e5deda;
}

.projects-section__viewport {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.projects-section__track {
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
}

.projects-section__stage {
  display: grid;
  flex: 0 0 50%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 1.5vw, 28px);
  /* column-gap: clamp(20px, 2.5vw, 48px); */
  row-gap: clamp(6px, 0.9vw, 18px);
  min-width: 0;
  padding: clamp(16px, 2.2vw, 42px);
}

.projects-section__title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgb(0 0 0 / 0.08);
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(54px, 7.1vw, 138px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.projects-section__eyebrow {
  position: absolute;
  z-index: 1;
  top: calc(50% + clamp(38px, 4.8vw, 92px));
  left: 50%;
  margin: 0;
  color: #961414;
  font-family: "Poppins", sans-serif;
  font-size: clamp(8px, 0.78vw, 15px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.project-card {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0;
}

.project-card--titan {
  grid-column: 2 / span 3;
  grid-row: 3 / span 4;
  transform: translateY(clamp(-156px, -7vw, -80px)) scale(1.18);
  transform-origin: top left;
}

.project-card--nebula {
  grid-column: 6 / span 3;
  grid-row: 7 / span 4;
  transform: scale(1.18);
  transform-origin: top left;
}

.project-card--neilaron {
  grid-column: 11 / span 2;
  grid-row: 3 / span 5;
  transform: translateY(clamp(-156px, -7vw, -80px)) scale(1.18);
  transform-origin: top right;
}

.project-card__media {
  margin: 0;
  overflow: hidden;
  background: #000;
}

.project-card--titan .project-card__media,
.project-card--nebula .project-card__media {
  aspect-ratio: 1.5 / 1;
}

.project-card--neilaron .project-card__media {
  aspect-ratio: 0.66 / 1;
}

.project-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__details {
  display: grid;
  gap: 0.15em;
  padding-top: clamp(3px, 0.4vw, 8px);
  font-family: "Poppins", sans-serif;
  line-height: 1.03;
}

.project-card__details h3,
.project-card__details p {
  margin: 0;
}

.project-card__details h3 {
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: clamp(14px, 1.55vw, 30px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.project-card__details p {
  max-width: 25ch;
  font-size: clamp(6px, 0.6vw, 11px);
  font-weight: 400;
  letter-spacing: -0.04em;
  padding-top: 0.2rem;
}

@media (max-width: 767px) {
  .projects-section {
    min-height: 500px;
  }

  .projects-section__stage {
    padding: 5vw;
  }

  .projects-section__title {
    font-size: 16vw;
  }

  .project-card__details h3 {
    padding-top: 0.2rem;
  }

  .project-card--titan {
    grid-column: 1 / span 5;
    grid-row: 3 / span 3;
    transform: translateY(clamp(-80px, -20vw, -50px)) scale(1.08);
  }

  .project-card--nebula {
    grid-column: 5 / span 5;
    grid-row: 7 / span 3;
    transform: scale(1.08);
  }

  .project-card--neilaron {
    grid-column: 10 / span 3;
    grid-row: 3 / span 5;
    transform: translateY(clamp(-80px, -20vw, -50px)) scale(1.08);
  }

  .project-card__details h3 {
    font-size: clamp(12px, 3.4vw, 18px);
  }

  .project-card__details p {
    font-size: clamp(6px, 1.5vw, 8px);
  }
}

/* Section 4: iPad scale only. */
@media (min-width: 768px) and (max-width: 1023px) {
  .projects-section__stage {
    column-gap: clamp(18px, 3.6vw, 36px);
  }

  .projects-section__stage:nth-child(2) {
    margin-left: 65vw;
  }

  .project-card--titan {
    transform: translate(clamp(-48px, -6vw, -32px),
        clamp(-184px, -18vw, -112px)) scale(2.36);
  }

  .project-card--nebula {
    transform: translateY(clamp(72px, 14vw, 144px)) scale(2.36);
  }

  .project-card--neilaron {
    transform: translate(45vw,
        clamp(-184px, -18vw, -112px)) scale(2.36);
  }

}

/* Ultra-wide Section 2 alignment. Kept last so it overrides the base offset. */
@media (min-width: 1921px) {
  .narrative-section__copy--middle {
    transform: translate(clamp(8px, 0.5vw, 12px),
        calc(clamp(108px, 8.4vw, 168px) - 28px));
  }

}

/* Section 4: mobile composition only. */
@media (max-width: 767px) {
  .projects-section__stage {
    column-gap: clamp(14px, 5vw, 24px);
  }

  .project-card--titan {
    transform: translateY(clamp(-80px, -20vw, -50px)) scale(1.8);
  }

  .project-card--nebula {
    transform: translateY(clamp(96px, 30vw, 144px)) scale(1.8);
  }

  .project-card--neilaron {
    transform: translate(50vw, clamp(-80px, -20vw, -50px)) scale(1.8);
  }

  .projects-section__stage:nth-child(2) {
    margin-left: 80vw;
  }
}

/* Section 5: contact */
.contact-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: 1.1vw;
  width: 100%;
  aspect-ratio: 0.849 / 1;
  padding: 4.6vw;
  overflow: hidden;
  background: #e5deda;
  color: #000;
}

.contact-section__title,
.contact-section__build,
.contact-section__pitch,
.contact-section__email,
.contact-section__detail,
.contact-section__social,
.contact-section__coordinates p {
  margin: 0;
}

.contact-section__title {
  grid-column: 1 / span 8;
  grid-row: 1 / span 3;
  align-self: start;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 19vw;
  font-weight: 600;
  line-height: 0.73;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transform: translateX(-10px);
}

.contact-section__barcode-block {
  grid-column: 10 / span 3;
  grid-row: 3;
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1vw;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section__barcode {
  display: block;
  width: 100%;
  height: 4.5vw;
  overflow: hidden;
  font-family: "Libre Barcode 39", cursive;
  font-size: 4.5vw;
  line-height: 1;
  letter-spacing: 0;
  transform: scaleX(0.48);
}

.contact-section__build {
  grid-column: 1 / span 4;
  grid-row: 4 / span 3;
  align-self: start;
  color: #000;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 6vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.contact-section__build span,
.contact-section__build strong {
  display: block;
}

.contact-section__build strong {
  color: #961414;
  font-weight: inherit;
}

.contact-section__pitch {
  grid-column: 8 / span 4;
  grid-row: 6 / span 2;
  align-self: center;
  max-width: 22ch;
  font-family: "Poppins", sans-serif;
  font-size: 1.7vw;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-section__email {
  grid-column: 1 / span 9;
  grid-row: 7 / span 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section__email a {
  margin-top: 0.25em;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 3.8vw;
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.contact-section__details {
  grid-column: 1 / span 4;
  grid-row: 9 / span 3;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 3.65vw;
  margin: 0;
}

.contact-section__detail {
  font-family: "Poppins", sans-serif;
  font-size: 1.35vw;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section__detail dt,
.contact-section__detail dd {
  margin: 0;
}

.contact-section__detail dd {
  margin-top: 0.18em;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 3.7vw;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.contact-section__social {
  grid-column: 8 / span 5;
  grid-row: 9 / span 2;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 1.03;
  text-transform: uppercase;
}

.contact-section__social a {
  margin: 0.25em 0 0.62em;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 3.45vw;
  font-weight: 600;
  line-height: 0.87;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.d4 {
  margin-top: -1.2rem;
}

.contact-section__coordinates {
  grid-column: 1 / span 3;
  grid-row: 12;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 1.2vw;
  font-family: "Poppins", sans-serif;
  font-size: 1.05vw;
  font-weight: 500;
  line-height: 1.05;
}

.contact-section__coordinates img {
  display: block;
  width: 4vw;
  height: 4vw;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(71%) saturate(3996%) hue-rotate(354deg) brightness(81%) contrast(99%);
}

.contact-section__coordinates span {
  display: block;
}


@media (max-width: 767px) {
  .contact-section {
    height: 90vh;
  }

  .contact-section__build {
    font-size: 2rem;
    width: 150%;
    grid-row: 3 / span 3;
  }

  .contact-section__email {
    grid-row: 6 / span 2;
    font-size: 2vw;
  }

  .contact-section__details {
    grid-row: 8 / span 3;
    transform: translateY(-13px);
  }

  .d4 {
    margin-top: -0.3rem;
  }

  .contact-section__social {
    font-size: 1.5vw;
    grid-area: 10 / 8 / span 2 / span 5;
    transform: translateX(-8px);
  }

  .contact-section__social a {
    margin: 0.25em 0 0.32em;
    font-size: 5vw;
  }

  .contact-section__email a {
    font-size: 8.7vw;
  }

  .contact-section__detail dd {
    font-size: 8.7vw;
  }

  .contact-section__detail {
    font-size: 2vw;
  }

  .contact-section__pitch {
    grid-column: 8 / span 4;
    grid-row: 4 / span 2;
    align-self: center;
    max-width: 22ch;
    font-family: "Poppins", sans-serif;
    font-size: 2vw;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.055em;
    text-transform: uppercase;
  }

  .contact-section__coordinates img {
    width: 7vw;
    height: 7vw;
    object-fit: contain;
  }

  .contact-section__coordinates {
    font-size: 1.85vw;
  }

  .contact-section__title {
    transform: translateX(-4px);
  }

}


/* Section 6: Ayaan */
.ayaan-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: 1.1vw;
  width: 100%;
  aspect-ratio: 0.887 / 1;
  padding: 4.9vw;
  overflow: hidden;
  background: #e5deda;
}

.ayaan-section__street-portrait,
.ayaan-section__elevator-portrait,
.ayaan-section__title,
.ayaan-section__credit {
  margin: 0;
}

.ayaan-section__street-portrait {
  z-index: 1;
  grid-column: 3 / span 3;
  grid-row: 1 / span 3;
  align-self: start;
  justify-self: end;
  width: 93%;
  aspect-ratio: 0.795 / 1;
  overflow: hidden;
  transform: translateX(2.1vw);
}

.ayaan-section__elevator-portrait {
  z-index: 1;
  grid-column: 6 / span 5;
  grid-row: 4 / span 7;
  align-self: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate(1.08vw, -0.3vw);
}

.ayaan-section figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ayaan-section__reveal {
  display: block;
  width: 100%;
  height: 100%;
}

.ayaan-section__reveal--text {
  display: inline-block;
  width: auto;
  height: auto;
}

.ayaan-section__street-portrait img {
  object-position: center center;
}

.ayaan-section__elevator-portrait img {
  object-position: center center;
}

.ayaan-section__title {
  z-index: 2;
  grid-column: 2 / span 5;
  grid-row: 10 / span 2;
  align-self: end;
  justify-self: start;
  color: #961414;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 10.5vw;
  font-weight: 600;
  line-height: 0.73;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transform: translate(4.15vw, -3vw);
  white-space: nowrap;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 1.2vw, 24px);
  width: 100%;
  min-height: 100svh;
  padding: clamp(22px, 2.15vw, 42px);
  overflow: hidden;
  background: #000;
  color: #e5deda;
  font-family: "Poppins", sans-serif;
  font-size: clamp(9px, 0.82vw, 16px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.site-footer__brand,
.site-footer__role,
.site-footer p,
.site-footer nav {
  margin: 0;
}

.site-footer__brand {
  grid-column: 1 / span 8;
  grid-row: 1 / span 3;
  align-self: start;
  color: #e5deda;
  font-family: "Poppins", sans-serif;
  font-size: clamp(56px, 10vw, 192px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.8;
  white-space: nowrap;
}

.site-footer__role {
  grid-column: 1 / span 2;
  grid-row: 10;
  align-self: start;
}

.site-footer__location {
  grid-column: 3 / span 2;
  grid-row: 10 / span 3;
  align-self: start;
}

.site-footer__location nav {
  display: flex;
  flex-direction: column;
  margin-top: 1.15em;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.site-footer__experience {
  grid-column: 6 / span 2;
  grid-row: 10 / span 3;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.35em;
}

.site-footer__education {
  grid-column: 8 / span 3;
  grid-row: 10 / span 3;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 2.65em;
}

.site-footer__skills {
  grid-column: 11 / span 2;
  grid-row: 10 / span 3;
  align-self: start;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-footer {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto auto;
    row-gap: 7vw;
    min-height: 100svh;
    padding: 4.5vw;
    font-size: clamp(9px, 1.25vw, 13px);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 12vw;
  }

  .site-footer__role {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .site-footer__location {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
  }

  .site-footer__experience {
    grid-column: 5 / span 2;
    grid-row: 3 / span 2;
  }

  .site-footer__education {
    grid-column: 1 / span 3;
    grid-row: 4;
  }

  .site-footer__skills {
    grid-column: 4 / span 3;
    grid-row: 4;
  }
}

@media (max-width: 767px) {

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(4, auto);
    row-gap: clamp(28px, 8vw, 44px);
    min-height: auto;
    padding: clamp(22px, 6vw, 32px);
    font-size: clamp(9px, 2.55vw, 11px);
    height: 100vh;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 16vw;
    margin-top: 2rem;
  }

  .site-footer__role {
    grid-column: 1;
    grid-row: 3;
  }

  .site-footer__location {
    grid-column: 2;
    grid-row: 4 / span 2;
  }

  .site-footer__experience {
    grid-column: 1;
    grid-row: 4;
  }

  .site-footer__education {
    grid-column: 2;
    grid-row: 5;
    gap: 2em;
  }

  .site-footer__skills {
    grid-column: 1;
    grid-row: 5;
  }
}

.ayaan-section__credit {
  z-index: 2;
  grid-column: 5 / span 2;
  grid-row: 12;
  align-self: end;
  justify-self: center;
  color: #000;
  font-family: "Tusker Grotesk 4600", sans-serif;
  font-size: 3.35vw;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-55px);
}


@media (max-width: 767px) {
  .ayaan-section__credit {
    transform: translateY(-25px);
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .ayaan-section__credit {
    transform: translateY(-40px);
  }
}

/* Footer: retain one aligned information baseline on iPad. */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-footer {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    row-gap: 0;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .site-footer__role {
    grid-column: 1;
    grid-row: 3;
  }

  .site-footer__location {
    grid-column: 2;
    grid-row: 3;
  }

  .site-footer__experience {
    grid-column: 3;
    grid-row: 3;
  }

  .site-footer__education {
    grid-column: 4;
    grid-row: 3;
  }

  .site-footer__skills {
    grid-column: 5;
    grid-row: 3;
  }
}

/* Footer: equal desktop spacing between all information columns. */
@media (min-width: 1025px) {
  .site-footer {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: clamp(24px, 3.5vw, 72px);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__role {
    grid-column: 1;
  }

  .site-footer__location {
    grid-column: 2;
  }

  .site-footer__experience {
    grid-column: 3;
  }

  .site-footer__education {
    grid-column: 4;
  }

  .site-footer__skills {
    grid-column: 5;
  }
}


.spacer {
  height: 40vh;
}

.redDotFooter {
  color: #961414;
}