:root {
  --bg: #f7f3eb;
  --panel: #fffdf8;
  --text: #1f1a17;
  --muted: #6d625a;
  --accent: #6b4e3d;
  --accent-dark: #2f241f;
  --border: rgba(31, 26, 23, 0.14);
  --shadow: 0 18px 45px rgba(31, 26, 23, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 78, 61, 0.10), transparent 34rem),
    var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header,
main {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
}

.brand,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.hero {
  max-width: 760px;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  font-weight: 700;
}

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

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

.section {
  padding: clamp(2.25rem, 6vw, 4rem) 0;
}

.section-heading {
  max-width: 680px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.card,
.note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.cover {
  display: grid;
  place-items: center;
  min-height: 11rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #9a6f58, #3b2b24);
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.note {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.note p,
.contact p:last-child {
  margin-bottom: 0;
}

.contact {
  padding-bottom: 4rem;
}

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

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

  .hero {
    padding-top: 2.5rem;
  }
}
