:root {
  --bg: #faf7f2;
  --surface: #fffdf9;
  --text: #1f1a17;
  --muted: #6a5f58;
  --line: #d7cbbf;
  --accent: #8f3b2e;
  --accent-soft: #f3e2dc;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, #f2e8dc 0%, transparent 35%),
    radial-gradient(circle at 80% 8%, #efe4d4 0%, transparent 28%),
    var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

a {
  color: var(--accent);
}

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.9);
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.hero {
  padding: 88px 0 52px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.section {
  padding: 28px 0 52px;
}

.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card,
.placeholder-block {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery-item {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero {
    padding-top: 58px;
  }
}
