/* ═══════ FONT FACES ═══════ */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HKGroteskWide';
  src: url('../fonts/HKGroteskWide-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HKGroteskWide';
  src: url('../fonts/HKGroteskWide-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HKGroteskWide';
  src: url('../fonts/HKGroteskWide-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HKGroteskWide';
  src: url('../fonts/HKGroteskWide-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ═══════ DESIGN TOKENS ═══════ */
:root {
  --deep-red: #9B1B1B;
  --hot-red: #C62828;
  --burning-orange: #D84315;
  --fire-orange: #E65100;
  --golden: #F57C00;
  --warm-gold: #FFB300;
  --light-gold: #FFD54F;
  --bg-dark: #111010;
  --bg-card: #1A1817;
  --bg-section: #141312;
  --text-primary: #FAF0E6;
  --text-muted: #B8AC9E;
  --silver: #D1C8BF;

  --font-heading: 'HKGroteskWide', sans-serif;
  --font-display: 'HKGroteskWide', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ═══════ RESET ═══════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--fire-orange) var(--bg-dark);
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--fire-orange);
  color: var(--bg-dark);
}

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

a { color: inherit; }

.accent-link {
  color: var(--fire-orange);
  text-decoration: underline;
  text-decoration-color: rgba(230, 81, 0, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.accent-link:hover {
  color: var(--warm-gold);
  text-decoration-color: var(--warm-gold);
}

/* ═══════ TYPOGRAPHY ═══════ */
.section-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 20px;
}

.accent {
  background: linear-gradient(90deg, var(--burning-orange), var(--warm-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════ CURSOR GLOW ═══════ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,81,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ═══════ SCROLL REVEAL ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════ PAGE HEADER (shared across inner pages) ═══════ */
.page-header {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header .big-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 81, 0, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-header .section-tag {
  margin-bottom: 24px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════ SECTION SPACING ═══════ */
.section-padding {
  padding: 100px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Alternating section background */
.bg-alt {
  background: var(--bg-section);
}

/* Centered section header (used on about, contact, etc.) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.compact {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .page-header { padding: 120px 20px 60px; }
  .section-padding { padding: 80px 20px; }
}
