:root {
  --ink: #1e2521;
  --muted: #59645f;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --sage: #d8e4d8;
  --moss: #213d35;
  --rose: #b86b67;
  --line: #d7ded7;
  --shadow: 0 18px 45px rgba(30, 37, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--moss);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 96px clamp(20px, 5vw, 64px) 72px;
  background:
    linear-gradient(105deg, rgba(33, 61, 53, 0.9), rgba(33, 61, 53, 0.62) 52%, rgba(184, 107, 103, 0.28)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='%23d8e4d8'/%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.45' stroke-width='2'%3E%3Cpath d='M90 710c140-110 280-120 420-30s280 80 420-20 260-120 390-40'/%3E%3Cpath d='M160 230c110 70 220 74 330 12s230-76 360-10 250 62 360-8'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.24'%3E%3Ccircle cx='1040' cy='330' r='126'/%3E%3Ccircle cx='1110' cy='330' r='52' fill-opacity='.4'/%3E%3Cpath d='M990 462h230c-14 72-58 108-132 108s-102-36-98-108z'/%3E%3Cpath d='M820 502h290c-18 86-73 130-164 130s-132-44-126-130z' fill-opacity='.18'/%3E%3C/g%3E%3C/svg%3E") center/cover;
}

.hero__content {
  max-width: 780px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c9bf;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.75rem, 10vw, 7rem);
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  color: var(--moss);
  background: #fff;
}

.button--secondary {
  color: #fff;
}

.section {
  padding: 82px clamp(20px, 5vw, 64px);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section--accent {
  background: var(--moss);
  color: #fff;
}

.section__inner {
  max-width: 860px;
}

.section--accent p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

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

.feature-card {
  min-height: 210px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card p,
.details p {
  color: var(--muted);
}

.details {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav a {
    padding-left: 0;
  }

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

  .section--split,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
