/*
 * BBQ WOK — Base
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--bbq-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 8vw, 4rem); margin-bottom: var(--space-8); }
h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); margin-bottom: var(--space-6); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p { margin-bottom: var(--space-4); color: var(--text-muted); }

a { color: inherit; text-decoration: none; transition: all var(--transition-fast); }
a:hover { color: var(--bbq-yellow); }

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

button {
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  transition: all 0.25s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--bbq-yellow);
  background-color: rgba(255, 210, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.1);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Accent italic (pour mots stylisés comme "Signature", "Alchemy") */
.text-accent {
  font-family: var(--font-family-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.text-yellow { color: var(--bbq-yellow); }
.text-muted { color: var(--text-muted); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
