/* ===== TOKENS ===== */
:root {
  --bg: #fbf6ec;
  --bg-alt: #f5ecd9;
  --surface: #fffefb;
  --ink: #1a1612;
  --ink-2: #4a4138;
  --ink-3: #8a8074;
  --green: #246B3C;
  --green-deep: #173d22;
  --green-soft: #e9f1ea;
  --orange: #e87a3b;
  --orange-soft: #f5c6a0;
  --border: #e5dcc8;
  --shadow-sm: 0 1px 2px rgba(26,22,18,0.04);
  --shadow-md: 0 1px 2px rgba(26,22,18,0.04), 0 8px 24px rgba(26,22,18,0.06);
  --shadow-lg: 0 4px 12px rgba(26,22,18,0.06), 0 24px 48px rgba(26,22,18,0.10);
}

/* ===== LAYOUT ===== */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ===== HEADER ===== */
header {
  padding: 22px 0;
  background: var(--green);
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  color: var(--bg);
}
.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.nav-link {
  font-size: 14px;
  color: rgba(251, 246, 236, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--bg); }

/* ===== FOOTER ===== */
footer {
  padding: 36px 0;
  background: var(--green);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.65);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .brand { font-size: 18px; }
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  color: rgba(251, 246, 236, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.foot-links a:hover { color: var(--bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
  header { padding: 20px 0; }
  .nav-link { display: none; }
}
