:root {
  --ink: #111611;
  --deep: #070908;
  --forest: #17251c;
  --moss: #506f4f;
  --gold: #d4a257;
  --sand: #f4efe6;
  --paper: #fbfaf6;
  --smoke: #d9d5ca;
  --muted: #6c7067;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(5, 7, 5, 0.58), rgba(5, 7, 5, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 11px 17px;
  background: rgba(5, 7, 5, 0.24);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.section-dark {
  color: white;
  background: var(--deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 130px clamp(18px, 5vw, 72px) 56px;
}

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

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

.hero-media img {
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.92) 0%, rgba(3, 5, 4, 0.64) 44%, rgba(3, 5, 4, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 5, 4, 0.78) 0%, rgba(3, 5, 4, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
}

.hero-logo {
  width: min(230px, 42vw);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.35rem;
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions,
.final-content .button {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #15120c;
  background: var(--gold);
}

.button-primary:hover {
  background: #f1c778;
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.intro {
  background: var(--paper);
}

.split,
.section-heading,
.about {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.section-copy,
.section-heading > p,
.about-copy p,
.ai-panel p,
.final-content p,
.footer-brand p,
.footer-action p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p:last-child,
.about-copy p:last-child {
  margin-bottom: 0;
}

.services {
  background: #e9e2d5;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading > p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: 1px;
  background: rgba(17, 22, 17, 0.18);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 242px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(212, 162, 87, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--paper);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(34px, 4vw, 46px);
}

.service-number {
  display: block;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(80, 111, 79, 0.24);
  padding: 6px 10px;
  color: var(--moss);
  background: rgba(80, 111, 79, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.starting-points {
  background: var(--paper);
}

.starting-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.starting-card {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(17, 22, 17, 0.12);
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    #f4efe6;
}

.starting-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: rgba(212, 162, 87, 0.72);
  content: "";
}

.starting-card-featured {
  background:
    linear-gradient(135deg, rgba(212, 162, 87, 0.15), rgba(255, 255, 255, 0) 45%),
    #f1eadf;
}

.starting-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.starting-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.starting-note {
  width: min(var(--max), 100%);
  margin: 24px auto 0;
  border-top: 1px solid rgba(17, 22, 17, 0.14);
  padding-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.proof {
  color: white;
  background: var(--forest);
}

.proof .section-heading > p,
.proof .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.proof .section-kicker {
  color: var(--gold);
}

.proof-credibility {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(24px, 4vw, 34px);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-credibility div {
  padding: clamp(18px, 3vw, 24px);
}

.proof-credibility div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-credibility strong,
.proof-credibility span {
  display: block;
}

.proof-credibility strong {
  margin-bottom: 8px;
  color: white;
  font-size: 0.92rem;
}

.proof-credibility span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.proof-feature {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 34px);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
}

.proof-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(10px, 1.4vw, 16px);
  background:
    linear-gradient(135deg, rgba(212, 162, 87, 0.14), rgba(255, 255, 255, 0.03) 38%, rgba(5, 8, 5, 0.18)),
    rgba(5, 8, 5, 0.72);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.proof-video::before {
  position: absolute;
  top: 0;
  left: clamp(18px, 2vw, 28px);
  width: 96px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.proof-video-frame {
  position: relative;
  overflow: hidden;
  background: #0b0d0a;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.proof-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.proof-feature-copy {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-left: 1px solid rgba(212, 162, 87, 0.48);
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-feature-copy span,
.proof-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-feature-copy h3,
.proof-card h3 {
  margin-bottom: 14px;
  color: white;
}

.proof-feature-copy p,
.proof-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-card-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 6, 0.46);
}

.proof-card-featured {
  grid-column: span 2;
}

.proof-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.proof-card-featured img {
  height: 300px;
}

.proof-card:hover img {
  transform: scale(1.04);
}

.proof-card div {
  padding: clamp(22px, 3vw, 28px);
}

.ai-section {
  background: var(--ink);
}

.ai-panel {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  color: white;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.ai-panel h2 {
  margin-bottom: 28px;
}

.ai-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.ai-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.ai-list div {
  padding: clamp(24px, 4vw, 34px);
  background: #20291f;
}

.ai-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ai-list p {
  margin-bottom: 0;
}

.about {
  align-items: center;
  background: var(--paper);
}

.about-media {
  overflow: hidden;
  aspect-ratio: 1.35;
  background: var(--forest);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.final-cta {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 64px);
  text-align: center;
}

.final-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 7, 5, 0.86), rgba(5, 7, 5, 0.58)),
    radial-gradient(circle at center, rgba(212, 162, 87, 0.16), rgba(5, 7, 5, 0.5));
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.final-logo {
  width: min(230px, 52vw);
  height: auto;
  margin: 0 auto 34px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.final-content h2 {
  margin-bottom: 26px;
}

.final-content p {
  width: min(680px, 100%);
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.78);
}

.final-content .button {
  margin-inline: auto;
}

.site-footer {
  padding: clamp(54px, 7vw, 82px) clamp(18px, 5vw, 64px) 28px;
  color: var(--ink);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin-inline: auto;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(150px, 0.65fr));
}

.footer-logo {
  width: min(230px, 58vw);
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-action p {
  max-width: 34rem;
}

.footer-group h2,
.footer-action h2 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-group ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.footer-action {
  width: min(560px, 100%);
  grid-column: 1 / -1;
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(17, 22, 17, 0.14);
  background: #f1eadf;
  text-align: center;
}

.footer-action p {
  margin-inline: auto;
}

.button-dark {
  color: white;
  background: var(--ink);
}

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

.footer-bottom {
  display: flex;
  width: min(var(--max), 100%);
  margin: 58px auto 0;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(17, 22, 17, 0.14);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: 720px;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-logo {
    width: 185px;
    margin-bottom: 18px;
  }

  h1 {
    max-width: 730px;
    margin-bottom: 18px;
    font-size: 5.48rem;
    line-height: 1;
  }

  .hero-copy {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: 1.08rem;
  }
}

@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
  }

  h1 {
    font-size: 5.15rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .split,
  .section-heading,
  .about,
  .ai-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

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

  .starting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-feature {
    grid-template-columns: 1fr;
  }

  .proof-credibility {
    grid-template-columns: 1fr;
  }

  .proof-credibility div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .proof-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-feature-copy {
    border-top: 1px solid rgba(212, 162, 87, 0.48);
    border-left: 0;
  }

  .proof-card-featured {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-meta {
    font-size: 0.62rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 4, 0.9), rgba(3, 5, 4, 0.6)),
      linear-gradient(0deg, rgba(3, 5, 4, 0.82), rgba(3, 5, 4, 0.2));
  }

  .hero-logo {
    width: 156px;
    margin-bottom: 26px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 3.45rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .hero-copy,
  .section-copy,
  .section-heading > p,
  .about-copy p,
  .ai-panel p,
  .final-content p,
  .footer-brand p,
  .footer-action p {
    font-size: 1.02rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .service-grid,
  .starting-grid,
  .proof-feature,
  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-top {
    margin-bottom: 26px;
  }

  .starting-card {
    min-height: auto;
  }

  .starting-card span {
    margin-bottom: 24px;
  }

  .proof-feature-copy,
  .proof-card-featured {
    grid-column: auto;
  }

  .proof-feature-copy {
    border-top: 1px solid rgba(212, 162, 87, 0.48);
    border-left: 0;
  }

  .proof-card img,
  .proof-card-featured img {
    height: 240px;
  }

  .about-media {
    aspect-ratio: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.08rem;
  }

  h2 {
    font-size: 2.35rem;
  }
}
