:root {
  --cream: #F5F0DC;
  --dark: #1E3018;
  --olive: #4A5E35;
  --rust: #B5611A;
  --amber: #D4914A;
  --expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: auto
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(181, 97, 26, 0.1), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(74, 94, 53, 0.12), transparent 60%);
  background-attachment: fixed;  color: var(--dark);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
.display {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em
}

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

.display-mega {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em
}

/* NAV */
nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  opacity: 0;
  transform: translateY(-30px);
  animation: navIn 1s var(--expo) 0.5s forwards
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

nav .logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em
}

nav .logo img{
  margin-top: 24px;
}

nav .nav-links {
  display: flex;
  gap: 40px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(30, 48, 24, 0.55)
}

nav .nav-links a:hover {
  color: var(--dark)
}

nav .nav-cta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(30, 48, 24, 0.25);
  color: var(--dark);
  transition: all 0.3s ease
}

nav .nav-cta:hover {
  background: var(--dark);
  color: var(--cream)
}

/* HERO */
.hero-center {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 150px 48px 0 48px ;
  text-align: center
}

.hero-giant {
  position: relative;
  z-index: 2
}

.giant-line {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  flex-wrap: wrap
}

.giant-line .accent {
  color: var(--rust)
}

.giant-line .italic {
  font-style: italic;
  font-weight: 400
}

.hero-img-pill {
  display: inline-block;
  width: clamp(100px, 12vw, 200px);
  height: clamp(60px, 7vw, 110px);
  border-radius: 100px;
  overflow: hidden;
  vertical-align: middle;
  position: relative;
  top: 0.05em;
  flex-shrink: 0
}

.hero-img-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-sub-center {
  position: relative;
  z-index: 2;
  margin: 36px auto 0;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(30, 48, 24, 0.55);
  opacity: 0;
  animation: fadeUp 0.9s var(--expo) 0.7s forwards
}

.hero-actions-center {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--expo) 0.85s forwards
}

@media(max-width:860px) {
  .hero-center {
    padding: 100px 24px 60px
  }

  .hero-img-pill {
    display: none
  }
}




.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto
}


.hero h1 {
  font-size: clamp(3rem, 9vw, 9rem);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.04em
}

.hero h1 .line-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom
}

.hero h1 .line-inner {
  display: inline-block;
  transform: translateY(105%);
  animation: lineUp 1s var(--expo) forwards
}

.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--amber)
}

@keyframes lineUp {
  to {
    transform: translateY(0)
  }
}

.hero-sub {
  max-width: 460px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(30, 48, 24, 0.55);
  opacity: 0;
  animation: fadeUp 0.9s var(--expo) 0.7s forwards
}

.hero-bottom {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--expo) 0.85s forwards
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: transform 0.4s var(--expo), box-shadow 0.4s var(--expo), background 0.3s ease
}

.btn-solid:hover {
  background: linear-gradient(135deg, var(--amber), var(--rust) 60%, var(--olive));
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(181, 97, 26, 0.35);
}

.btn-solid svg {
  transition: transform 0.3s var(--expo)
}

.btn-solid:hover svg {
  transform: translateX(4px)
}

.hero-link {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(30, 48, 24, 0.45)
}

.hero-link:hover {
  color: var(--dark)
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(30, 48, 24, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s var(--expo) 1.6s forwards
}

.scroll-hint .bar {
  width: 1px;
  height: 40px;
  background: rgba(30, 48, 24, 0.25);
  animation: scrollBounce 2.2s ease-in-out infinite
}




@keyframes scrollBounce {

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

  50% {
    transform: translateY(8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* STATS */
.stats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 48px 110px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(30, 48, 24, 0.1);
  border-bottom: 1px solid rgba(30, 48, 24, 0.1);
  padding: 64px 0;
  gap: 24px
}

.stat {
  text-align: center
}

.stat:not(:first-child) {
  border-left: 1px solid rgba(30, 48, 24, 0.1)
}

.stat-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em
}

.stat-label {
  margin-top: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(30, 48, 24, 0.45)
}

/* MANIFESTO */
.manifesto {
  padding: 140px 28px;
  max-width: none;
  margin: 0 auto;
  margin-bottom:100px;
  text-align: center;
  background: var(--dark)
}

.manifesto .inner {
  max-width: 1380px;
  margin: 0 auto
}

.manifesto-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(245, 240, 220, 0.4);
  margin-bottom: 40px
}

.manifesto-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase
}

.manifesto-text .word {
  color: rgba(245, 240, 220, 0.15);
  transition: color 0.4s ease;
  display: inline
}

.manifesto-text .word.lit {
  color: var(--cream)
}

 .btn-outline {
  border-color: rgba(245, 240, 220, 0.25);
  color: var(--cream)
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream)
}

/* MARQUEE */
.marquee {
  border-top: 1px solid rgba(30, 48, 24, 0.1);
  border-bottom: 1px solid rgba(30, 48, 24, 0.1);
  padding: 40px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(30, 48, 24, 0.7);
  display: flex;
  align-items: center;
  gap: 64px
}

.marquee-star {
  display: inline-flex;
  align-items: center;
  opacity: 0.5
}

.marquee-star svg {
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px)
}

/* STACKED WORK */
.work-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 48px 80px
}

.work-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(30, 48, 24, 0.45);
  margin-bottom: 24px
}

.work-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 14ch
}

.work-title .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--amber)
}

.stack-card {
  position: sticky;
  padding: 0 48px
}

.stack-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 40px;
  height: 78vh;
  max-height: 820px;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(30, 48, 24, 0.08);
  transform-origin: top
}

.stack-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform
}

.stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 240, 220, 0.15) 0%, rgba(245, 240, 220, 0.05) 40%, rgba(30, 48, 24, 0.75) 100%)
}

.stack-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px 56px
}

.stack-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(245, 240, 220, 0.7)
}

.stack-bottom {
  max-width: 680px
}

.stack-bottom h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--cream)
}

.stack-bottom p {
  margin-top: 20px;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(245, 240, 220, 0.8)
}

/* CTA */
.cta {
  padding: 128px 48px
}

.cta-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 2.5rem;
  padding: 128px 64px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(181, 97, 26, 0.4), transparent 55%), radial-gradient(circle at 80% 80%, rgba(74, 94, 53, 0.5), transparent 60%), var(--dark)
}

.cta-card .rotating-k {
  position: absolute;
  right: -160px;
  top: -160px;
  width: 520px;
  height: 520px;
  opacity: 0.15;
  animation: slowRotate 80s linear infinite
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg)
  }
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 768px;
  margin: 0 auto
}

.cta-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--amber);
  margin-bottom: 24px;
  display: inline-block
}

.cta-card h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--cream)
}

.cta-card h2 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--amber)
}

.cta-card .sub {
  margin-top: 32px;
  color: rgba(245, 240, 220, 0.65);
  font-size: 1.05rem
}

.cta-card .btn-solid {
  margin-top: 48px;
  background: var(--cream);
  color: var(--dark)
}

.cta-card .btn-solid:hover {
  background: var(--amber)
}

footer {
  border-top: 1px solid rgba(30, 48, 24, 0.1);
  padding: 48px
}

footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(30, 48, 24, 0.4)
}

/* REVEAL */
.r {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--expo)
}

.r.v {
  opacity: 1;
  transform: translateY(0)
}

.stg>.r:nth-child(1) {
  transition-delay: 0s
}

.stg>.r:nth-child(2) {
  transition-delay: 0.08s
}

.stg>.r:nth-child(3) {
  transition-delay: 0.16s
}



/* ===== TABLET ===== */
@media(max-width:1024px) {
  nav {
    padding: 20px 32px
  }

  nav .logo img {
    height: 100px;
    margin-top: 16px
  }

  .hero-center {
    padding: 130px 32px 0
  }

  .giant-line {
    font-size: clamp(2.4rem, 8vw, 6rem)
  }

  .hero-img-pill {
    width: clamp(80px, 10vw, 160px);
    height: clamp(48px, 6vw, 90px)
  }

  .stats {
    padding: 40px 32px 80px
  }

  .stat-num {
    font-size: clamp(3.5rem, 8vw, 5.5rem)
  }

  .manifesto {
    padding: 100px 32px
  }

  .manifesto-text {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem)
  }

  .work-header {
    padding: 100px 32px 60px
  }

  .work-title {
    font-size: clamp(2rem, 5vw, 4rem)
  }

  .stack-card {
    padding: 0 32px
  }

  .stack-content {
    padding: 28px 40px
  }

  .stack-bottom h3 {
    font-size: clamp(2.8rem, 7vw, 6rem)
  }

  .cta {
    padding: 80px 32px
  }

  .cta-card {
    padding: 80px 40px
  }

  .cta-card h2 {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem)
  }
}

/* ===== MOBILE ===== */
@media(max-width:860px) {
  nav {
    padding: 16px 20px
  }

  nav .logo img {
    height: 70px;
    margin-top: 12px
  }

  nav .nav-links {
    display: none !important
  }

  nav .nav-cta {
    font-size: 0.65rem;
    padding: 7px 16px
  }

  .hero-center {
    padding: 110px 20px 0;
    min-height: 85svh
  }

  .hero-img-pill {
    display: none
  }

  .giant-line {
    font-size: clamp(2.2rem, 11vw, 4rem);
    gap: 0.15em
  }

  .hero-sub-center {
    font-size: 0.95rem;
    margin-top: 28px;
    max-width: 380px
  }

  .hero-actions-center {
    margin-top: 28px
  }

  .btn-solid {
    padding: 14px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.14em
  }

  .stats {
    padding: 30px 20px 60px
  }

  .stats-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 0
  }

  .stat {
    padding: 32px 0
  }

  .stat:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(30, 48, 24, 0.1)
  }

  .stat-num {
    font-size: clamp(3rem, 14vw, 4.5rem)
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em
  }

  .manifesto {
    padding: 80px 20px;
    margin-bottom: 60px
  }

  .manifesto .inner {
    max-width: 100%
  }

  .manifesto-text {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    line-height: 1.35
  }

  .manifesto-tag {
    font-size: 0.58rem;
    margin-bottom: 28px
  }

  .marquee {
    padding: 24px 0
  }

  .marquee-item {
    font-size: clamp(1.8rem, 8vw, 3rem);
    gap: 32px
  }

  .marquee-track {
    gap: 32px
  }

  .marquee-star svg {
    width: clamp(24px, 6vw, 36px);
    height: clamp(24px, 6vw, 36px)
  }

  .work-header {
    padding: 80px 20px 48px
  }

  .work-tag {
    font-size: 0.65rem;
    margin-bottom: 16px
  }

  .work-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1
  }

  .stack-card {
    padding: 0 20px
  }

  .stack-inner {
    height: 55vh;
    max-height: 500px;
    border-radius: 1.2rem;
    margin-bottom: 24px
  }

  .stack-content {
    padding: 20px 24px
  }

  .stack-meta {
    font-size: 0.6rem;
    letter-spacing: 0.2em
  }

  .stack-bottom h3 {
    font-size: clamp(2.2rem, 12vw, 4rem)
  }

  .stack-bottom p {
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6
  }

  .cta {
    padding: 60px 20px
  }

  .cta-card {
    padding: 64px 24px;
    border-radius: 1.5rem
  }

  .cta-card h2 {
    font-size: clamp(1.8rem, 8vw, 3.2rem);
    line-height: 1
  }

  .cta-card .sub {
    font-size: 0.92rem;
    margin-top: 20px
  }

  .cta-card .btn-solid {
    margin-top: 32px
  }

  .cta-card .rotating-k {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px
  }

  .cta-tag {
    font-size: 0.6rem
  }

  footer {
    padding: 32px 20px
  }

  footer .inner {
    justify-content: center;
    text-align: center;
    font-size: 0.65rem
  }
}

/* ===== SMALL PHONE ===== */
@media(max-width:420px) {
  nav {
    padding: 12px 16px
  }

  nav .logo img {
    height: 55px;
    margin-top: 10px
  }

  nav .nav-cta {
    font-size: 0.6rem;
    padding: 6px 14px
  }

.hero-center {
  padding: 140px 16px 32px;
  min-height: auto
}

  .giant-line {
    font-size: clamp(1.8rem, 10vw, 2.8rem)
  }

  .hero-sub-center {
    font-size: 0.88rem;
    max-width: 300px;
    margin-top: 24px
  }

  .btn-solid {
    padding: 12px 20px;
    font-size: 0.72rem;
    gap: 8px
  }

  .stats {
    padding: 20px 16px 40px
  }

  .stat-num {
    font-size: clamp(2.5rem, 15vw, 3.5rem)
  }

  .manifesto {
    padding: 60px 16px;
    margin-bottom: 40px
  }

  .manifesto-text {
    font-size: clamp(1.1rem, 5vw, 1.6rem)
  }

  .work-header {
    padding: 60px 16px 36px
  }

  .work-title {
    font-size: clamp(1.5rem, 8vw, 2.4rem)
  }

  .stack-card {
    padding: 0 16px
  }

  .stack-inner {
    height: 50vh;
    max-height: 420px;
    border-radius: 1rem
  }

  .stack-content {
    padding: 16px 20px
  }

  .stack-bottom h3 {
    font-size: clamp(1.8rem, 12vw, 3rem)
  }

  .stack-bottom p {
    font-size: 0.82rem
  }

  .cta {
    padding: 40px 16px
  }

  .cta-card {
    padding: 48px 20px;
    border-radius: 1.2rem
  }

  .cta-card h2 {
    font-size: clamp(1.5rem, 8vw, 2.4rem)
  }

  .cta-card .sub {
    font-size: 0.85rem
  }

  .cta-card .rotating-k {
    width: 200px;
    height: 200px;
    right: -60px;
    top: -60px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }
}