:root {
  --ink: #17201d;
  --muted: #62716b;
  --paper: #f7f4ec;
  --panel: #ffffff;
  --line: #dde1d8;
  --accent: #0f7567;
  --accent-dark: #0a5249;
  --wood: #b98445;
  --forest: #203b33;
  --sage: #dfe8d7;
  --shadow: 0 22px 52px rgba(20, 32, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.95);
  box-shadow: 0 12px 28px rgba(20, 32, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer,
.footer-legal {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 93vh;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 27, 23, 0.9) 0%, rgba(13, 27, 23, 0.7) 43%, rgba(13, 27, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 27, 23, 0.62) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  padding: 154px 0 160px;
  margin-left: clamp(20px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #e3c383;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 6.4vw, 6.3rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.claim {
  max-width: 720px;
  margin-bottom: 24px;
  color: #f1dfb0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy,
.section-heading p,
.intro-grid p:last-child,
.split p,
.wide-text,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  min-width: 174px;
  padding: 0 22px;
  border: 0;
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 1px;
  width: min(540px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel > div {
  padding: 22px;
  background: rgba(18, 33, 29, 0.42);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: #f4d693;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
}

.metric-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  background: #fff;
}

.intro,
.market,
.audiences,
.economics,
.fee {
  padding: 96px 0;
}

.services,
.eco,
.pilot {
  padding: 102px 0;
}

.intro-grid,
.split,
.cta-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.tension-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tension-item,
.service-card,
.audience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(20, 32, 28, 0.06);
}

.tension-item {
  min-height: 190px;
  padding: 26px;
}

.tension-item span,
.process-strip span,
.proof-list span {
  font-weight: 800;
}

.tension-item p,
.service-card p,
.audience-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.service-card,
.audience-card {
  min-height: 246px;
  padding: 26px;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--wood);
  font-weight: 800;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-strip span {
  position: relative;
  min-height: 72px;
  padding: 24px 18px;
  background: var(--sage);
}

.process-strip span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--sage);
  transform: translateY(-50%) rotate(45deg);
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
}

.keyword-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.keyword-box span {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(20, 32, 28, 0.06);
  font-weight: 800;
}

.balance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.balance div,
.balance strong {
  display: grid;
  min-height: 100px;
  place-items: center;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.balance div {
  color: var(--forest);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 28, 0.07);
}

.balance strong {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--forest);
}

.wide-text {
  max-width: 940px;
}

.fee-panel {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.fee-panel p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.founder {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: 18px 0 104px;
}

.founder-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.founder-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.founder-copy strong {
  display: block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1.4;
}

.cta {
  color: #fff;
  background: #162b26;
}

.cta-inner {
  padding: 96px 0;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
  font-size: 1.05rem;
}

.contact-card strong {
  font-size: 1.4rem;
}

.phone-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #14201d;
  background: #f0d08d;
  font-weight: 800;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.project-link:hover {
  background: var(--accent-dark);
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 56px);
  color: var(--muted);
  background: #fff;
  font-size: 0.92rem;
}

.site-footer > div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--ink);
}

.footer-legal {
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    color: var(--ink);
    background: rgba(247, 244, 236, 0.95);
    box-shadow: 0 12px 28px rgba(20, 32, 28, 0.08);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: clamp(20px, 4vw, 56px);
    left: clamp(20px, 4vw, 56px);
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    border: 0 solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: max-height 200ms ease, opacity 180ms ease, border-width 180ms ease;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 420px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .tension-grid,
  .intro-grid,
  .split,
  .founder,
  .cta-inner,
  .process-strip,
  .balance {
    grid-template-columns: 1fr;
  }

  .process-strip span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 126px 0 278px;
    margin-left: 18px;
  }

  h1 {
    font-size: 4rem;
  }

  .claim {
    font-size: 1.6rem;
  }

  .hero-panel {
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-grid,
  .keyword-box {
    grid-template-columns: 1fr;
  }

  .intro,
  .market,
  .audiences,
  .economics,
  .fee,
  .founder,
  .services,
  .eco,
  .pilot {
    padding: 72px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
