:root {
  --primary: #D52B1E; /* Canada red */
  --primary-700: #B32318;
  --primary-800: #8B1A14;
  --bg: #0f0f10;
  --surface: #151517;
  --surface-2: #1b1b1e;
  --text: #f2f3f5;
  --muted: #c6c7cb;
  --border: #2a2a2e;
  --focus: 2px solid #ffffff;
  --shadow: 0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.2);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, #0f0f10 0%, #111113 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 21, 23, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-800));
  font-weight: 800;
  box-shadow: var(--shadow);
}
.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  border-radius: 8px;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.nav-list a:hover { color: var(--text); }
.header-cta { display: none; }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 32px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}
.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  margin: 0 0 16px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: var(--muted);
}
.hero-facts strong { color: var(--text); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 16px;
}
.hero-contact {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-contact .contact-link {
  color: var(--muted);
  text-decoration: none;
}
.hero-contact .contact-link:hover { color: var(--text); }
.hero-contact .dot { opacity: 0.5; }
.hero-art-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #141416, #0f0f10);
  box-shadow: var(--shadow);
}
.hero-art {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-art-450 { height: 450px; }
.hero-gradient {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 50%;
  background: radial-gradient(60% 100% at 10% 10%, rgba(213,43,30,0.35) 0%, rgba(213,43,30,0) 60%);
  pointer-events: none;
}
.hero.no-art .hero-inner { grid-template-columns: 1fr; }

/* Sections */
.section {
  padding: 56px 0;
}
.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 0 22px;
}
.muted { color: var(--muted); }
.grid {
  display: grid;
  gap: 16px;
}
.cards {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
}

.features {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 24px;
  line-height: 1;
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.feature p {
  margin: 0;
  color: var(--muted);
}

.details {
  display: grid;
  gap: 18px;
}
.details-list {
  margin: 0;
  padding: 0;
}
.details-list .row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.details-list .row:last-child { border-bottom: 0; }
.details-list dt {
  color: var(--muted);
}
.details-list dd {
  margin: 0;
}
.details-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-final {
  text-align: center;
}
.cta-sub {
  margin: 8px 0 18px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #0e0e0f;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 0;
  text-align: center;
}
.footer-brand .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-800));
  font-weight: 800;
  margin-right: 8px;
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--text); }
.fine {
  color: var(--muted);
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  will-change: transform;
}
.btn:focus-visible { outline: var(--focus); outline-offset: 2px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 46px; padding: 0 18px; }

.btn-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-700));
  border-color: #9a1d16;
  box-shadow: 0 10px 24px rgba(213, 43, 30, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--primary-700), var(--primary-800));
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
}

/* Utilities */
.dot { opacity: 0.6; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  width: min(560px, 92vw);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 101;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
}
.form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(213,43,30,0.2);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .header-cta { display: none; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav-list {
    position: absolute;
    top: 64px;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    width: 240px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  .nav-list.open { display: flex; }
  .header-cta { display: none; }
  .cards.three { grid-template-columns: 1fr; }
  .details-list .row { grid-template-columns: 1fr; }
}


