/* ─── Reset & Base ─────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─── Accessibility ─────────────────────────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 127, 51, 0.65);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-kicker {
  display: inline-block;
  color: var(--color-orange);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  height: 54px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 16px 40px rgba(224, 127, 51, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(224, 127, 51, 0.42);
}

.btn-outline {
  border: 1.5px solid var(--color-orange);
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  background: rgba(224, 127, 51, 0.12);
  transform: translateY(-2px);
}

/* ─── Card hover shared ─────────────────────────────────────────────────────── */

.card-hover {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 127, 51, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

/* ─── Utilities ─────────────────────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
