:root {
  color-scheme: light;
  --ink: #0c0c0c;
  --muted: #615c56;
  --soft: #f6f3ef;
  --surface: #ffffff;
  --line: #ded8d0;
  --accent: #b66a36;
}

@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/oswald-700.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 6%;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand-text {
  border-left: 2px solid var(--ink);
  display: grid;
  gap: 3px;
  line-height: 1.15;
  padding-left: 12px;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.header-logo {
  height: auto;
  max-height: 46px;
  object-fit: contain;
  width: 88px;
}

.header-action,
.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
}

.header-action {
  background: var(--ink);
  color: #ffffff;
  min-height: 44px;
  padding: 10px 16px;
}

.hero {
  align-items: center;
  display: grid;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: 86px 6%;
  position: relative;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.64) 46%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0.06)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.03));
}

.hero-content {
  color: #ffffff;
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 950;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow,
.conversion-section .section-kicker {
  color: #d8b99e;
}

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

h1 {
  font-family: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.85rem;
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 900px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  margin-bottom: 18px;
}

p,
li {
  line-height: 1.65;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 740px;
}

.button {
  border: 1px solid #ffffff;
  min-height: 52px;
  padding: 14px 20px;
}

.button-primary {
  background: #ffffff;
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  background: #ebe6de;
  color: var(--ink);
  outline: none;
}

.section {
  padding: 76px 6%;
}

.section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.split {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.92fr 1.08fr;
}

.section-lead,
.meet-section p,
.testimonials-heading p,
.testimonial-card p,
.conversion-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.numbers-section,
.meet-section {
  background: var(--surface);
}

.meet-section {
  scroll-margin-top: 96px;
}

.get-section,
.testimonials-section {
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 850;
  padding-top: 16px;
}

.check-list li::before {
  color: var(--accent);
  content: "/";
  font-weight: 950;
  margin-right: 10px;
}

.narrow {
  max-width: 820px;
}

.testimonials-heading {
  margin-bottom: 34px;
  max-width: 790px;
}

.testimonials-heading p {
  margin-bottom: 0;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.stars {
  color: var(--accent);
  display: block;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.testimonial-card p {
  margin-bottom: 18px;
}

.testimonial-card strong {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
}

.testimonial-label {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 850;
  margin-top: 8px;
  text-transform: uppercase;
}

.conversion-section {
  background: var(--ink);
  color: #ffffff;
}

.conversion-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.ghl-form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 760px;
  overflow: hidden;
}

.ghl-form-wrap iframe {
  display: block;
  min-height: 760px;
}

.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 6% 30px;
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.86fr 1.14fr;
}

.footer-brand-block,
.footer-nav-block {
  display: grid;
  gap: 14px;
}

.footer-logo {
  background: #ffffff;
  height: auto;
  margin-bottom: 12px;
  max-width: 132px;
  padding: 8px 10px;
  width: 100%;
}

.footer-brand-block h2 {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.footer-brand-block h2 span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.footer-brand-block a,
.footer-links a,
.footer-copyright a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-brand-block p,
.footer-disclaimer,
.footer-copyright {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 9px;
}

.footer-disclaimer {
  line-height: 1.6;
  margin-top: 14px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.6;
  margin-top: 10px;
  padding-top: 16px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 76px;
    padding-top: 76px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.08rem;
  }

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

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .header-action,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy,
  .section-lead,
  .meet-section p,
  .conversion-copy p {
    font-size: 1rem;
  }

}
