:root {
  --bg: #f7f3ed;
  --panel: #fffaf2;
  --text: #151515;
  --muted: #5f5a53;
  --line: #ded4c5;
  --accent: #1f2933;
  --accent-soft: #ebe3d6;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(247, 243, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--text);
  border-radius: 10px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 80px 6vw;
}

.hero-content {
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.hero-text,
.section p,
.card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 80px 6vw;
}

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

.card,
.quote-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.card ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.card li + li {
  margin-top: 8px;
}

.narrow {
  max-width: 980px;
}

.quote-panel {
  display: grid;
  gap: 18px;
  align-items: start;
}

.quote-panel p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
  letter-spacing: 0.14em;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

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

  .nav {
    justify-content: flex-start;
    gap: 12px;
  }

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

  .footer-links {
    text-align: left;
  }
}
