:root {
  --primary: #176B57;
  --accent: #C8EF45;
  --ink: #14231f;
  --paper: #f7f6f0;
  --line: rgba(20,35,31,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.topbar, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.topbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { font-weight: 850; letter-spacing: -.03em; text-decoration: none; font-size: 1.25rem; }
.contact-link { color: var(--primary); font-weight: 750; }
.hero { padding: clamp(70px, 11vw, 150px) 0 64px; max-width: 820px; }
.eyebrow { color: var(--primary); font-size: .78rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 16px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 8vw, 7rem); letter-spacing: -.065em; line-height: .92; }
.lede { max-width: 680px; font-size: clamp(1.08rem, 2vw, 1.38rem); line-height: 1.65; color: #475a54; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; text-decoration: none; }
.primary { background: var(--primary); color: white; }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.photo { margin: 0; grid-column: span 4; min-height: 320px; overflow: hidden; border-radius: 24px; background: #dfe5df; }
.photo:first-child { grid-column: span 8; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.empty-gallery { grid-column: 1 / -1; min-height: 260px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 24px; color: #66756f; }
.details { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); margin-top: 72px; }
.details article { padding: 28px 22px; display: grid; gap: 8px; border-right: 1px solid var(--line); }
.details article:last-child { border: 0; }
.details span { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: #66756f; }
footer { min-height: 110px; display: flex; align-items: center; justify-content: space-between; color: #66756f; font-size: .88rem; }
.theme-warm { --paper: #fff8ec; }
.theme-warm .photo { border-radius: 10px 42px 10px 42px; }
.theme-direct h1 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 900; text-transform: uppercase; }
.theme-direct .button, .theme-direct .photo { border-radius: 4px; }
@media (max-width: 720px) {
  .topbar, main, footer { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 72px; }
  .gallery { grid-template-columns: 1fr; }
  .photo, .photo:first-child { grid-column: auto; min-height: 250px; }
  .details { grid-template-columns: 1fr; }
  .details article { border-right: 0; border-bottom: 1px solid var(--line); }
  footer { padding: 28px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
}