/* Shelved — shared styles for content pages (about, privacy, terms, contact) */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #FAFAF8; --ink: #1A1A18; --surface: #FFFFFF; --muted: #8A8A85;
  --border: #E8E4DC; --forest: #1E4D3B; --forest-light: #DFF0E8;
  --oak: #B8A48A; --oak-light: #F0EAE0;
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; }
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Logo */
.logo { position: relative; display: inline-block; font-family: var(--serif); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.logo .shelf { position: absolute; left: -2px; right: -2px; top: 54%; height: 0.045em; border-radius: 2px; z-index: 0; }
.logo .shelf::before, .logo .shelf::after { content: ""; position: absolute; top: 0; width: 0.06em; height: 0.16em; border-radius: 0 0 2px 2px; }
.logo .shelf::before { left: 0; }
.logo .shelf::after { right: 0; }
.logo.forest { color: var(--forest); }
.logo.forest .shelf { background: var(--forest); opacity: 0.26; }
.logo.forest .shelf::before, .logo.forest .shelf::after { background: var(--oak); opacity: 0.7; }
.logo.white { color: #fff; }
.logo.white .shelf { background: #fff; opacity: 0.3; }
.logo.white .shelf::before, .logo.white .shelf::after { background: var(--oak); }

/* Nav */
nav { background: rgba(250,250,248,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 20px 32px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.btn { font-family: var(--sans); font-weight: 700; cursor: pointer; border: none; border-radius: 100px; background: var(--forest); color: #fff; padding: 11px 24px; font-size: 14px; transition: all 0.2s; }
.btn:hover { background: #163d2e; transform: translateY(-1px); }

/* Page hero */
.page-hero { background: var(--ink); padding: 72px 32px 56px; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.page-hero .ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--serif); font-size: 180px; color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; user-select: none; }
.page-hero h1 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -0.02em; position: relative; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); margin-top: 12px; position: relative; }
.page-hero .shelf-edge { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--oak); opacity: 0.4; }

/* Content */
.content { max-width: 760px; margin: 0 auto; padding: 56px 32px 80px; }
.content h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin: 40px 0 14px; letter-spacing: -0.01em; }
.content h2:first-child { margin-top: 0; }
.content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.content p { font-size: 16px; color: #3A3A36; margin-bottom: 16px; }
.content ul { margin: 0 0 16px; padding-left: 22px; }
.content li { font-size: 16px; color: #3A3A36; margin-bottom: 8px; }
.content .updated { font-size: 14px; color: var(--muted); font-style: italic; margin-bottom: 32px; }
.content strong { color: var(--ink); }

/* Callout */
.callout { background: var(--forest-light); border: 1px solid #C3DCCC; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.callout p { color: #1a4a2e; margin: 0; font-size: 15px; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.contact-card .icon { font-size: 28px; margin-bottom: 12px; }
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--muted); margin: 0; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } .page-hero h1 { font-size: 32px; } }

/* Footer */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 32px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-inner .tag { font-size: 14px; color: var(--muted); }
.footer-bottom { max-width: 1100px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
