@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface2: #f2efe9;
  --border: rgba(0,0,0,0.08);
  --border-md: rgba(0,0,0,0.14);
  --text: #1c1a17;
  --text-muted: #6a6560;
  --text-faint: #aaa59e;
  --ink: #2c2a26;
  --accent: #8b4513;
  --accent-hover: #6f360f;
  --accent-light: #f7ede4;
  --accent-mid: #a0522d;
  --green: #2d5a3d;
  --green-light: #e8f2eb;
  --gold: #c9973a;
  --gold-light: #fdf6e8;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-h: 68px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.04);
  --shadow: 0 2px 10px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.05);
  --max-w: 1060px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 2.5rem;
}
.nav-inner { display: flex; align-items: center; width: 100%; max-width: var(--max-w); margin: 0 auto; gap: 0; }
.nav-logo { font-family: 'DM Mono', monospace; font-size: 16px; font-weight: 500; color: var(--accent); text-decoration: none; letter-spacing: -0.2px; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0; list-style: none; margin-left: 2rem; flex: 1; }
.nav-links a { display: block; padding: 6px 13px; font-size: 13px; font-weight: 400; color: var(--text-muted); text-decoration: none; border-radius: var(--radius); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active { color: var(--accent); font-weight: 500; }
.nav-cta { margin-left: auto; padding: 8px 20px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 500; border-radius: var(--radius); text-decoration: none; transition: background .15s; flex-shrink: 0; font-family: 'DM Sans', sans-serif; }
.nav-cta:hover { background: var(--accent-hover); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; padding: 6px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; display: block; transition: all .2s; }

/* PAGE */
.page { padding-top: var(--nav-h); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* TYPE */
.serif { font-family: 'Lora', serif; }
.display { font-family: 'Lora', serif; font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.18; letter-spacing: -0.02em; }
.display em { font-style: italic; color: var(--accent); }
h2.sh { font-family: 'Lora', serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.25; letter-spacing: -0.01em; }
h3.sh3 { font-family: 'Lora', serif; font-size: 1.2rem; line-height: 1.3; }
.eyebrow { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.body-lg { font-size: 17px; line-height: 1.75; color: var(--text-muted); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; text-decoration: none; transition: all .18s; border: 1px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-md); }
.btn-outline:hover { background: var(--surface2); }
.btn-text { background: transparent; color: var(--accent); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-text:hover { color: var(--accent-hover); }

/* DIVIDER */
hr.fancy { border: none; height: 1px; background: linear-gradient(to right, transparent, var(--border-md), transparent); margin: 0; }

/* TAG */
.tag { display: inline-block; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 20px; }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-gold { background: var(--gold-light); color: var(--gold); }
.tag-warm { background: var(--accent-light); color: var(--accent); }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); margin-top: 5rem; padding: 3rem 0 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-brand-name { font-family: 'DM Mono', monospace; font-size: 15px; font-weight: 500; color: var(--accent); }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: var(--text-faint); margin-top: 6px; line-height: 1.5; }
.footer-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-faint); margin-bottom: 12px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.footer-links-list a:hover { color: var(--text); }
.footer-bottom { max-width: var(--max-w); margin: 2rem auto 0; padding: 1.5rem 2.5rem 0; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-faint); }

@media (max-width: 700px) {
  nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--surface); padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); gap: 2px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 10px 12px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { padding: 1rem 1.25rem 0; }
}
