﻿:root {
  --bg: #f6f1e8;
  --surface: #fffdf9;
  --surface-alt: #efe7da;
  --text: #1f1a17;
  --muted: #6f675f;
  --line: #d8ccbb;
  --accent: #7a5c3e;
  --accent-dark: #5f452d;
  --shadow: 0 10px 30px rgba(70, 45, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(to bottom, #f8f4ec 0%, #f6f1e8 100%);
  color: var(--text);
  line-height: 1.7;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(216, 204, 187, 0.7);
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-top {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.nav-text,
.nav-button {
  text-decoration: none;
  font-size: 0.98rem;
}

.nav-text {
  color: var(--text);
  padding: 0.6rem 0.8rem;
}

.nav-button,
.button {
  color: white;
  background: var(--accent);
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  display: inline-block;
  box-shadow: var(--shadow);
}

.nav-button:hover,
.button:hover {
  background: var(--accent-dark);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-small {
  padding: 4.5rem 0 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 1.2rem;
  color: #2e2823;
  max-width: 46rem;
}

.actions {
  margin-top: 1.6rem;
}

.section {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.alt {
  background: linear-gradient(to bottom, rgba(239, 231, 218, 0.55), rgba(239, 231, 218, 0.25));
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.elegant-list {
  margin: 0;
  padding-left: 1.2rem;
}

.elegant-list li {
  margin-bottom: 0.55rem;
}

.closing {
  padding-bottom: 4rem;
}

strong {
  font-weight: 700;
}

a {
  transition: all 0.2s ease;
}

@media (max-width: 850px) {
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }
}
