:root {
  --bg: #faf8f5;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #8b6f4e;
  --accent-light: #c4a882;
  --border: #e8e2d9;
  --card: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin:  auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.logo:hover { text-decoration: none; }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

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

main { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 4rem; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-visual {
  aspect-ratio: 4/5;
  border-radius: 2px;
  background: linear-gradient(145deg, #e8ddd0 0%, #d4c4b0 45%, #a89078 100%);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.hero h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { background: #6d563c; text-decoration: none; }

.section-title {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card p { color: var(--muted); font-size: 0.95rem; }

.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.page-header h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 2.25rem;
}

.prose { max-width: 42rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose h2 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.contact-list { list-style: none; margin-top: 1.5rem; }
.contact-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); color: var(--muted); }

footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a { color: var(--muted); }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-visual { max-height: 280px; aspect-ratio: 16/10; }
  nav ul { gap: 1rem; }
}
