:root {
  --ink: #1c1a17;
  --muted: #6f6659;
  --paper: #f7f4ee;
  --card: #ffffff;
  --line: #e3ddd1;
  --accent: #8a6d3b;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 18px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.92);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(180%) blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--accent); }
.site-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; }
.site-nav a.active { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* Hero */
.hero { text-align: center; padding: 84px 0 60px; }
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(2.8rem, 8vw, 5rem);
  margin: 0 0 18px; letter-spacing: 1px; line-height: 1.05;
}
.hero-tagline {
  max-width: 640px; margin: 0 auto; color: var(--muted);
  font-size: 1.12rem; font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.hero-home {
  min-height: calc(100vh - 82px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}

/* Content */
.section { padding: 24px 0 72px; }
.content { font-size: 1.06rem; }
.content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: 2.6rem; margin: 0.2em 0 0.6em;
}
.content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; font-size: 1.6rem;
  margin: 1.8em 0 0.4em; color: var(--ink);
}
.content p { margin: 0 0 1.1em; }
.content ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.content li { margin: 0.2em 0; }
.content blockquote {
  margin: 1.4em 0; padding: 18px 24px;
  border-left: 3px solid var(--accent); background: var(--card);
  font-size: 1.1rem;
}
.content blockquote p { margin: 0.3em 0; }

/* Images */
.feature-image { margin: 0 0 2em; text-align: center; }
.feature-image img {
  max-width: 100%; height: auto; border-radius: 3px;
  box-shadow: 0 10px 30px rgba(28, 26, 23, 0.14);
}
.feature-image.portrait img { max-width: 420px; }

.gallery {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end;
  margin: 1.8em 0 2em; justify-content: center;
}
.gallery figure { margin: 0; }
.gallery img {
  max-width: 100%; height: auto; border-radius: 3px;
  box-shadow: 0 6px 18px rgba(28, 26, 23, 0.12);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px; padding: 48px 0 40px;
  color: var(--muted); font-size: 0.92rem;
}
.footer-inner p { margin: 0.25em 0; }
.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem; color: var(--ink); font-weight: 600;
}
.footer-legal { margin-top: 22px; font-size: 0.8rem; }
.footer-legal p { margin: 0; }

@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero { padding: 56px 0 44px; }
  .header-inner { justify-content: center; text-align: center; }
}
