/*
 * TobyCon — Shared Styles
 * Variables, reset, and base elements common to every page.
 * ─────────────────────────────────────────────────────────
 */

/* ── Design tokens ──────────────────────────────────────────────────────────── */

:root {
  /* Palette — California / Nevada high desert */
  --sand:        #e8dfc8;
  --sand-light:  #f5f0e6;
  --sand-dark:   #c4b89a;
  --sage:        #6e8f6e;
  --sage-dark:   #4a6448;
  --sage-light:  #a8c4a0;
  --sky:         #7ab0c8;
  --sky-dark:    #4e87a8;
  --earth:       #8b6f47;
  --earth-dark:  #5c4830;
  --ink:         #1e2218;
  --ink-light:   #3a3f2e;
  --mist:        #f0ece0;
  --white:       #ffffff;
  --shadow:      rgba(30, 34, 24, 0.12);
  --red:         #c0392b;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--mist);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Navigation — base (shared across all pages) ────────────────────────────── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
}

.nav-logo span {
  color: var(--sage-light);
}

/* ── Utility: eyebrow label ─────────────────────────────────────────────────── */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
  display: block;
}
