﻿:root {
  --paper: #f3f0e8;
  --ink: #11130f;
  --muted: #6f736a;
  --line: #c9c5bb;
  --deep: #17372d;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  max-width: 1600px;
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(10, 15, 12, .72), rgba(10, 15, 12, 0));
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .logo img {
  height: 58px;
  width: auto;
}

.logo-word {
  color: var(--white);
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 1;
  max-width: 160px;
  transform: translateX(0);
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 420ms ease, max-width 420ms ease, transform 420ms ease;
}

body.is-scrolled .logo-word {
  opacity: 0;
  max-width: 0;
  transform: translateX(-8px);
}

.header .nav {
  margin-left: 18px;
  font-size: 12px;
  letter-spacing: .15em;
  text-align: right;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #111;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  filter: brightness(.72);
  transform: scale(1.03);
  transition: opacity 1600ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slideshow {
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .14) 54%, rgba(0, 0, 0, .08));
}

.hero-copy {
  position: absolute;
  left: 5vw;
  bottom: 8vh;
  z-index: 2;
  max-width: 1050px;
  color: var(--white);
}

.eyebrow,
.kicker {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  opacity: .8;
}

.kicker {
  margin-bottom: 18px;
  color: var(--muted);
}

.hero h1,
h2,
.manifesto blockquote,
.card h3,
.step span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(62px, 8.8vw, 150px);
  line-height: .86;
  letter-spacing: -.045em;
}

.hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(19px, 2vw, 31px);
  line-height: 1.3;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: none;
  width: 34px;
  height: 42px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, .82);
  border-bottom: 2px solid rgba(255, 255, 255, .82);
  transform: translateX(-50%) rotate(45deg);
  animation: cueDown 1.6s ease-in-out infinite;
}

.scroll-cue span:first-child {
  top: 0;
}

.scroll-cue span:last-child {
  top: 13px;
  animation-delay: .22s;
}

@keyframes cueDown {
  0%, 100% {
    opacity: .18;
    transform: translate(-50%, -4px) rotate(45deg);
  }

  50% {
    opacity: .9;
    transform: translate(-50%, 4px) rotate(45deg);
  }
}

.section {
  padding: 112px 5vw;
  border-bottom: 1px solid var(--line);
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: start;
}

h2 {
  margin: 0 0 25px;
  font-size: clamp(42px, 5.4vw, 88px);
  line-height: .98;
  letter-spacing: -.03em;
}

.copy {
  max-width: 760px;
  color: #2b2e29;
  font-size: 20px;
  line-height: 1.55;
}

.rule {
  height: 1px;
  margin: 36px 0;
  background: var(--line);
}

.manifesto {
  padding: 125px 5vw;
  color: var(--white);
  background: var(--deep);
}

.manifesto .kicker,
.process .text .kicker,
.step span {
  color: #a8b9b2;
}

.manifesto blockquote {
  max-width: 1250px;
  margin: 0;
  font-size: clamp(44px, 6vw, 102px);
  line-height: .98;
  letter-spacing: -.035em;
}

.manifesto .sub {
  max-width: 760px;
  margin-top: 28px;
  color: #c8d2ce;
  font-size: 18px;
}

.full {
  padding: 0;
}

.full img {
  height: min(82vh, 980px);
  object-fit: cover;
}

.caption {
  padding: 14px 5vw 34px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 100%;
  border: 1px solid #d8d4cb;
  background: var(--white);
}

.card img {
  height: 440px;
  object-fit: cover;
}

.card .body {
  padding: 28px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.05;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 800px;
  background: #e8e4db;
}

.feature img {
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 6vw;
}

.feature-copy h2 {
  font-size: clamp(48px, 6vw, 96px);
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: #0f1612;
}

.process .imgwrap img {
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.process .text {
  padding: 8vw 6vw;
}

.process .text p {
  color: #d5ddd9;
  font-size: 19px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid #4a5952;
}

.step {
  padding: 28px 20px 8px 0;
  border-right: 1px solid #4a5952;
}

.step:last-child {
  padding-left: 20px;
  border-right: 0;
}

.step span {
  font-size: 48px;
}

.step h4 {
  margin: 16px 0 8px;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.step p {
  color: #aebbb5 !important;
  font-size: 15px !important;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.gallery .stack {
  display: grid;
  gap: 18px;
}

.gallery img {
  height: 100%;
  object-fit: cover;
}

.gallery .big {
  min-height: 900px;
}

.gallery .stack img {
  min-height: 440px;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 5vw 100px;
  color: var(--white);
  background: #0d120f;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer img {
  width: 95px;
  height: auto;
}

.footer-brand span {
  color: var(--white);
  font-size: 24px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer .tag {
  color: #b9c5bf;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .15em;
  text-align: right;
  text-transform: uppercase;
}
.footer-info {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 220ms ease, opacity 220ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d5ddd9;
}

.icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.icon-instagram {
  border: 1.8px solid currentColor;
  border-radius: 5px;
}

.icon-instagram::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-instagram::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.icon-mail {
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.icon-mail::before,
.icon-mail::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 1.8px;
  background: currentColor;
}

.icon-mail::before {
  left: 1px;
  transform: rotate(35deg);
  transform-origin: left center;
}

.icon-mail::after {
  right: 1px;
  transform: rotate(-35deg);
  transform-origin: right center;
}

@media (max-width: 980px) {
  .grid2,
  .feature,
  .process,
  .gallery,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .card img,
  .feature img,
  .process .imgwrap img,
  .gallery .big,
  .gallery .stack img {
    height: 58vh;
    min-height: 58vh;
  }

  .step {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #4a5952;
  }

  .step:last-child {
    padding-left: 0;
    border-bottom: 0;
  }


  .hero {
    height: 100svh;
    min-height: 680px;
    max-height: none;
  }

  .hero-slide {
    object-position: center center;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    bottom: 72px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(54px, 16vw, 84px);
    line-height: .9;
  }

  .hero p {
    max-width: 92%;
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.25;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .scroll-cue {
    display: block;
    bottom: 22px;
  }

  .section,
  .manifesto {
    padding: 78px 24px;
  }

  .header {
    padding: 14px 18px;
  }

  .header .nav {
    margin-left: 18px;
    text-align: right;
  }

  .header .logo img {
    height: 46px;
  }

  .logo-word {
    font-size: 18px;
    max-width: 130px;
  }

  .footer {
    display: block;
    padding: 60px 24px;
  }

  .footer .tag {
    margin-top: 0;
    text-align: left;
  }
  .footer-info {
    justify-items: start;
    margin-top: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms cubic-bezier(.22, 1, .36, 1), transform 900ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translateX(-34px);
}

.reveal.from-right {
  transform: translateX(34px);
}

.reveal.zoom-soft {
  transform: scale(.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

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

  .reveal,
  .reveal.from-left,
  .reveal.from-right,
  .reveal.zoom-soft {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide {
    transition: none;
    transform: none;
  }

  .hero-slide:not(:first-child) {
    display: none;
  }
}











