:root {
  --bg: #f5f1ea;
  --paper: #fffdf9;
  --ink: #1d1b19;
  --muted: #67615b;
  --accent: #8f5c38;
  --accent-dark: #5f3b22;
  --line: rgba(29,27,25,0.12);
  --shadow: 0 20px 60px rgba(36, 24, 18, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
@media (max-width: 700px) {
  .wrap { width: min(1180px, calc(100% - 2.5rem)); }
  .narrow { width: min(760px, calc(100% - 2.5rem)); }
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.header-wrap { display:flex; justify-content:space-between; align-items:center; padding: 1rem 0; gap: 1rem; }
.brand { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nav { display:flex; gap: 1rem; flex-wrap: wrap; font-size: .96rem; color: var(--muted); }
.nav a:hover { color: var(--accent-dark); }
.hero { padding: 5rem 0 4rem; }
.hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--accent-dark); margin-bottom: 1rem; }
.hero h1, .page-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .95; margin: 0 0 .75rem; }
.lead { font-size: 1.22rem; color: var(--muted); margin: 0 0 1.25rem; }
blockquote { margin: 1.75rem 0; padding-left: 1.2rem; border-left: 3px solid var(--accent); color: var(--muted); font-style: italic; }
blockquote footer { margin-top: .75rem; font-style: normal; font-size: .95rem; }
.intro { max-width: 64ch; }
.hero-actions { display:flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  padding: .95rem 1.2rem; border-radius: 999px; background: var(--accent-dark); color: white; font-weight: 600;
  box-shadow: var(--shadow);
}
.button-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.hero-media img { border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; max-height: 720px; width: 100%; }
.sections { padding: 1rem 0 5rem; }
.card-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.card {
  background: rgba(255,255,255,.75); border:1px solid var(--line); border-radius: 24px; padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(36,24,18,.06); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h2 { margin: 0 0 .65rem; font-family: Georgia, serif; font-size: 1.7rem; }
.card p { margin: 0 0 1rem; color: var(--muted); }
.card span { color: var(--accent-dark); font-weight: 600; }
.global-banner {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: #d9d2c8;
}
.global-banner img {
  width: 100%;
  height: clamp(180px, 26vw, 320px);
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-hero { padding: 4rem 0 1rem; }
.page-content { padding: 0 0 5rem; }
.prose p, .prose li, .prose blockquote { font-size: 1.08rem; }
.prose h2 { margin-top: 2.5rem; font-family: Georgia, serif; font-size: 2rem; }
.prose blockquote { background: rgba(255,255,255,.7); padding: 1.25rem 1.4rem; border-radius: 18px; border-left: 3px solid var(--accent); }
.page-image { max-width: 280px; margin-bottom: 1.5rem; border-radius: 12px; }
.page-image-left { float: left; margin-right: 1.5rem; }
.page-image-right { float: right; margin-left: 1.5rem; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; align-items: start; }
.gallery-item { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: 0 10px 24px rgba(36,24,18,.06); padding: .5rem; }
.gallery-item img { width: 100%; height: auto; object-fit: contain; transition: transform .18s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.lightbox { border: 0; padding: 0; background: transparent; max-width: none; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(10,10,10,.82); }
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 2rem 4.5rem;
}
.lightbox-image { max-width: min(92vw, 1200px); max-height: 88vh; border-radius: 18px; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 44px; height: 44px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.92); color: #111; font-size: 1.8rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.95); color: #111; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 700px) {
  .lightbox-stage { padding: 1rem 3.75rem; }
  .lightbox-nav { width: 48px; height: 48px; }
}
.site-footer { border-top:1px solid var(--line); padding: 2rem 0 4rem; color: var(--muted); }
.footer-wrap { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.muted { color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid, .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 3rem; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
