/* ===================================================================
   BOLT VENTURES — brand system tokens
=================================================================== */
:root {
  --forest: #0E3924;
  --forest-deep: #14432F;
  --forest-soft: #14432F;
  --olive: #738C14;
  --olive-deep: #606B1C;
  --lime: #E1DD72;
  --gold: #ffe8cd;
  --blush: #E4BAB5;
  --pink-soft: #F1B2C0;
  --sage: #CFD9A7;
  --cream: #FAF8EF;
  --ink: #0E372A;

  --font-display: 'Gravitas One', serif;
  --font-body: 'Poppins', sans-serif;

  --ease: cubic-bezier(.22, 1, .3, 1);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.gravitas-one-regular {
  font-family: "Gravitas One", serif;
  font-weight: 200;
  font-style: normal;
}


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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

p {
  margin: 0;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 1rem;
  padding: .2rem .8rem;
  border-radius: 999px;
  border: 2px solid rgba(14, 55, 42, .08);
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
  display: inline-block;
}

.eyebrow--on-gradient {
  color: var(--forest-deep);
}

.eyebrow--on-gradient::before {
  background: var(--forest-deep);
}

/* ===================================================================
   grain + progress rail
=================================================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--olive), var(--lime), var(--gold));
  transition: width .1s linear;
}

/* ===================================================================
   NAV
=================================================================== */
.nav {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1100px, calc(100% - 2.4rem));
  padding: .7rem .8rem .7rem 1.3rem;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 55, 42, .08);
  border-radius: 999px;
  box-shadow: 0 20px 40px -24px rgba(14, 55, 42, .25);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 44px -22px rgba(14, 55, 42, .32);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.mark {
  width: 26px;
  height: 26px;
  color: var(--forest-deep);
  flex-shrink: 0;
}

.mark--sm svg {
  width: 100%;
  height: 100%;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .03em;
  font-size: .85rem;
  color: var(--forest-deep);
}

.nav__brand-text em {
  font-style: normal;
  font-weight: 400;
  color: var(--olive);
  margin-left: .25em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.nav__links a {
  color: var(--forest);
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  padding-block: .2rem;
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0%;
  background: var(--olive);
  transition: width .3s var(--ease);
}

.nav__links a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--forest-deep);
  color: var(--cream) !important;
  font-weight: 600 !important;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  font-size: .82rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--olive-deep);
  box-shadow: 0 10px 22px rgba(14, 55, 42, .3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 600;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
  transition: all .3s var(--ease);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--forest-deep);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-menu .nav__cta {
  font-size: 1rem;
}

/* ===================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(55% 45% at 85% 0%, rgba(207, 217, 167, .55), transparent 60%),
    radial-gradient(45% 40% at 5% 95%, rgba(225, 221, 114, .35), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #F5F2E4 55%, var(--sage) 140%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 1.5rem 0rem;
  overflow: hidden;
}

.hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floater {
  position: absolute;
  color: var(--forest);
  opacity: .4;
}

.floater.f1 {
  width: 70px;
  top: 14%;
  left: 9%;
  animation: drift1 16s ease-in-out infinite;
}

.floater.f2 {
  width: 46px;
  top: 66%;
  left: 13%;
  color: var(--olive);
  opacity: .35;
  animation: drift2 14s ease-in-out infinite;
}

.floater.f3 {
  width: 60px;
  top: 20%;
  right: 11%;
  color: var(--olive-deep);
  opacity: .3;
  animation: drift3 20s ease-in-out infinite;
}

.floater.f4 {
  width: 40px;
  bottom: 16%;
  right: 18%;
  color: var(--forest);
  opacity: .4;
  animation: drift1 12s ease-in-out infinite reverse;
}

.floater.f5 {
  width: 34px;
  top: 10%;
  left: 46%;
  color: var(--olive);
  opacity: .35;
  animation: drift2 18s ease-in-out infinite;
}

.floater.f6 {
  width: 52px;
  bottom: 12%;
  left: 42%;
  color: var(--forest);
  opacity: .25;
  animation: drift3 15s ease-in-out infinite reverse;
}

@keyframes drift1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(18px, -24px) rotate(12deg);
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-22px, 20px) rotate(-10deg);
  }
}

@keyframes drift3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(14px, 26px) rotate(8deg);
  }
}

.hero .eyebrow {
  color: var(--olive-deep);
}

.hero .eyebrow::before {
  background: var(--olive-deep);
}

.hero__title {
  max-width: 920px;
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--forest-deep);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .1em;
}

.hero__title span {
  display: inline-block;
}

/* ---------- 3D flip word in headline ---------- */
.hero__flip {
  display: inline-block;
  position: relative;
  perspective: 900px;
  height: 1.1em;
  vertical-align: top;
  text-align: left;
}

.hero__flip-word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  color: var(--olive-deep);
  font-style: italic;
  transform-origin: center;
  opacity: 0;
  transform: rotateX(90deg);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
  backface-visibility: hidden;
}

.hero__flip-word::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: .08em;
  height: .24em;
  background: var(--lime);
  opacity: .55;
  z-index: -1;
  border-radius: 2px;
}

.hero__flip-word.is-active {
  opacity: 1;
  transform: rotateX(0deg);
}

.hero__sub {
  max-width: 620px;
  margin-top: 1.6rem;
  color: #4b5a45;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
}

.hero__cta {
  margin: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.btn--gold {
  background: var(--forest-deep);
  color: var(--cream);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(14, 55, 42, .28);
  background: var(--olive-deep);
}

.btn--gold span {
  transition: transform .3s var(--ease);
}

.btn--gold:hover span {
  transform: translateX(4px);
}

.btn--ghost {
  border-color: rgba(14, 55, 42, .3);
  color: var(--forest-deep);
}

.btn--ghost:hover {
  border-color: var(--forest-deep);
  background: rgba(14, 55, 42, .06);
  transform: translateY(-3px);
}

.hero__stats {
  margin-top: 4rem;
  display: flex;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest-deep);
  font-weight: 800;
}

.hero__stats span {
  color: #4b5a45;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .35rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(14, 55, 42, .25);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--forest-deep);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% {
    opacity: 1;
    top: 6px;
  }

  70% {
    opacity: 0;
    top: 22px;
  }

  100% {
    opacity: 0;
    top: 6px;
  }
}
/* ---------- floating cycling stat chip ---------- */
.stat-chip {
  position: absolute;
  top: 26%;
  right: clamp(1.5rem, 6vw, 7rem);
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(207, 217, 167, .18);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: .9rem 1.2rem;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .5);
  animation: chipFloat 5s ease-in-out infinite;
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.stat-chip__icon {
  width: 26px;
  height: 20px;
  color: var(--blush);
  flex-shrink: 0;
}

.stat-chip__icon svg {
  width: 100%;
  height: 100%;
}

.stat-chip__icon rect {
  fill: currentColor;
}

.stat-chip__track {
  position: relative;
  display: block;
  min-width: 168px;
  height: 2.6rem;
}

.stat-chip__item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.stat-chip__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.stat-chip__item strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--forest-deep);
  line-height: 1.1;
}

.stat-chip__item em {
  font-style: normal;
  font-size: .72rem;
  color: var(--forest-deep);
  margin-top: .15rem;
}

@media (max-width: 900px) {
  .stat-chip {
    position: static;
    margin: 2rem auto 0;
    width: max-content;
  }
}

.hero__stats {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  font-weight: 800;
}

.hero__stats span {
  color: var(--forest);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .35rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(26, 33, 2, 0.5);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--forest);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% {
    opacity: 1;
    top: 6px;
  }

  70% {
    opacity: 0;
    top: 22px;
  }

  100% {
    opacity: 0;
    top: 6px;
  }
}

/* ===================================================================
   MARQUEE
=================================================================== */
.marquee {
  background: var(--olive-deep);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  align-items: center;
  animation: scroll-left 32s linear infinite;
}

.marquee__track span {
  color: var(--cream);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===================================================================
   SECTION HEAD
=================================================================== */
.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding-inline: 1.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--forest-deep);
}

.section-sub {
  margin-top: 1rem;
  color: #4b5a45;
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-head--light .eyebrow {
  color: var(--olive);
}

.section-head--light .eyebrow::before {
  background: var(--olive);
}

.section-head--light h2 {
  color: var(--forest-deep);
}

.section-head--light .section-sub {
  color: var(--olive)
}

/* ===================================================================
   SHOWCASE
=================================================================== */
.showcase {
  padding: 7rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.showcase__watermark {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 1;
  color: var(--olive);
  opacity: 15%;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.showcase .section-head,
.showcase__grid {
  position: relative;
  z-index: 1;
}

.reveal-right {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  grid-auto-rows: 260px;
}

.show-card {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  grid-column: span 2;
}

.show-card.span-3 {
  grid-column: span 3;
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.show-card:hover img {
  transform: scale(1.06);
}

.show-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  background: linear-gradient(0deg, rgba(8, 31, 23, .92) 10%, rgba(8, 31, 23, .35) 70%, transparent 100%);
  color: var(--cream);
  transform: translateY(20%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.show-card:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.show-card .tag {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--forest-deep);
  background: var(--gold);
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.show-card h3 {
  font-size: 1.15rem;
  margin-bottom: .35rem;
}

.show-card p {
  font-size: .85rem;
  color: var(--sage);
  line-height: 1.5;
  max-width: 34ch;
}

@media (max-width: 900px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .show-card,
  .show-card.span-3 {
    grid-column: span 2;
  }

  .show-card figcaption {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(0deg, rgba(8, 31, 23, .94) 20%, rgba(8, 31, 23, .1) 100%);
  }
}

/* ===================================================================
   SERVICES
=================================================================== */
.services {
  background: var(--cream);
  padding: 1rem 1.5rem;
  position: relative;
}

.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(14, 55, 42, .08);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 20px 40px -32px rgba(14, 55, 42, .35);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 140, 20, .35);
  box-shadow: 0 26px 50px -28px rgba(14, 55, 42, .4);
}

.service-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  color: var(--olive);
  margin-bottom: 1.3rem;
  transition: transform .4s var(--ease), color .4s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.08);
  color: var(--olive-deep);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: var(--forest-deep);
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.service-card p {
  color: #4b5a45;
  font-size: .92rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.services__more {
  text-align: center;
  margin-top: 3rem;
}

/* ===================================================================
   STAT BAND (gradient)
=================================================================== */
.stat-band {
  background: linear-gradient(200deg, var(--olive-deep) 0%, var(--olive) 45%, var(--lime) 100%);
  padding: 6rem 1.5rem;
}

.stat-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.stat-band h2 {
  color: var(--forest-deep);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  max-width: 760px;
  margin: 0 auto;
}

.stat-band__row {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.stat-band__row div {
  max-width: 220px;
}

.stat-band__row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--forest-deep);
}

.stat-band__row span {
  display: block;
  margin-top: .5rem;
  font-size: .88rem;
  color: rgba(14, 55, 42, .75);
  line-height: 1.5;
}

/* ===================================================================
   ADVANTAGE — scroll-pinned, content-swapping section
=================================================================== */
.advantage {
  position: relative;
  height: 400vh;
  background: var(--forest-deep);
}

.advantage__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage__bg {
  position: absolute;
  inset: 0;
  transition: opacity .3s;
}

.advantage__bg.bg-a {
  background: linear-gradient(160deg, #0E372A, #14432F 70%);
}

.advantage__bg.bg-b {
  background: linear-gradient(160deg, #14432F, #3C4A12 70%);
}

.advantage__bg.bg-c {
  background: linear-gradient(160deg, #3C4A12, #5C4A2E 70%);
}

.advantage__bg.bg-d {
  background: linear-gradient(160deg, #5C4A2E, #0E372A 70%);
}

.advantage__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 55% at 50% 42%, rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
}

.advantage__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 1.5rem;
  transition: opacity .25s ease;
}

.advantage__content.fade-out {
  opacity: 0;
}

.advantage__content .eyebrow {
  color: var(--gold);
  justify-content: center;
}

.advantage__content .eyebrow::before {
  background: var(--gold);
}

.advantage__content h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
}

.advantage__stat-card {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(207, 217, 167, .2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem 1.6rem;
  text-align: left;
}

.advantage__stat-icon {
  width: 28px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.advantage__stat-icon svg {
  width: 100%;
  height: 100%;
}

.advantage__stat-icon rect {
  fill: currentColor;
}

.advantage__stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--cream);
}

.advantage__stat-card span {
  font-size: .78rem;
  color: var(--sage);
}

.advantage__dots {
  margin-top: 2.6rem;
  display: flex;
  gap: .6rem;
  justify-content: center;
}

.advantage__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 217, 167, .3);
  transition: background .4s, transform .4s;
}

.advantage__dots .dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.advantage__hint {
  margin-top: 1.6rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(207, 217, 167, .45);
}

/* ===================================================================
   PROCESS
=================================================================== */
.process {
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--cream);
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.process__list li {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(14, 55, 42, .08);
  box-shadow: 0 20px 40px -30px rgba(14, 55, 42, .35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.process__list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -26px rgba(14, 55, 42, .4);
}

.process__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.process__icon {
  width: 34px;
  height: 34px;
  color: var(--olive);
}

.process__icon svg {
  width: 100%;
  height: 100%;
}

.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
  -webkit-text-stroke: .01px var(--forest-deep);
}

.process__list h3 {
  font-size: 1.05rem;
  color: var(--forest-deep);
  margin-bottom: .5rem;
}

.process__list p {
  font-size: .88rem;
  line-height: 1.55;
  color: #4b5a45;
}

@media (max-width: 900px) {
  .process__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .process__list {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   SPLIT CTA (quote panel)
=================================================================== */
.quote-cta {
  max-width: var(--container);
  margin: 0 auto 7rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.6rem;
  align-items: stretch;
}

.quote-cta__circle {
  background: radial-gradient(120% 100% at 30% 20%, var(--forest-soft), var(--forest-deep) 70%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.2rem;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.quote-cta__circle::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 198, 149, .12), transparent 70%);
  top: -40%;
  right: -30%;
}

.quote-cta__circle-inner {
  position: relative;
  z-index: 1;
  max-width: 300px;
}

.quote-cta__eyebrow {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.quote-cta__circle h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quote-cta__text {
  color: rgba(207, 217, 167, .85);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 1.3rem;
}

.quote-cta__link {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  border-bottom: 1px solid rgba(240, 198, 149, .4);
  padding-bottom: .15rem;
}

.quote-cta__card {
  background: #fff;
  border: 1px solid rgba(14, 55, 42, .08);
  border-radius: 28px;
  padding: 3rem clamp(1.6rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 30px 60px -36px rgba(14, 55, 42, .35);
}

.quote-cta__card .eyebrow {
  color: var(--olive-deep);
}

.quote-cta__card .eyebrow::before {
  background: var(--olive-deep);
}

.quote-cta__card h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--forest-deep);
  margin: .8rem 0 1rem;
  line-height: 1.3;
}

.quote-cta__card p {
  color: #4b5a45;
  font-size: .94rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  max-width: 46ch;
}

.quote-cta__card .btn {
  align-self: flex-start;
}

@media (max-width: 800px) {
  .quote-cta {
    grid-template-columns: 1fr;
  }

  .quote-cta__circle {
    min-height: auto;
  }
}

/* ===================================================================
   BRANDING IN MOTION - cinematic real-photo scenes
=================================================================== */
.scenes {
  background: var(--forest-deep);
  padding: 7rem 0 5rem;
}

.scene {
  max-width: var(--container);
  margin: 0 auto 2.4rem;
  padding: 0 1.5rem;
}

.scene:last-child {
  margin-bottom: 0;
}

.scene__frame {
  position: relative;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16/8.6;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55);
  background: var(--forest-soft);
}

.scene__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.scene__img--zoom {
  transform: scale(1.04);
}

.scene.in .scene__img--zoom {
  transform: scale(1.13);
}

.scene__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 31, 23, .92) 0%, rgba(8, 31, 23, .5) 32%, rgba(8, 31, 23, .05) 60%, transparent 100%);
}

.scene__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.scene.in .scene__caption {
  opacity: 1;
  transform: translateY(0);
}

.scene__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.scene__caption h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: .5rem;
}

.scene__caption p {
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(207, 217, 167, .85);
  max-width: 44ch;
}

/* billboard creative overlay */
.scene__overlay-creative {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.overlay-mark {
  width: 46px;
  height: 45px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-24px) scale(.7);
  filter: drop-shadow(0 0 18px rgba(240, 198, 149, .6));
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: .5s;
  position: relative;
  top: -6%;
}

.overlay-mark svg {
  width: 100%;
  height: 100%;
}

.scene.in .overlay-mark {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: markGlow 2.6s ease-in-out 1.4s infinite;
}

@keyframes markGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(240, 198, 149, .45));
  }

  50% {
    filter: drop-shadow(0 0 26px rgba(240, 198, 149, .85));
  }
}

/* pending (no real photo yet) scene */
.scene__pending-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 25% 20%, rgba(240, 198, 149, .14), transparent 60%),
    radial-gradient(50% 50% at 80% 80%, rgba(225, 221, 114, .12), transparent 60%),
    linear-gradient(150deg, var(--forest-soft), var(--forest-deep) 80%);
}

.scene__pending-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: auto;
  color: rgba(207, 217, 167, .18);
}

.scene__pending-mark svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .scene__frame {
    aspect-ratio: 4/5;
  }
}

/* ===================================================================
   IDENTITY / BRAND SYSTEM
=================================================================== */
.identity {
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.identity__copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--forest-deep);
  margin-bottom: 1.1rem;
}

.identity__copy p {
  color: #4b5a45;
  line-height: 1.65;
  font-size: 1.02rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.swatch {
  --c: #000;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: var(--c);
  display: flex;
  align-items: flex-end;
  padding: .5rem;
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  box-shadow: 0 14px 25px -14px rgba(0, 0, 0, .5);
  transition: transform .35s var(--ease);
}

.swatch:hover {
  transform: translateY(-6px) rotate(-2deg);
}

.identity__glass {
  display: flex;
  justify-content: center;
}

.glass-panel {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  border-radius: 26px;
  background: linear-gradient(150deg, var(--forest-deep), var(--forest));
  overflow: hidden;
  box-shadow: 0 40px 60px -30px rgba(14, 55, 42, .5);
  transform: rotate(-3deg);
  transition: transform .5s var(--ease);
}

.glass-panel:hover {
  transform: rotate(0deg) scale(1.02);
}

.glass-panel__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .85;
}

.glass-panel__blob.b1 {
  width: 60px;
  height: 60px;
  background: var(--gold);
  top: 10%;
  right: 14%;
}

.glass-panel__blob.b2 {
  width: 90px;
  height: 90px;
  background: var(--lime);
  bottom: -20px;
  right: -20px;
  opacity: .7;
}

.glass-panel__blob.b3 {
  width: 40px;
  height: 40px;
  background: var(--blush);
  bottom: 12%;
  left: 10%;
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14);
}

.glass-panel__mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: auto;
  color: var(--gold);
}

@media (max-width: 860px) {
  .identity {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .identity__copy .swatches {
    justify-content: center;
  }
}

/* ===================================================================
   CONTACT
=================================================================== */
.contact {
    background:
    radial-gradient(55% 45% at 85% 0%, rgba(207, 217, 167, .55), transparent 60%),
    radial-gradient(45% 40% at 5% 95%, rgba(225, 221, 114, .35), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #F5F2E4 55%, var(--sage) 140%);
  padding: 7rem 1.5rem;
}

.contact .btn--gold {
  background: var(--forest);
  color: var(--cream);
}

.contact .btn--gold:hover {
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 14px 30px rgba(225, 221, 114, .3);
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  color: var(--forest);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.contact .eyebrow {
  color: var(--olive);
}

.contact .eyebrow::before {
  background: var(--olive-deep);
}

.contact .section-sub {
  color: var(--olive);
}

.contact__form {
  background: linear-gradient(#f6f4e7, #e5e8cc) padding-box, linear-gradient(145deg, transparent 35%, var(--forest-soft), var(--blush),var(--lime), var(--olive)) border-box;
  border: 2px solid transparent;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  text-align: left;
}

.field {

  display: flex;
  flex-direction: column;
  gap: .4rem;
}

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

.field label {
  font-size: .78rem;
  color: var(--forest);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  background:linear-gradient(#f6f4e7, #e5e8cc) padding-box, linear-gradient(145deg, transparent 35%, var(--forest-soft), var(--blush),var(--lime), var(--olive)) border-box;
  border: 2px solid transparent;
  border: 1px solid rgba(200, 248, 9, 0.2);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--olive);
  font-size: .95rem;
  resize: vertical;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(94, 94, 92, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .1);
}

.contact__form .btn {
  justify-content: center;
  margin-top: .5rem;
  position: relative;
  overflow: hidden;
}

.btn__label {
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.btn__label--done {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
}

.contact__form.sent .btn__label:not(.btn__label--done) {
  opacity: 0;
  transform: translateY(-8px);
}

.contact__form.sent .btn__label--done {
  opacity: 1;
  transform: translateY(0);
}

.contact__form.sent .btn {
  background: var(--lime);
  pointer-events: none;
}

@media (max-width: 640px) {
  .contact__form {
    grid-template-columns: 1fr;
  }
}


/* ===================================================================
   CLIENTS / STACKED LOGOS
=================================================================== */
.clients {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem 7rem;
  text-align: center;
}

.clients .eyebrow {
  color: var(--olive-deep);
}

.clients h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--forest-deep);
  margin-bottom: 3rem;
}

.stacked-logos {
  position: relative;
}

.stacked-logos__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(14, 55, 42, .12);
  border-left: 1px solid rgba(14, 55, 42, .12);
  border-radius: 14px;
  overflow: hidden;
}

.stacked-logos__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
  background: radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(115, 140, 20, .14), transparent 70%);
}

.stacked-logos:hover .stacked-logos__glow {
  opacity: 1;
}

.stacked-logos__cell {
  position: relative;
  border-right: 1px solid rgba(14, 55, 42, .12);
  border-bottom: 1px solid rgba(14, 55, 42, .12);
}

.stacked-logos__stack {
  position: relative;
  display: grid;
  height: 128px;
}

.stacked-logos__item {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--forest);
  opacity: .35;
  letter-spacing: .01em;
  opacity: 0;
  animation: stackedLogoCycle calc(var(--duration, 6) * 1s) ease-in-out infinite;
  animation-delay: calc((var(--i, 0) * var(--duration, 6) * .5s) + (var(--index, 0) * var(--stagger, 0) * 1s));
}

@keyframes stackedLogoCycle {
  0% { opacity: 0; transform: translateY(10px); }
  6% { opacity: 1; transform: translateY(0); }
  44% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .stacked-logos__item {
    animation: none;
    opacity: .6;
  }
}

@media (max-width: 900px) {
  .stacked-logos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .stacked-logos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stacked-logos__stack {
    height: 104px;
  }
}


/* ===================================================================
   FOOTER
=================================================================== */
.footer {
  background: var(--forest);
  padding: 4.5rem 1.5rem 2rem;
}

.footer__top {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.footer__top p {
  color: rgba(207, 217, 167, .6);
  font-size: .9rem;
  max-width: 46ch;
}

.footer__cols {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(207, 217, 167, .12);
  padding-top: 2.5rem;
}

.footer__cols h4 {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__cols a {
  display: block;
  color: rgba(207, 217, 167, .75);
  font-size: .9rem;
  margin-bottom: .65rem;
  transition: color .3s;
}

.footer__cols a:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(207, 217, 167, .12);
  text-align: center;
  color: rgba(207, 217, 167, .5);
  font-size: .8rem;
}

@media (max-width: 700px) {
  .footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===================================================================
   REVEAL ANIMATIONS
=================================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE NAV
=================================================================== */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}