/* ============================================================
   Next Level Barbers — Design Tokens
   The ONLY source of colors, type, spacing, and shared classes.
   ============================================================ */

:root {
  /* ---- Color ---- */
  --color-bg:         #1a1512;  /* warm near-black — leather in shadow */
  --color-bg-alt:     #231d18;  /* alternate section bg — slightly lighter */
  --color-surface:    #2e2620;  /* card/raised surface — dark walnut */
  --color-red:        #b5342a;  /* primary accent — warm brick red */
  --color-red-hover:  #952a22;  /* button hover state */
  --color-cream:      #e8dcc8;  /* secondary accent — aged cream */
  --color-cream-soft: #d4c8b4;  /* softer cream for badges, subtle elements */
  --color-text:       #f2ece4;  /* primary text — warm off-white */
  --color-text-soft:  #a89a8a;  /* secondary text — warm taupe */
  --color-text-muted: #6e6258;  /* subtle text, captions, legal */
  --color-line:       #3a3028;  /* hairline borders — warm dark brown */

  /* ---- Hero gradient ---- */
  --gradient-hero: linear-gradient(165deg, #1a1512 0%, #2a2018 50%, #1e1714 100%);

  /* ---- Type ----
     Headings:  Barlow Condensed (tall, athletic, direct — urban barbershop energy)
     Body & UI: DM Sans (geometric but warm, friendly without being casual)       */
  --font-heading: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --text-h1:      clamp(2.8rem, 6vw, 4.2rem);
  --text-h2:      clamp(1.8rem, 3.5vw, 2.6rem);
  --text-h3:      1.25rem;
  --text-body:    1.0625rem;   /* 17px */
  --text-small:   0.875rem;
  --text-eyebrow: 0.8125rem;

  /* ---- Spacing & shape ---- */
  --space-section:        96px;
  --space-section-mobile: 56px;
  --space-gap:            32px;
  --radius:               8px;
  --radius-pill:          999px;
  --container-max:        1080px;
  --shadow-card:          0 2px 16px rgba(0, 0, 0, 0.35);
}

/* ---- Reset & base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: var(--text-h1); font-weight: 700; }
h2 { font-size: var(--text-h2); font-weight: 600; }
h3 { font-size: var(--text-h3); font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: var(--color-red); }

/* ---- Shared layout classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
@media (max-width: 720px) {
  .section {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }
}

/* ---- Eyebrow kicker (small caps line above an h2) ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: 12px;
}

/* ---- Buttons (the ONLY button styles on the site) ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 16px 32px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-red);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--color-red-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(232, 220, 200, 0.35);
}
.btn-ghost:hover {
  border-color: var(--color-cream);
}

/* ---- Badge pill ---- */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(232, 220, 200, 0.1);
  color: var(--color-cream);
}

/* ---- Card ---- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
}
