@font-face {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/cabin-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Patua One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/patua-one-latin.woff2") format("woff2");
}

:root {
  --sc-canvas: #122517;
  --sc-surface: #f4f0e7;
  --sc-ink: #fffdf5;
  --sc-ink-soft: #d9ded3;
  --sc-accent: #8bc34a;
  --sc-accent-ink: #17351f;
  --sc-font-display: "Patua One", Georgia, serif;
  --sc-font-text: "Cabin", Arial, sans-serif;
  --burgundy: #500537;
  --green: #8bc34a;
  --paper: #f4f0e7;
  --ink: #253329;
}

html { background: var(--paper); }
body { margin: 0; overflow-x: hidden; font-family: "Cabin", Arial, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--burgundy);
  background: #fff;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: .7rem clamp(1.1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  color: #fff;
  background: linear-gradient(to bottom, rgb(22 22 16 / 78%), transparent);
}

.brand { flex: 0 0 auto; }
.brand img { width: 148px; height: 45px; object-fit: contain; }
.site-bar nav { display: flex; flex: 1; justify-content: center; gap: clamp(1.2rem, 3vw, 3rem); }
.site-bar nav a {
  padding: .65rem .15rem;
  font-size: .91rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-bar nav a:hover { color: #c7ee9a; }
.nav-cta,
.primary-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .75rem 1.35rem;
  color: #17351f;
  background: #dceda9;
  font-family: "Patua One", Georgia, serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}
.nav-cta:hover,
.primary-cta:hover { background: #fff; }

.hero-act { position: relative; color: #fff; }
.hero-stage { position: sticky; top: 0; height: 100svh; min-height: 660px; overflow: hidden; background: #122517; }
.hero-stage > :is(video, .sc-stage__poster) { object-position: center; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(9 23 14 / 88%) 0%, rgb(9 23 14 / 66%) 28%, rgb(9 23 14 / 12%) 58%, transparent 76%),
    linear-gradient(0deg, rgb(7 18 11 / 45%), transparent 42%),
    linear-gradient(180deg, rgb(7 18 11 / 45%), transparent 22%);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(1.5rem, 6vw, 7rem);
  bottom: clamp(3rem, 9vh, 7rem);
  width: min(620px, 46vw);
}
.kicker {
  margin: 0 0 1rem;
  color: #c7ee9a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(3.9rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .88;
  text-wrap: balance;
}
.hero-copy h1 span { color: #dceda9; }
.hero-deck {
  max-width: 34rem;
  margin: 1.6rem 0 1.75rem;
  color: #f3f3e9;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

.yard-sign {
  position: absolute;
  z-index: 3;
  left: 57%;
  bottom: 12%;
  width: clamp(190px, 18vw, 310px);
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 140px, 0) rotate(-5deg) scale(.92);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.sign-face { position: relative; z-index: 2; display: block; filter: drop-shadow(0 18px 24px rgb(0 0 0 / 35%)); }
.sign-post {
  position: absolute;
  z-index: 1;
  top: 78%;
  left: 50%;
  width: 10px;
  height: 42%;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #8d7655, #d6bf91 47%, #725d41);
  transform: translateX(-50%);
}
.sign-shadow {
  position: absolute;
  z-index: 0;
  top: 113%;
  left: 50%;
  width: 72%;
  height: 16px;
  border-radius: 50%;
  background: rgb(3 12 6 / 35%);
  filter: blur(9px);
  transform: translateX(-50%);
}

.resolution { position: relative; z-index: 5; padding: clamp(5rem, 10vw, 9rem) 1.5rem; color: var(--ink); background: var(--paper); }
.resolution-inner { width: min(1080px, 100%); margin: auto; }
.kicker.dark { color: #397c4d; }
.resolution h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--burgundy);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .98;
}
.resolution > div > p:not(.kicker) { max-width: 670px; margin: 1.8rem 0 2.5rem; font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.55; }
.proof-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0 0 2.4rem; padding: 0; background: #cec8b9; list-style: none; }
.proof-list li { display: grid; gap: .3rem; padding: 1.5rem; background: #ebe6da; }
.proof-list strong { color: var(--burgundy); font-family: "Patua One", Georgia, serif; font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 400; }
.proof-list span { color: #59645c; }
.dark-cta { color: #fff; background: var(--burgundy); }
.dark-cta:hover { color: #fff; background: #712356; }

:focus-visible { outline: 3px solid #ffd76a; outline-offset: 4px; }

@media (max-width: 860px) {
  .site-bar { min-height: 68px; padding: .65rem 1rem; background: rgb(45 4 32 / 94%); }
  .site-bar nav { display: none; }
  .brand { flex: 1; }
  .brand img { width: 132px; height: 40px; }
  .nav-cta { min-height: 44px; padding: .65rem .85rem; font-size: .88rem; }
  .hero-act { height: auto !important; }
  .hero-stage { position: relative !important; top: auto; height: 100svh; min-height: 700px; }
  .hero-stage video { display: none; }
  .hero-stage > .sc-stage__poster { opacity: 1 !important; object-position: 68% center; }
  .hero-scrim {
    background:
      linear-gradient(0deg, rgb(8 20 12 / 96%) 0%, rgb(8 20 12 / 77%) 38%, rgb(8 20 12 / 12%) 72%),
      linear-gradient(180deg, rgb(8 20 12 / 45%), transparent 28%);
  }
  .hero-copy { inset: auto 1.3rem 2rem; width: auto; }
  .hero-copy h1 { max-width: 9ch; font-size: clamp(3.2rem, 15vw, 4.6rem); line-height: .9; }
  .hero-deck { max-width: 31rem; margin: 1.2rem 0 1.4rem; font-size: 1.05rem; }
  .yard-sign { display: none; }
  .proof-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .nav-cta { max-width: 116px; text-align: center; }
  .hero-copy h1 { font-size: clamp(3rem, 14.5vw, 3.8rem); }
  .kicker { max-width: 26ch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-act { height: auto !important; }
  .hero-stage { position: relative !important; top: auto; height: 100svh; }
  .hero-stage video { display: none; }
  .hero-stage > .sc-stage__poster { opacity: 1 !important; }
  .yard-sign { opacity: 1 !important; transform: none !important; }
}
