:root {
  color-scheme: light;
  --bg: #f4efe8;
  --surface: rgba(255, 255, 255, 0.74);
  --text: #1e1a17;
  --muted: #665d55;
  --line: rgba(30, 26, 23, 0.12);
  --accent: #8c6a43;
  --accent-strong: #5b4227;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(35, 25, 16, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(140, 106, 67, 0.18), transparent 35%),
    linear-gradient(180deg, #f8f4ee 0%, var(--bg) 100%);
}

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

.site-header,
.site-footer,
.hero,
.page-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.hero,
.page-section {
  margin-top: 24px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.96;
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent-strong);
  color: #fff;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 24px 0 48px;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .page-section {
    padding: 32px 24px;
  }

  .actions {
    flex-direction: column;
  }
}
