/* Cedar West Tools — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --white: #ffffff;
  --bg: #f5f4f0;
  --bg-card: #ffffff;
  --border: #e2dfd8;
  --border-dark: #ccc8bf;
  --text: #1a1916;
  --text-mid: #6b6760;
  --text-dim: #a09d98;
  --accent: #1a4a2e;
  --accent-light: #e8f0eb;
  --accent-mid: #2d6b47;
  --accent-hover: #153d25;
  --red: #c0392b;
  --yellow: #b7860b;
  --green: #1a6b3a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.cw-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.cw-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 32px;
}

.cw-nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.cw-nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}
.cw-nav-brandname {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cw-nav-brandname span {
  color: var(--accent);
}
.cw-nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin-right: 24px;
}
.cw-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.cw-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.cw-nav-link:hover { background: var(--bg); color: var(--text); }
.cw-nav-link.active { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.cw-nav-right {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
}

/* ── Page wrapper ── */
.cw-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.cw-page-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── Page header ── */
.cw-page-header {
  margin-bottom: 32px;
}
.cw-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.cw-page-header p {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
}

/* ── Card ── */
.cw-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Button ── */
.cw-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.cw-btn:hover { background: var(--accent-hover); }
.cw-btn:active { transform: scale(0.98); }
.cw-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Input ── */
.cw-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--text);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cw-input::placeholder { color: var(--text-dim); }
.cw-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,74,46,0.1);
}

/* ── Label ── */
.cw-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

/* ── Breadcrumb ── */
.cw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.cw-breadcrumb a { color: var(--accent); text-decoration: none; }
.cw-breadcrumb a:hover { text-decoration: underline; }
.cw-breadcrumb span { color: var(--text-dim); }
/* deployed 2026-03-10T19:03:33.298250 */
