/* Shared Tellus palette across all three systems */
:root {
  --sand: #ECE0CC;
  --sand-soft: #F5EDDD;
  --sand-muted: #D4C8B5;

  --teal: #3F8487;
  --teal-deep: #2A5A5C;
  --teal-ink: #1F3536;

  --clay: #C75A2A;
  --clay-deep: #9E441F;

  --cream-90: rgba(236, 224, 204, 0.90);
  --cream-70: rgba(236, 224, 204, 0.70);
  --cream-40: rgba(236, 224, 204, 0.40);
  --cream-20: rgba(236, 224, 204, 0.20);

  --teal-deep-20: rgba(42, 90, 92, 0.20);
  --teal-deep-40: rgba(42, 90, 92, 0.40);
  --teal-deep-08: rgba(42, 90, 92, 0.08);

  /* Type stacks */
  --serif: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--sand);
  color: var(--teal-ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

/* Universal eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Wordmark - the brand anchor */
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--teal);
  line-height: 0.95;
}
.wordmark .dot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--clay);
  vertical-align: super;
  margin-left: -0.05em;
  transform: translateY(-0.05em);
}
