/* ========================================
   PHARO929 — TECHNOLOGY VENTURES
   CLEAN PRODUCTION STYLESHEET — V2
======================================== */

:root {
  --ivory: #f7f4ee;
  --soft-ivory: #fcfaf7;
  --stone: #d9d2c7;
  --charcoal: #1d1d1b;
  --soft-charcoal: #4f4d48;
  --gold: #b59a65;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;

  --page-padding: clamp(1.5rem, 5vw, 5rem);
  --section-space: clamp(5rem, 10vw, 10rem);
  --max-width: 1440px;
}


/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft-ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--gold);
  color: var(--white);
}


/* ========================================
   GLOBAL
======================================== */

.section {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding:
    calc(var(--section-space) * 1.08)
    var(--page-padding);
}

/* Eyebrows and section numbers are no longer part of the design. */
.section-eyebrow,
.hero-eyebrow,
.section-number,
.venture-number {
  display: none;
}

.venture-category {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(29, 29, 27, 0.35);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    gap 350ms ease,
    border-color 350ms ease,
    color 350ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 1rem;
  border-color: var(--gold);
  color: var(--gold);
}

.text-link span {
  font-size: 1rem;
}

a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}


/* ========================================
   HEADER
======================================== */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem var(--page-padding);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background-color 500ms ease,
    color 500ms ease,
    padding 500ms ease,
    border-color 500ms ease;
}

.site-header.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: rgba(29, 29, 27, 0.07);
  background: rgba(252, 250, 247, 0.9);
  color: var(--charcoal);
  backdrop-filter: blur(22px);
}

.brand,
.footer-brand {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand {
  transition:
    color 350ms ease,
    letter-spacing 350ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--gold);
  letter-spacing: 0.105em;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.site-navigation a {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/pharo929-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroImageEntrance 1.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 16, 15, 0.68) 0%,
      rgba(16, 16, 15, 0.48) 34%,
      rgba(16, 16, 15, 0.12) 66%,
      rgba(16, 16, 15, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.03) 52%,
      rgba(0, 0, 0, 0.32) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 74%);
  max-width: 860px;
  padding:
    clamp(8rem, 14vw, 12rem)
    var(--page-padding)
    clamp(7rem, 10vw, 9rem);
  animation: heroContentEntrance 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 160ms both;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 2.4rem;
  font-size: clamp(4.4rem, 8.8vw, 9.3rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.85;
}

.hero-link {
  position: relative;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms ease;
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: var(--page-padding);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroContentEntrance 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 520ms both;
}

.scroll-line {
  display: block;
  width: 5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-line::after {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes heroImageEntrance {
  from {
    opacity: 0;
    transform: scale(1.065);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes heroContentEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-120%);
  }

  60%,
  100% {
    transform: translateX(240%);
  }
}


/* ========================================
   INTRODUCTION
======================================== */

.introduction {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(4rem, 9vw, 10rem);
  padding-top: calc(var(--section-space) + 4rem);
  padding-bottom: calc(var(--section-space) + 3rem);
}

.introduction::before,
.philosophy::before {
  position: absolute;
  z-index: 0;
  color: rgba(181, 154, 101, 0.035);
  content: "P";
  font-family: var(--serif);
  font-size: clamp(14rem, 28vw, 30rem);
  font-weight: 600;
  line-height: 0.75;
  pointer-events: none;
}

.introduction::before {
  top: 13%;
  right: -2%;
}

.introduction::after {
  position: absolute;
  right: var(--page-padding);
  bottom: 0;
  left: var(--page-padding);
  height: 1px;
  background: rgba(29, 29, 27, 0.08);
  content: "";
}

.introduction > *,
.philosophy > * {
  position: relative;
  z-index: 1;
}

.introduction-heading {
  padding-left: clamp(0rem, 5vw, 6rem);
}

.introduction h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.introduction-copy {
  align-self: end;
  max-width: 560px;
  padding-bottom: 0.75rem;
}

.introduction-copy p {
  margin-bottom: 1.5rem;
  color: var(--soft-charcoal);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 300;
}

.introduction-copy p:first-child {
  color: var(--charcoal);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.introduction-copy p:first-child::first-letter {
  float: left;
  margin-top: 0.08em;
  margin-right: 0.12em;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 0.75;
}


/* ========================================
   VISION FEATURE
======================================== */

.vision-feature {
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.35fr 0.85fr;
  background: var(--ivory);
}

.vision-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.vision-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  content: "";
  pointer-events: none;
}

.vision-image img {
  height: 100%;
  object-fit: cover;
}

.vision-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4rem, 8vw, 9rem);
}

.vision-content h2 {
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
}

.vision-content > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--soft-charcoal);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
}


/* ========================================
   VENTURES
======================================== */

.ventures {
  padding-top: calc(var(--section-space) + 1rem);
  padding-bottom: calc(var(--section-space) + 2rem);
}

.ventures-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(3rem, 7vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.ventures-heading h2 {
  margin-bottom: 0;
  font-size: clamp(4rem, 8vw, 8rem);
}

.ventures-heading > p {
  max-width: 510px;
  margin-bottom: 0.75rem;
  color: var(--soft-charcoal);
  font-weight: 300;
}

.venture-list {
  border-top: 1px solid rgba(29, 29, 27, 0.15);
}

.venture-card {
  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 6vw, 6rem) 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.15);
  transition: padding 450ms ease;
}

.venture-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 244, 238, 0.78);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.venture-card::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: var(--gold);
  content: "↗";
  font-size: 1rem;
  opacity: 0;
  transform: translate(-5px, -50%);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.venture-card:hover {
  padding-right: 0.65rem;
  padding-left: 0.65rem;
}

.venture-card:hover::before {
  transform: scaleY(1);
}

.venture-card:hover::after {
  opacity: 0.62;
  transform: translate(0, -50%);
}

.venture-card-future::after {
  display: none;
}

.venture-details {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.68fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(3rem, 8vw, 9rem);
  row-gap: 1.35rem;
  align-items: start;
}

.venture-category {
  grid-column: 1 / -1;
  grid-row: 1;
}

.venture-details h3 {
  grid-column: 1;
  grid-row: 2 / 4;
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  transition:
    color 400ms ease,
    transform 400ms ease;
}

.venture-details > p:not(.venture-category) {
  grid-column: 2;
  grid-row: 2;
  max-width: 520px;
  margin: 0;
  color: var(--soft-charcoal);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 300;
}

.venture-details > .text-link,
.venture-details > .future-label {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
  margin-top: 0.4rem;
}

.venture-card:hover .venture-details h3 {
  color: var(--gold);
  transform: translateX(0.12rem);
}

.future-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-label::before {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  content: "";
}


/* ========================================
   PORTFOLIO IMAGE
======================================== */

.portfolio-image-section {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.portfolio-image-section > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.portfolio-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 14, 0.58) 0%,
      rgba(15, 15, 14, 0.23) 48%,
      rgba(15, 15, 14, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 15, 14, 0.02) 0%,
      rgba(15, 15, 14, 0.28) 100%
    );
}

.portfolio-image-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 840px;
  max-width: 780px;
  justify-content: flex-end;
  flex-direction: column;
  padding:
    var(--section-space)
    var(--page-padding);
}

.portfolio-image-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
}


/* ========================================
   PHILOSOPHY
======================================== */

.philosophy {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.35fr 0.55fr;
  gap: clamp(4rem, 10vw, 12rem);
  padding-top: calc(var(--section-space) + 4rem);
  padding-bottom: calc(var(--section-space) + 4rem);
}

.philosophy::before {
  right: -2%;
  bottom: 4%;
}

.philosophy-statement {
  padding-left: clamp(0rem, 5vw, 6rem);
}

.philosophy h2 {
  max-width: 1000px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.7vw, 7rem);
}

.philosophy-copy {
  display: flex;
  align-items: flex-end;
}

.philosophy-copy p {
  max-width: 470px;
  margin-bottom: 0.75rem;
  color: var(--soft-charcoal);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  font-weight: 300;
}


/* ========================================
   CLOSING
======================================== */

.closing {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.closing-image,
.closing-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-image img {
  object-fit: cover;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 11, 0.08) 0%,
      rgba(12, 12, 11, 0.18) 42%,
      rgba(12, 12, 11, 0.73) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 12, 11, 0.04),
      rgba(12, 12, 11, 0.3)
    );
}

.closing-content {
  position: relative;
  z-index: 2;
  width: min(690px, 48%);
  margin-left: auto;
  padding:
    var(--section-space)
    var(--page-padding)
    var(--section-space)
    2rem;
}

.closing-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.closing-content > p {
  max-width: 540px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
}

.closing-link {
  border-color: rgba(255, 255, 255, 0.46);
}


/* ========================================
   CONTACT
======================================== */

.contact {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.7fr;
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--soft-ivory);
}

.contact::before {
  position: absolute;
  top: 0;
  right: var(--page-padding);
  left: var(--page-padding);
  height: 1px;
  background: rgba(29, 29, 27, 0.08);
  content: "";
}

.contact-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(4rem, 7.4vw, 7.5rem);
}

.contact-details {
  padding-bottom: 0.8rem;
}

.contact-details > p {
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--soft-charcoal);
  font-weight: 300;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(29, 29, 27, 0.35);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition:
    gap 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.contact-email span {
  transition: transform 350ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  gap: 1.4rem;
  border-color: var(--gold);
  color: var(--gold);
}

.contact-email:hover span,
.contact-email:focus-visible span {
  transform: translate(2px, -2px);
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
  position: relative;
  display: grid;
  width: 100%;
  align-items: end;
  overflow: hidden;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  padding: 2.5rem var(--page-padding);
  border-top: 1px solid rgba(29, 29, 27, 0.12);
  background: var(--soft-ivory);
}

.site-footer::after {
  position: absolute;
  right: var(--page-padding);
  bottom: -3.5rem;
  color: rgba(29, 29, 27, 0.014);
  content: "929";
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.site-footer p {
  margin: 0;
  color: var(--soft-charcoal);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ========================================
   REVEAL ANIMATIONS
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1100ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   LARGE SCREENS
======================================== */

@media (min-width: 1600px) {
  :root {
    --max-width: 1600px;
  }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {
  .introduction,
  .ventures-heading,
  .philosophy,
  .contact {
    grid-template-columns: 1fr;
  }

  .introduction {
    gap: 3rem;
  }

  .introduction-heading,
  .philosophy-statement {
    padding-left: 0;
  }

  .introduction-copy,
  .philosophy-copy {
    max-width: 680px;
  }

  .vision-feature {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .vision-image {
    min-height: 650px;
  }

  .vision-content {
    padding:
      clamp(4rem, 10vw, 7rem)
      var(--page-padding);
  }

  .ventures-heading {
    gap: 2rem;
  }

  .venture-details {
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.8fr);
    column-gap: clamp(2.5rem, 6vw, 5rem);
  }

  .philosophy {
    gap: 3rem;
  }

  .closing {
    align-items: flex-end;
  }

  .closing-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(12, 12, 11, 0.08) 0%,
        rgba(12, 12, 11, 0.28) 45%,
        rgba(12, 12, 11, 0.78) 100%
      );
  }

  .closing-content {
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 6rem var(--page-padding);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {
  :root {
    --page-padding: 1.35rem;
    --section-space: 5.5rem;
  }

  .site-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .site-navigation {
    gap: 1.1rem;
  }

  .site-navigation a {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 92svh;
    align-items: flex-end;
  }

  .hero-image {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(12, 12, 11, 0.18) 0%,
        rgba(12, 12, 11, 0.35) 42%,
        rgba(12, 12, 11, 0.8) 100%
      );
  }

  .hero-content {
    width: 100%;
    padding:
      9rem
      var(--page-padding)
      6rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.15rem);
    line-height: 0.94;
  }

  .hero-description {
    max-width: 95%;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero-scroll {
    display: none;
  }

  .introduction {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }

  .introduction h2,
  .vision-content h2,
  .ventures-heading h2,
  .portfolio-image-copy h2,
  .philosophy h2,
  .closing-content h2,
  .contact-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .vision-image {
    min-height: 480px;
  }

  .venture-card {
    padding: 3.5rem 0;
  }

  .venture-card::after {
    display: none;
  }

  .venture-card:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .venture-details {
    display: block;
  }

  .venture-category {
    margin-bottom: 1.4rem;
  }

  .venture-details h3 {
    margin-bottom: 1.6rem;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .venture-details > p:not(.venture-category) {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .venture-details > .text-link,
  .venture-details > .future-label {
    margin-top: 0;
  }

  .venture-card:hover .venture-details h3 {
    transform: none;
  }

  .portfolio-image-section,
  .portfolio-image-copy {
    min-height: 680px;
  }

  .portfolio-image-section > img {
    object-position: 62% center;
  }

  .portfolio-image-copy {
    justify-content: flex-end;
    padding-bottom: 4rem;
  }

  .philosophy {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .closing {
    min-height: 720px;
  }

  .closing-image img {
    object-position: 38% center;
  }

  .closing-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .contact {
    gap: 3rem;
  }

  .contact-email {
    font-size: 1.2rem;
  }

  .introduction-copy p:first-child::first-letter {
    float: none;
    margin: 0;
    font-size: inherit;
  }

  .introduction::before,
  .philosophy::before {
    opacity: 0.55;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }

  .site-footer::after {
    right: -1rem;
    bottom: -1rem;
    font-size: 7rem;
  }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 430px) {
  .site-navigation a:first-child {
    display: none;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .text-link {
    font-size: 0.68rem;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }
}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image,
  .hero-content,
  .hero-scroll {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}