/* WildFire — White + Fire theme */
/* wildfireco.io */

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

:root {
  --fire: #D85A30;
  --fire-light: #FAECE7;
  --fire-border: #F5C4B3;
  --amber: #EF9F27;
  --amber-light: #FAEEDA;
  --coal: #2C2C2A;
  --charcoal: #444441;
  --mid: #5F5E5A;
  --muted: #888780;
  --border: #D3D1C7;
  --surface: #F7F5F0;
  --white: #FAFAF8;
  --page-bg: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--coal);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--coal);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.1rem; }

p { color: var(--mid); }

a {
  color: var(--fire);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────── */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ── Navigation ──────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fire);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--coal); }

.nav-cta {
  background: var(--fire);
  color: var(--amber-light) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

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

.btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--fire);
  color: var(--amber-light);
}

.btn-secondary {
  background: transparent;
  color: var(--coal);
  border: 0.5px solid var(--border);
}

.btn-secondary:hover { background: var(--surface); }

/* ── Fire accent bar ─────────────────────────────── */

.fire-bar {
  height: 3px;
  width: 48px;
  background: var(--fire);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* ── Tags / chips ────────────────────────────────── */

.tag {
  display: inline-block;
  background: var(--fire-light);
  color: #993C1D;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 0.5px solid var(--fire-border);
  margin: 0 4px 4px 0;
}

/* ── Section labels ──────────────────────────────── */

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

/* ── Cards ───────────────────────────────────────── */

.card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

/* ── Forms ───────────────────────────────────────── */

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--coal);
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Footer ──────────────────────────────────────── */

footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fire);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--coal); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}

/* ── Utility ─────────────────────────────────────── */

.text-center { text-align: center; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.5rem; }

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
}
