@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto+Slab:wght@700;800;900&display=swap');

:root {
  --black: #1f1f1b;
  --clay: #b65a32;
  --tan: #c7a978;
  --bone: #f4efe6;
  --steel: #6f746f;
  --teal: #1f4e4a;
  --gold: #e0a726;
  --white: #fffaf0;
  --line: rgba(31, 31, 27, 0.16);
  --line-dark: rgba(244, 239, 230, 0.18);
  --shadow: 0 18px 44px rgba(31, 31, 27, 0.16);
  --headline: 'Roboto Slab', Rockwell, Georgia, serif;
  --body: Inter, 'Work Sans', 'Public Sans', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(31, 31, 27, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 31, 27, 0.035) 1px, transparent 1px),
    var(--bone);
  background-size: 44px 44px;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

main {
  min-height: 100vh;
  overflow: clip;
}

.page-pad {
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 10px max(20px, calc((100% - 1180px) / 2));
  background: rgba(244, 239, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
}

.brand img {
  width: auto;
  height: 34px;
  object-fit: contain;
  margin-top: 1px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: var(--headline);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-header nav a,
.header-phone {
  color: rgba(31, 31, 27, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--clay);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(31, 31, 27, 0.12);
  border-radius: 6px;
  background: var(--clay);
  color: #fff;
  box-shadow: 0 12px 24px rgba(182, 90, 50, 0.22);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: #a64d29;
  box-shadow: 0 16px 32px rgba(182, 90, 50, 0.26);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.button-quiet {
  background: rgba(244, 239, 230, 0.12);
  border-color: rgba(244, 239, 230, 0.5);
  box-shadow: none;
  color: var(--bone);
}

.button-quiet:hover {
  background: rgba(244, 239, 230, 0.2);
  box-shadow: none;
}

.button-quiet.light {
  border-color: rgba(244, 239, 230, 0.44);
  color: var(--bone);
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(740px, calc(100svh - 96px));
  background: var(--black);
  color: var(--bone);
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

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

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31, 31, 27, 0.92) 0%, rgba(31, 31, 27, 0.76) 38%, rgba(31, 31, 27, 0.24) 78%),
    linear-gradient(180deg, rgba(31, 31, 27, 0.26), rgba(31, 31, 27, 0.76));
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  content: '';
  mask-image: linear-gradient(90deg, black 0%, transparent 72%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  gap: 38px;
  align-items: end;
  width: 100%;
  padding-top: 86px;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--headline);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: 4.45rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: rgba(31, 31, 27, 0.76);
  line-height: 1.62;
}

.hero-lede {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(244, 239, 230, 0.9);
  font-size: 1.13rem;
  font-weight: 600;
}

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

.hero-badge {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 8px;
  background: rgba(31, 31, 27, 0.58);
  box-shadow: var(--shadow);
}

.hero-badge img {
  width: 164px;
  height: auto;
}

.hero-badge span {
  max-width: 150px;
  color: var(--bone);
  font-family: var(--headline);
  font-size: 0.86rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid rgba(244, 239, 230, 0.22);
  background: rgba(31, 31, 27, 0.82);
}

.trust-strip span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 12px 18px 12px 0;
  color: rgba(244, 239, 230, 0.88);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip span::before {
  width: 13px;
  height: 13px;
  margin-right: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  content: '';
  flex: none;
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-head {
  max-width: 840px;
}

.section-head.compact {
  max-width: 700px;
}

.section-head p:not(.eyebrow),
.area-copy p,
.cta-copy p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.problem-section {
  background: var(--bone);
}

.problem-grid,
.services-grid,
.process-grid,
.audience-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

.problem-card,
.service-card,
.process-card,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
}

.problem-card {
  min-height: 220px;
  padding: 20px;
}

.problem-card p,
.service-card p,
.process-card p,
.audience-grid p {
  margin-top: 12px;
}

.section-button {
  margin-top: 28px;
}

.services-section {
  background: #efe3d2;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 20px;
  overflow: hidden;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(182, 90, 50, 0.38);
  border-radius: 8px;
  background: rgba(182, 90, 50, 0.11);
  color: var(--clay);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card .service-rate {
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  background: var(--black);
  color: var(--bone);
}

.brand-panel {
  display: block;
}

.why-headline span {
  display: block;
  white-space: nowrap;
}

.split-section h2,
.final-cta h2 {
  color: var(--bone);
}

.why-copy p {
  color: rgba(244, 239, 230, 0.82);
  font-size: 1.08rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.checklist span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 54px;
  padding: 13px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(244, 239, 230, 0.92);
  font-weight: 800;
}

.checklist span::before {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a726' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='5,12 10,17 19,7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  content: '';
  flex: none;
}

.process-section {
  background: var(--bone);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: 22px;
  background: rgba(31, 78, 74, 0.08);
}

.process-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-family: var(--headline);
  font-size: 2rem;
  font-weight: 900;
}

.process-card::before {
  position: absolute;
  top: 38px;
  left: 74px;
  right: 22px;
  height: 2px;
  background: var(--teal);
  content: '';
  opacity: 0.26;
}

.proof-section {
  background: #ebe0d0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.proof-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-side .button {
  align-self: flex-start;
  margin-top: auto;
}

.proof-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
}

.proof-track {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.proof-track::-webkit-scrollbar {
  display: none;
}

.proof-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  min-height: 0;
  background: var(--black);
}

.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-prev,
.proof-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  border-radius: 50%;
  background: rgba(31, 31, 27, 0.62);
  color: var(--bone);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.proof-prev:hover,
.proof-next:hover {
  background: rgba(31, 31, 27, 0.88);
}

.proof-prev { left: 14px; }
.proof-next { right: 14px; }

.proof-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 1;
}

.proof-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.45);
  cursor: pointer;
  transition: background 0.18s ease;
}

.proof-dots button.active {
  background: var(--gold);
}

.proof-testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

blockquote {
  grid-column: 2;
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--clay);
  border-radius: 8px;
  background: var(--black);
  color: var(--bone);
  font-family: var(--headline);
  font-size: 1.28rem;
  line-height: 1.36;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--tan);
  font-family: var(--body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--teal);
  color: var(--bone);
}

.area-section h2,
.area-section p {
  color: var(--bone);
}

.area-section p {
  color: rgba(244, 239, 230, 0.82);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 12px 14px;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 6px;
  background: rgba(244, 239, 230, 0.08);
  color: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
}

.audience-section {
  background: var(--bone);
}

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

.audience-grid article {
  min-height: 190px;
  padding: 20px;
  border-top: 6px solid var(--clay);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: start;
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    linear-gradient(rgba(244, 239, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.06) 1px, transparent 1px),
    var(--black);
  background-size: 42px 42px;
  color: var(--bone);
}

.cta-copy {
  position: sticky;
  top: 110px;
}

.cta-copy p {
  color: rgba(244, 239, 230, 0.82);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 390px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.08);
}

.contact-card img {
  width: auto;
  height: 60px;
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  color: var(--tan);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  margin: 4px 0;
  color: var(--bone);
  font-size: 1.35rem;
}

.lead-form {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: rgba(244, 239, 230, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--black);
  outline: 0;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 167, 38, 0.18);
}

.wide {
  grid-column: 1 / -1;
}

.file-field input {
  padding: 12px;
}

.lead-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  margin-top: 12px;
  color: var(--tan);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 54px;
  background: #151512;
  color: rgba(244, 239, 230, 0.74);
}

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

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

.footer-brand span {
  display: block;
  margin-top: 8px;
  color: var(--tan);
  font-weight: 900;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--bone);
  font-family: var(--headline);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer div > span {
  display: block;
  margin: 8px 0;
  color: rgba(244, 239, 230, 0.74);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

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

  .site-header nav,
  .header-phone {
    display: none;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .problem-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-grid,
  .area-section,
  .final-cta,
  .split-section {
    grid-template-columns: 1fr;
  }

  .proof-slide {
    aspect-ratio: 16 / 9;
  }

  blockquote {
    grid-column: auto;
  }

  .cta-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 32px 32px;
  }

  .page-pad,
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 0.86rem;
  }

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

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(31, 31, 27, 0.86), rgba(31, 31, 27, 0.64) 54%, rgba(31, 31, 27, 0.88)),
      linear-gradient(90deg, rgba(31, 31, 27, 0.42), rgba(31, 31, 27, 0.18));
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 48px;
    padding-bottom: 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-badge {
    justify-self: start;
    grid-template-columns: 72px 1fr;
    justify-items: start;
    align-items: center;
    width: 100%;
    padding: 12px;
  }

  .hero-badge img {
    width: 72px;
  }

  .hero-badge span {
    max-width: none;
    text-align: left;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span {
    min-height: 56px;
    padding: 10px 10px 10px 0;
    font-size: 0.74rem;
  }

  .section,
  .final-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .problem-grid,
  .services-grid,
  .process-grid,
  .audience-grid,
  .form-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .service-card,
  .process-card,
  .audience-grid article {
    min-height: auto;
  }

  .proof-prev,
  .proof-next {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .area-tags span {
    padding: 10px 11px;
    font-size: 0.78rem;
  }

  .contact-card {
    align-items: flex-start;
  }

  .contact-card img {
    height: 50px;
  }

  .lead-form {
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(31, 31, 27, 0.94);
    border-top: 1px solid rgba(244, 239, 230, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    background: var(--clay);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    background: var(--teal);
  }
}

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

  h2 {
    font-size: 1.78rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .button {
    max-width: 132px;
  }
}
