/* ============ Shared Static Page Styles ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1F2A28;
  background: #F6F2EA;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: #244C3D; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #1B3A2F; }

:root {
  --green-950: #122821;
  --green-900: #1B3A2F;
  --green-800: #244C3D;
  --green-700: #2D5F4D;
  --green-50:  #EAF0EC;
  --terra-500: #C8632E;
  --terra-600: #B0541F;
  --cream:     #F6F2EA;
  --paper:     #FFFFFF;
  --ink:       #1F2A28;
  --ink-soft:  #4B5856;
  --ink-mute:  #7A8784;
  --line:      #E5DFD3;
}

.nav { background: rgba(246, 242, 234, 0.85); border-bottom: 1px solid var(--line); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center;
}
.logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.logo-svg { height: 48px; width: auto; display: block; transition: transform .2s ease; }
.logo:hover .logo-svg { transform: scale(1.02); }
@media (min-width: 640px) { .logo-svg { height: 58px; } }
@media (max-width: 720px) { .logo-svg { height: 44px; } }
@media (max-width: 380px) { .logo-svg { height: 38px; } }

.static-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
@media (max-width: 600px) { .static-wrap { padding: 32px 18px 60px; } }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
  text-decoration: none;
  margin-bottom: 22px;
  padding: 8px 12px 8px 8px;
  border-radius: 8px;
  transition: all .15s ease;
}
.back-link:hover { background: var(--green-50); color: var(--green-800); }

.static-wrap h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--green-900);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.static-wrap .lede {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 36px;
}
.static-wrap h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--green-900);
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
}
.static-wrap h3 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 17px;
  color: var(--green-900);
  margin: 22px 0 8px;
}
.static-wrap p, .static-wrap li {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.static-wrap ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.static-wrap li { margin-bottom: 6px; }
.static-wrap address {
  font-style: normal;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.6;
}
.static-wrap address strong { display: block; font-weight: 600; color: var(--green-900); margin-bottom: 4px; }
.static-wrap hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}
.static-wrap .updated {
  color: var(--ink-mute); font-size: 13px;
  margin-top: 32px;
}

footer {
  background: var(--green-950);
  color: rgba(255,255,255,.65);
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
}
footer a { color: rgba(255,255,255,.85); }
footer a:hover { color: #fff; }
