:root {
  --ink: #18232b;
  --muted-ink: #51606b;
  --paper: #fffdf8;
  --soft: #f3efe6;
  --line: #ded7c9;
  --brand: #164e63;
  --brand-dark: #0e3849;
  --secondary: #4e691d;
  --white: #ffffff;
  --font-body:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-brand: Georgia, "Libre Baskerville", "Times New Roman", Times, serif;
  --shadow: 0 24px 60px rgba(24, 35, 43, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow {
  width: min(790px, calc(100% - 40px));
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  z-index: 10;
}
.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222, 215, 201, 0.8);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(60px, 6vw, 76px);
  height: clamp(60px, 6vw, 76px);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-text {
  font-family: var(--font-brand);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--brand-dark);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}
.nav a {
  text-decoration: none;
  color: var(--muted-ink);
}
.nav a:hover {
  color: var(--ink);
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
}

.hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(
      circle at top right,
      rgba(78, 105, 29, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, var(--paper), #f8f4eb);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
h1,
h2,
h3 {
  font-family: var(--font-brand);
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 18px;
  font-weight: 400;
  color: var(--brand);
}
h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  max-width: 920px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}
p {
  margin: 0 0 18px;
  color: var(--muted-ink);
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(22, 78, 99, 0.22);
}
.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--brand-dark);
}
.hero-card,
.card,
.panel,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 30px;
}
.hero-card ul,
.tick-list,
.feature-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.hero-card li,
.tick-list li,
.feature-list li {
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--muted-ink);
}
.hero-card li:last-child,
.tick-list li:last-child,
.feature-list li:last-child {
  border-bottom: 0;
}
.hero-card li::before,
.tick-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--secondary);
}

.section {
  padding: 82px 0;
}
.muted {
  background: var(--soft);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.cards {
  display: grid;
  gap: 20px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  padding: 28px;
  box-shadow: none;
}
.card p {
  margin-bottom: 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 44px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 0.78fr 1fr;
}
.panel {
  padding: 32px;
}
.panel.dark {
  background: var(--brand-dark);
  color: white;
  border-color: transparent;
}
.panel.dark h3,
.cta h2 {
  color: white;
}
.panel.dark p {
  color: rgba(255, 255, 255, 0.82);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.steps li {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}
.steps p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.about {
  border-top: 1px solid var(--line);
}
.cta {
  padding: 78px 0;
  background: var(--brand);
  color: white;
}
.cta p {
  color: rgba(255, 255, 255, 0.82);
}
.cta .eyebrow {
  color: #c9d7a8;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
}
.contact-card {
  background: white;
  color: var(--ink);
  padding: 26px;
  box-shadow: none;
}
.contact-card p {
  color: var(--muted-ink);
}
.contact-card a {
  color: var(--brand);
  font-weight: 800;
}
.small {
  font-size: 0.88rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }
  .hero-grid,
  .split,
  .split.reverse,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cards.three,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }
  .hero {
    padding: 58px 0;
  }
  h1 {
    font-size: 2.55rem;
  }
  .cards.three,
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
}
