:root {
  --ink: #2c241c;
  --muted: #6b5e52;
  --paper: #faf7f2;
  --card: #ffffff;
  --line: #e8dfd4;
  --accent: #8b5e3c;
  --accent-deep: #6f482e;
  --sage: #5f6f5a;
  --max: 960px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 50; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--ink); text-decoration: none; letter-spacing: .02em;
}
.nav { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--muted); font-weight: 600;
  font-size: .9rem;
}
.nav a:hover { color: var(--accent); }

.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 94, 60, .12), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(95, 111, 90, .12), transparent 40%),
    var(--paper);
  text-align: center;
}
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .75rem; font-weight: 700; color: var(--sage); margin: 0 0 .8rem;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 0 0 1rem; line-height: 1.15;
}
.hero p {
  margin: 0 auto 1.6rem; max-width: 38ch; color: var(--muted); font-size: 1.1rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff !important; text-decoration: none;
  font-weight: 700; padding: .75rem 1.25rem; border-radius: 999px;
  letter-spacing: .03em;
}
.btn:hover { background: var(--accent-deep); }

section { padding: 3.5rem 0; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 .5rem;
}
.section-head p { margin: 0 auto; max-width: 52ch; color: var(--muted); }
.rule {
  width: 48px; height: 3px; background: var(--accent);
  border: 0; margin: .8rem auto 0;
}

.about-card, .note, .contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.6rem 1.5rem;
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; align-items: start;
}
.about-card h3, .note h3, .contact-card h3 {
  margin: 0 0 .6rem; font-family: "Playfair Display", Georgia, serif;
}
.about-card p, .note p, .contact-card p { margin: 0 0 .8rem; color: var(--muted); }
.about-card p:last-child, .note p:last-child { margin-bottom: 0; }

.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.value {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.3rem 1.2rem; text-align: center;
}
.value strong { display: block; color: var(--accent-deep); margin-bottom: .35rem; }

.contact {
  background: linear-gradient(180deg, transparent, rgba(139, 94, 60, .06));
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.contact-card a { font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 1.8rem; text-align: center; color: var(--muted); font-size: .92rem;
}

@media (max-width: 800px) {
  .about-grid, .values, .contact-grid { grid-template-columns: 1fr; }
  .nav { gap: .85rem; }
  .hero { padding: 4rem 0 3.2rem; }
}
