/* =========================================================
   NeedAHost — Base styles (reset + typography + layout)
   ========================================================= */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.4; }
h4 { font-size: 0.95rem; font-weight: 500; }

h1 em { font-style: italic; color: var(--amber); }

p { color: inherit; }

/* Section primitives */
.section {
  padding: var(--sp-9) var(--sp-8);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: var(--sp-7);
}

/* Eyebrow chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--amber-light);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-6);
  border: 1px solid rgba(200, 128, 10, 0.2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 900px) {
  .section { padding: var(--sp-8) var(--sp-5); }
}
