:root {
  --butter: #fff7df;
  --cream: #fffdf8;
  --gold: #f8b933;
  --orange: #eb6819;
  --leaf: #476b3b;
  --ink: #1f211c;
  --muted: #686c61;
  --line: #ece4d5;
  --shadow: 0 18px 45px rgba(58, 43, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  width: 132px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  color: var(--orange) !important;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 36px 0 72px;
}

.hero-copy {
  max-width: 650px;
}

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

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.lead {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(235, 104, 25, 0.22);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #d85810;
  box-shadow: 0 14px 28px rgba(235, 104, 25, 0.26);
}

.button:focus-visible,
.text-link:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(235, 104, 25, 0.28);
  outline-offset: 4px;
}

.text-link {
  color: var(--leaf);
  font-weight: 800;
  text-decoration-color: rgba(71, 107, 59, 0.35);
  text-underline-offset: 5px;
}

.hero-mark {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 247, 223, 0.95)),
    radial-gradient(circle at 80% 18%, rgba(248, 185, 51, 0.2), transparent 32%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.hero-mark img {
  width: min(76%, 430px);
}

.trust-band {
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-band div {
  padding: 24px;
}

.trust-band div + div {
  border-left: 1px solid var(--line);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.copy-stack p {
  margin: 0 0 18px;
}

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

.categories article,
.principles {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.categories span {
  color: var(--orange);
  font-weight: 900;
}

.categories p,
.cta-section p,
.content-main p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 96px auto 0;
  padding: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 96px;
}

.page-hero {
  max-width: 880px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  margin-top: 72px;
  align-items: start;
}

.content-main h2,
.principles h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.content-main h2:not(:first-child) {
  margin-top: 42px;
}

.content-main p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.principles {
  position: sticky;
  top: 24px;
}

.principles ul {
  margin: 20px 0 26px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.principles .button {
  width: 100%;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 28px;
  }

  .hero-mark {
    min-height: 300px;
    order: -1;
  }

  .trust-band,
  .split,
  .categories,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .trust-band div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .split,
  .content-grid {
    gap: 28px;
  }

  .section {
    padding-top: 72px;
  }

  .cta-section {
    align-items: stretch;
    flex-direction: column;
    margin-top: 72px;
    padding: 28px;
  }

  .principles {
    position: static;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .trust-band,
  .section,
  .cta-section,
  .page,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .header-logo {
    width: 118px;
  }

  .nav {
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }
}
