:root {
  --peak-black: #1c1c1c;
  --andes-green: #2f5d50;
  --stone: #d6d2cb;
  --snow: #f8f8f5;
  --copper: #b87333;
  --ink-soft: rgba(28, 28, 28, 0.72);
  --line: rgba(28, 28, 28, 0.12);
  --shadow: 0 24px 80px rgba(28, 28, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--peak-black);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.85rem, 7.5vw, 6.65rem);
  line-height: 0.94;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4.8vw, 4.85rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--snow);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 248, 245, 0.92);
  color: var(--peak-black);
  box-shadow: 0 10px 40px rgba(28, 28, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  width: 220px;
  height: auto;
}

.brand {
  position: relative;
  display: block;
  width: 220px;
  height: 44px;
  border-radius: 6px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.35s ease;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.is-open) .brand {
  background: rgba(28, 28, 28, 0.16);
  box-shadow: 0 0 0 10px rgba(28, 28, 28, 0.16);
}

.site-footer img {
  width: 156px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  color: var(--copper);
  opacity: 1;
}

.nav-toggle {
  display: none;
  color: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  overflow: hidden;
  color: var(--snow);
  place-items: end start;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.06);
  will-change: transform;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 28, 28, 0.76) 0%, rgba(28, 28, 28, 0.45) 44%, rgba(28, 28, 28, 0.1) 100%),
    linear-gradient(0deg, rgba(28, 28, 28, 0.54) 0%, rgba(28, 28, 28, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  padding: clamp(120px, 14vw, 190px) 0 clamp(48px, 6vw, 86px) clamp(18px, 7vw, 92px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(248, 248, 245, 0.86);
  font-size: clamp(1.03rem, 1.7vw, 1.35rem);
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.contact-links a,
.collection-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.contact-links a:hover,
.collection-card a:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--snow);
  color: var(--peak-black);
}

.contact .button-primary {
  background: var(--peak-black);
  color: var(--snow);
}

.button-ghost,
.contact-links a,
.collection-card a {
  border: 1px solid currentColor;
  color: currentColor;
}

.section {
  padding: clamp(82px, 12vw, 156px) clamp(18px, 5vw, 72px);
}

.intro {
  padding-top: clamp(42px, 5vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.intro-copy,
.section-heading,
.brand-note {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.lead {
  color: var(--peak-black);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 650;
}

.intro-copy .lead + .lead {
  margin-top: 8px;
}

.intro-copy p:last-child {
  margin-top: 24px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.benefit-card,
.sustain-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.pill-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--peak-black);
  color: var(--snow);
  isolation: isolate;
  box-shadow: 0 14px 38px rgba(28, 28, 28, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-grid article:hover {
  box-shadow: 0 28px 75px rgba(28, 28, 28, 0.16);
  transform: translateY(-4px);
}

.pill-grid article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(28, 28, 28, 0.78), rgba(28, 28, 28, 0.05) 72%);
}

.pill-grid picture,
.pill-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.35s ease;
}

.pill-grid article:hover img {
  opacity: 0.94;
  transform: scale(1.055);
}

.pill-grid span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-weight: 800;
}


.performance,
.brands,
.process {
  background: #ffffff;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  min-height: 190px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(184, 115, 51, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.icon {
  display: block;
  margin-bottom: 38px;
  color: var(--andes-green);
  font-size: 2rem;
}

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

.collection-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--peak-black);
  color: var(--snow);
}

.collection-card.large {
  grid-column: span 2;
}

.collection-card picture,
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.collection-card::after,
.case-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(28, 28, 28, 0.74), rgba(28, 28, 28, 0.05) 70%);
}

.collection-card:hover img,
.case-card:hover img {
  opacity: 0.9;
  transform: scale(1.045);
}

.collection-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.collection-card p {
  max-width: 420px;
  margin: 10px 0 18px;
  color: rgba(248, 248, 245, 0.82);
}

.collection-card a {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo-card {
  display: grid;
  min-height: 108px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(28, 28, 28, 0.66);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.brand-logo-card:hover {
  border-color: rgba(47, 93, 80, 0.28);
  box-shadow: 0 18px 55px rgba(28, 28, 28, 0.08);
  transform: translateY(-2px);
}

.brand-logo-card img {
  width: min(64%, 230px);
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.02);
}

.brand-logo-card span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.brand-logo-card.is-placeholder {
  border-style: dashed;
  background: transparent;
}

.brand-note {
  max-width: 760px;
  margin-top: 26px;
}

.sustainability {
  background: var(--stone);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 58px;
}

.sustain-grid span {
  min-height: 120px;
  padding: 24px;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline article {
  position: relative;
  min-height: 170px;
  padding: 28px 24px;
  border-top: 1px solid var(--andes-green);
}

.timeline article::before {
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.timeline strong {
  display: block;
  margin-bottom: 18px;
  color: var(--andes-green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.timeline span {
  font-size: 1.2rem;
  font-weight: 800;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--snow);
}

.case-card picture,
.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.manifesto {
  padding: clamp(94px, 14vw, 180px) clamp(18px, 6vw, 96px);
  background:
    linear-gradient(rgba(28, 28, 28, 0.9), rgba(28, 28, 28, 0.9)),
    url("assets/hero-team.webp") center/cover fixed;
  color: var(--snow);
}

.manifesto-inner {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.08;
}

.manifesto-inner p + p,
.manifesto-inner strong {
  display: block;
  margin-top: 32px;
}

.manifesto-inner strong {
  color: var(--copper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(28, 28, 28, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--peak-black);
  font: inherit;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: end;
  padding: 52px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink-soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.site-footer address {
  font-style: normal;
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(28, 28, 28, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    place-items: center;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    background: var(--snow);
    color: var(--peak-black);
    font-size: 1.8rem;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .pill-grid,
  .benefit-grid,
  .collection-grid,
  .logo-cloud,
  .sustain-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card.large {
    grid-column: span 1;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 168px;
    height: 36px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-content {
    padding: 146px 18px 52px;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .pill-grid,
  .benefit-grid,
  .collection-grid,
  .logo-cloud,
  .sustain-grid,
  .case-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 390px;
  }

  .case-card {
    min-height: 220px;
  }

  .manifesto {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
