:root {
  --ink: #10231f;
  --muted: #5d6861;
  --line: #d7ddd3;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --sage: #6e7e65;
  --gold: #c2934a;
  --rust: #9a503a;
  --blue: #284e63;
  --shadow: 0 20px 60px rgba(16, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(215, 221, 211, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(290px, 44vw);
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

.header-action {
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 72px) 64px;
  background: #18231f;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 35, 31, 0.92) 0%, rgba(16, 35, 31, 0.62) 42%, rgba(16, 35, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 35, 31, 0.5), rgba(16, 35, 31, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #1f1b14;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.34);
}

.section {
  padding: clamp(64px, 10vw, 116px) clamp(18px, 6vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

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

.problem-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 35, 31, 0.04);
}

.problem-card span {
  color: var(--rust);
  font-weight: 800;
}

.problem-card p,
.text-stack p,
.contact-copy p,
.about-copy p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(36px, 8vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.split-section .text-stack p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.08rem;
}

.steps-section {
  background: var(--white);
}

.steps {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: #fbfaf6;
}

.steps strong {
  color: var(--blue);
  font-size: 1.08rem;
}

.steps span {
  color: var(--muted);
}

.evidence-section {
  background: #ebe6db;
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.evidence-list li {
  padding: 18px 18px 18px 46px;
  background: var(--white);
  border-left: 5px solid var(--sage);
  position: relative;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  background: var(--paper);
}

.about-photo {
  margin: 0;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  font-size: 1.06rem;
}

.about-signature {
  display: inline-grid;
  gap: 2px;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--white);
  border-left: 5px solid var(--gold);
}

.about-signature strong {
  color: var(--ink);
}

.about-signature span {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(32px, 8vw, 90px);
  align-items: start;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #f3f0e8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d0c5;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(194, 147, 74, 0.42);
  outline-offset: 2px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1.1fr) minmax(260px, 1.1fr);
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 72px);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.78);
}

.site-footer div {
  display: grid;
  gap: 5px;
}

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

@media (max-width: 840px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-action {
    padding-inline: 12px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 68px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 35, 31, 0.94) 0%, rgba(16, 35, 31, 0.76) 70%, rgba(16, 35, 31, 0.48) 100%),
      linear-gradient(0deg, rgba(16, 35, 31, 0.45), rgba(16, 35, 31, 0.16));
  }

  .problem-grid,
  .split-section,
  .about-section,
  .contact-section,
  .evidence-list {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-photo img {
    min-height: 420px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 520px) {
  .nav {
    display: none;
  }

  .brand {
    max-width: 190px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .problem-card,
  .contact-form {
    padding: 20px;
  }

  .about-photo,
  .about-photo img {
    min-height: 360px;
  }
}
