:root {
  --bg: #f6f1ea;
  --panel: #fbf8f3;
  --text: #2f2b27;
  --muted: #746d65;
  --line: #ddd3c7;
  --accent: #a8b791;
  --accent-dark: #8d9b78;
  --shadow: 0 10px 30px rgba(47, 43, 39, 0.05);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); background: white;
}
.brand-title { font-size: 13px; letter-spacing: .28em; text-transform: uppercase; }
.brand-subtitle { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.nav a { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--text); }
.hero {
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #efe9e0, #f8f3ed);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent-dark); }
h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.1; }
.hero h1 { font-size: clamp(44px, 8vw, 82px); margin-top: 16px; max-width: 760px; }
.lead { max-width: 700px; font-size: 20px; line-height: 1.8; color: #504a45; margin: 24px 0 0; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-block; padding: 14px 22px; border-radius: 999px; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; border: 1px solid var(--text); transition: .2s ease; background: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: var(--shadow);
}
.hero-photo img { border-radius: 28px; box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.section { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.section p, .article-content p, .blog-intro, .article-excerpt { font-size: 18px; line-height: 1.9; color: #574f49; }
.latest { background: rgba(255,255,255,.25); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.latest-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
.latest-card img, .blog-thumb { width: 100%; height: 220px; object-fit: cover; border-radius: 22px; }
.site-footer { border-top: 1px solid var(--line); background: var(--panel); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding: 28px 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 15px; color: var(--muted); }
.page-shell { padding: 72px 0; }
.page-title { font-size: clamp(42px, 7vw, 74px); margin-top: 16px; }
.blog-list-wrap {
  margin-top: 42px; max-height: 820px; overflow: auto; padding-right: 8px;
}
.blog-list { display: grid; gap: 22px; }
.blog-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 20px; box-shadow: var(--shadow);
}
.blog-card:hover { transform: translateY(-2px); transition: .2s ease; }
.meta { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.blog-card h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 10px; }
.article-shell { max-width: 860px; margin: 0 auto; }
.article-hero { margin-top: 30px; }
.article-hero img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); max-height: 720px; object-fit: cover; }
.article-content { margin-top: 36px; }
.article-content p { color: #38332f; margin-top: 22px; }
.article-content p:first-child::first-letter {
  float: left; font-size: 72px; line-height: .9; margin-right: 10px; margin-top: 6px;
}
.quote-box {
  margin: 38px 0; border-left: 4px solid var(--accent); background: #f5f1eb; padding: 24px 24px 24px 28px;
  font-size: 28px; line-height: 1.6; font-style: italic; color: #5d554e;
}
.article-content h2 { font-size: 36px; margin-top: 40px; }
.entry-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px;
}
.entry-nav a, .entry-nav div {
  min-height: 100px; background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 20px; box-shadow: var(--shadow);
}
.entry-nav .disabled { color: var(--muted); }
.small-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.connected-links a { text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
@media (max-width: 920px) {
  .hero-grid, .grid-2, .latest-card, .blog-card, .entry-nav { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .card { padding: 24px; }
  .latest-card img, .blog-thumb { height: 260px; }
}


.grid-home { align-items: stretch; }
.about-link-card { display: block; }
.about-link-card .btn { pointer-events: none; }
.about-intro { max-width: 980px; margin-top: 28px; }
.about-intro p { font-size: 22px; line-height: 1.8; color: #4f4944; }
.about-intro p + p { margin-top: 14px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.brand-card h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 12px; }
.contact-list { margin-top: 22px; display: grid; gap: 14px; }
.contact-list div { padding-top: 14px; border-top: 1px solid var(--line); }
.contact-list span { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px; }
.contact-list a { color: var(--text); text-decoration: underline; text-underline-offset: 4px; word-break: break-word; }
.blog-list-wrap { margin-top: 24px; }
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
}
