:root {
  --color-primary: #FF6B35;
  --color-secondary: #1A2B4C;
  --color-accent: #FFD700;
  --color-bg: #F5F0E0;
  --color-bg-dark: #2C2C2C;
  --color-text: #4A4A4A;
  --color-border: #8B8680;
  --color-highlight: #C04E3A;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 12px rgba(0,0,0,0.15);
  --border-width: 4px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--color-primary); color: #fff; padding: 8px 16px; z-index: 100; }
.skip-link:focus { top: 0; }
.site-header { background: var(--color-secondary); color: #fff; border-bottom: var(--border-width) solid var(--color-primary); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 70px; }
.brand { font-family: var(--font-heading); font-size: 1.5rem; text-decoration: none; color: #fff; transition: color 0.3s; }
.brand:hover { color: var(--color-primary); }
.nav ul { list-style: none; display: flex; gap: 20px; }
.nav a { text-decoration: none; color: #fff; padding: 8px 12px; border-radius: 4px; transition: background 0.3s; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--color-primary); color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.hamburger { display: block; width: 24px; height: 2px; background: #fff; position: relative; }
.hamburger::before, .hamburger::after { content: ''; display: block; width: 24px; height: 2px; background: #fff; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--color-secondary); padding: 20px; }
  .nav[data-open] { display: block; }
  .nav ul { flex-direction: column; gap: 10px; }
  .nav-toggle { display: block; }
}
.site-footer { background: var(--color-bg-dark); color: #ccc; padding: 40px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.footer-brand .trust-statement { font-size: 0.9rem; margin-top: 10px; }
.footer-links a { display: block; color: var(--color-accent); text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { color: #fff; }
.footer-info p { margin-bottom: 5px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.btn { display: inline-block; padding: 12px 24px; background: var(--color-primary); color: #fff; text-decoration: none; border: none; border-radius: 0; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; transition: background 0.3s, transform 0.2s; }
.btn:hover { background: var(--color-accent); transform: scale(1.02); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.card { background: #fff; border: var(--border-width) solid var(--color-border); box-shadow: var(--shadow); padding: 20px; }
.progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: var(--color-accent); z-index: 100; }
.img-container { position: relative; overflow: hidden; background: var(--color-border); aspect-ratio: 16/9; }
@media (max-width: 480px) {
  .header-inner { height: 60px; }
}
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
