:root {
  --paper: #f7f3ed;
  --soft: #eee7de;
  --linen: #ddd2c5;
  --ink: #221f1c;
  --muted: #6e665f;
  --line: #d6cabd;
  --wine: #6f171b;
  --wine-dark: #4c0f13;
  --charcoal: #302d29;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "proxima-nova", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(34, 31, 28, 0.1);
  background: rgba(247, 243, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: auto;
  height: 64px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--muted);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--wine);
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.82), rgba(23, 20, 18, 0.45) 48%, rgba(23, 20, 18, 0.08)),
    linear-gradient(0deg, rgba(23, 20, 18, 0.45), transparent 42%);
}

.hero-copy {
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(42px, 9vw, 96px) clamp(20px, 6vw, 86px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--wine);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8bfc0;
}

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

h1,
h2 {
  font-family: "Julius Sans One", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-family: "Julius Sans One", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.button.primary {
  background: var(--wine);
  color: var(--white);
}

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

.button.secondary {
  border-color: rgba(255, 253, 249, 0.46);
  color: var(--white);
}

.section-pad {
  padding: clamp(64px, 10vw, 128px) clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.intro p:last-child,
.process-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stats article {
  min-height: 168px;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--wine);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.stats span {
  display: block;
  max-width: 180px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 60px);
}

.service-grid,
.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

.service-grid article,
.feature-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
}

.service-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: auto;
  padding: 0;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-grid span {
  display: inline-block;
  margin: 24px 28px 40px;
  color: var(--wine);
  font-weight: 900;
}

.service-grid h3,
.service-grid p {
  margin-inline: 28px;
}

.service-grid p {
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 28px 30px;
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-grid p,
.feature-grid p,
.timeline span {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(34px, 7vw, 104px);
  padding: clamp(64px, 10vw, 128px) clamp(20px, 6vw, 86px);
  background: var(--charcoal);
  color: var(--white);
}

.process .section-kicker {
  color: #e8bfc0;
}

.process-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 148px;
  padding: 0 0 36px 82px;
  border-left: 1px solid rgba(255, 253, 249, 0.22);
  counter-increment: step;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: -1px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translateX(-50%);
  background: var(--wine);
  color: var(--white);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.timeline span {
  color: rgba(255, 253, 249, 0.72);
}

.feature-grid article {
  min-height: 230px;
}

.feature-grid h3 {
  color: var(--wine);
}

.audience {
  margin-bottom: clamp(64px, 10vw, 116px);
}

.audience h2 {
  max-width: 860px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.audience-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
}

.page-hero {
  padding: clamp(72px, 11vw, 132px) clamp(20px, 6vw, 86px) clamp(48px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero .eyebrow {
  color: var(--wine);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero .button.secondary {
  border-color: rgba(34, 31, 28, 0.24);
  color: var(--ink);
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 86px);
}

.content-main {
  max-width: 850px;
}

.content-main h2 {
  margin-top: 46px;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p,
.content-main li,
.content-side p,
.content-side li {
  color: var(--muted);
}

.content-main ul,
.content-side ul {
  padding-left: 1.1rem;
}

.content-side {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.content-side h2 {
  font-size: 1.3rem;
}

.service-cta {
  margin-top: 42px;
  padding: 28px;
  background: var(--wine-dark);
  color: var(--white);
}

.service-cta p {
  color: rgba(255, 253, 249, 0.76);
}

.service-cta .button {
  margin-top: 8px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 86px);
  background: var(--wine-dark);
  color: var(--white);
}

.cta .section-kicker {
  color: #e8bfc0;
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 640px;
  color: rgba(255, 253, 249, 0.74);
}

.cta .button.primary {
  background: var(--white);
  color: var(--wine-dark);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 86px);
  background: var(--ink);
  color: rgba(255, 253, 249, 0.72);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: auto;
  height: 92px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-brand span {
  color: var(--white);
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-seo {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-top: 6px;
}

.footer-seo a {
  color: rgba(255, 253, 249, 0.46);
  font-size: 0.72rem;
  line-height: 1.35;
}

.footer-seo a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .intro,
  .process,
  .cta {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

  .content-page {
    grid-template-columns: 1fr;
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    height: 48px;
  }

  .brand small {
    font-size: 0.62rem;
    max-width: 92px;
    line-height: 1.15;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 40px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .stats,
  .service-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .service-grid article,
  .feature-grid article {
    min-height: auto;
  }

  .service-grid span {
    margin-bottom: 24px;
  }

  .timeline li {
    padding-left: 54px;
  }

  .timeline li::before {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .cta .button {
    width: 100%;
  }
}
