:root {
  --ink: #0d1d2c;
  --ink-2: #14293a;
  --sand: #c2974a;
  --sand-hover: #d4a85c;
  --sand-ink: #7a5c28;
  --paper: #f4ecd6;
  --paper-2: #ede3c8;
  --white: #ffffff;
  --line: #ddd0b4;
  --line-dark: rgba(194, 151, 74, 0.28);
  --muted: #5a6b78;
  --max: 1180px;
  --nav-h: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

a { color: inherit; }

section[id] {
  scroll-margin-top: calc(42px + var(--nav-h) + 1rem);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 48px;
  line-height: 1;
}

.btn--filled {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}
.btn--filled:hover {
  background: var(--sand-hover);
  border-color: var(--sand-hover);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--outline-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--outline-light:hover {
  background: rgba(244, 236, 214, 0.08);
}

.btn--block {
  width: 100%;
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand-ink);
}
.eyebrow--light {
  color: var(--sand);
}

/* ---------- Brand / Nav ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  flex-shrink: 0;
}
.brand__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand__text small {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand-ink);
  margin-top: 2px;
}

.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.nav__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 2rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links > a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 180ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__links > a:not(.btn):hover {
  color: var(--sand-ink);
}
.nav__cta-btn {
  margin-left: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
}
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--ink);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}

/* ---------- Layout helpers ---------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section {
  padding: 5rem 1.5rem;
}
.section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.section__head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-top: 0.6rem;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 1.5rem 4.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: max(560px, calc(100vh - var(--nav-h) - 42px - 7.5rem));
}
.hero__text {
  max-width: 620px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  margin: 1rem 0 1.1rem;
}
.hero__sub {
  font-size: 1.2rem;
  color: rgba(244, 236, 214, 0.78);
  max-width: 40ch;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__graphic svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* ---------- Trust band ---------- */

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 1.5rem;
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.trust__line {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;