
:root {
  --bg: #fffdf9;
  --muted: #5f5a54;         /* warm gray-brown */
  --text: #2b2118;          /* deep brown for text */
  --brand: #7a4a2b;         /* pottery brown */
  --accent: #0f766e;        /* teal */
  --tan: #d1bfa3;           /* tan */
  --orange: #c2410c;        /* burnt orange */
  --card: #fcfbf7;
  --ring: #e7dfd6;          /* light tan border */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial; color: var(--text); background: linear-gradient(#f8f4ee, #fffdf9); }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }

.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,253,249,0.85); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ring); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav a, .nav button { color: var(--muted); text-decoration: none; background: none; border: none; cursor: pointer; font: inherit; }
.nav a:hover, .nav button:hover { color: var(--text); }

.hero { padding: 56px 0 40px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; }
.lead { font-size: 18px; color: var(--muted); margin-top: 8px; max-width: 65ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { border: 1px solid var(--ring); color: var(--muted); border-radius: 999px; padding: 6px 12px; font-size: 14px; background: #fff; }

.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; padding: 12px 16px; border: 1px solid var(--brand); background: var(--brand); color: white; font-weight: 700; }
.btn:hover { filter: brightness(0.95); }
.btn.outline { background: transparent; color: var(--brand); }
.btn.outline { border-color: var(--brand); }
.btn:focus-visible { outline: 3px solid #0f766e33; outline-offset: 3px; }

.card { background: var(--card); border: 1px solid var(--ring); border-radius: 16px; padding: 16px; }
.card h3 { margin: 0 0 4px; font-size: 18px; }
.card p { color: var(--muted); margin: 0; }

.section { scroll-margin-top: 90px; padding: 56px 0; }
.section.alt { background: #fffaf3; border-top: 1px solid var(--ring); border-bottom: 1px solid var(--ring); }

.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat .value { font-size: 32px; font-weight: 800; color: var(--brand); }
.stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 4px; }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid var(--ring); }

.kv { display: grid; gap: 16px; }
@media (min-width: 1000px) { .kv { grid-template-columns: 7fr 5fr; } }

.list { margin: 8px 0 0 18px; color: var(--muted); }
.badge { display:inline-block; padding: 4px 8px; border:1px solid var(--ring); border-radius:999px; font-size:12px; color: var(--muted); background: #fff; }

.form label { display:block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--brand); }
.input, .textarea { width:100%; padding: 12px 14px; border:1px solid var(--ring); border-radius: 12px; font: inherit; color: var(--text); background: white; }
.textarea { min-height: 120px; resize: vertical; }
.helper { font-size: 12px; color: var(--muted); }
.success { color: var(--accent); font-size: 12px; }
.error { color: #b91c1c; font-size: 12px; }

.footer { border-top: 1px solid var(--ring); padding: 32px 0; color: var(--muted); font-size: 14px; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--text); }
