:root {
  --primary-hsl: 32 100% 50%;
  --primary-foreground-hsl: 0 0% 0%;
  --background-hsl: 0 0% 5%;
  --foreground-hsl: 0 0% 90%;
  --accent-hsl: 32 50% 15%;
  --accent-foreground-hsl: 32 100% 50%;
  --muted-hsl: 0 0% 12%;
  --muted-foreground-hsl: 0 0% 70%;
  --card-hsl: 0 0% 10%;
  --card-foreground-hsl: 0 0% 90%;
  --border-hsl: 0 0% 20%;
  --input-hsl: 0 0% 15%;
  --ring-hsl: 32 100% 50%;
  --radius: 0.25rem;
  --font-heading: 'Trebuchet MS', 'Arial', sans-serif;
  --font-body: system-ui, -apple-system, sans-serif;
}

body {
  background: hsl(var(--background-hsl));
  color: hsl(var(--foreground-hsl));
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-top: 0; margin-bottom: 0.75rem; }

p { margin-bottom: 1.5rem; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(var(--background-hsl) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border-hsl));
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
}
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  height: 3px;
  width: 25px;
  background: hsl(var(--foreground-hsl));
  transition: all 0.3s;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
}

.nav { display: flex; gap: 2rem; }
.nav-link {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  color: hsl(var(--muted-foreground-hsl));
}
.nav-link:hover,
.nav-link:focus { color: var(--primary); }

@media (max-width: 47.99rem) {
  .nav-toggle-label { display: flex; }
  .nav {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: hsl(var(--background-hsl));
    border-bottom: 1px solid hsl(var(--border-hsl));
    padding: 1.5rem;
    gap: 1.5rem;
    display: none;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 2.5rem 1.5rem 4rem;
  background: linear-gradient(135deg, hsl(var(--background-hsl)) 0%, hsl(var(--accent-hsl)) 100%);
}
.hero-content { max-width: 48rem; }
.hero h1 { margin-bottom: 0.5rem; }
.hero-sub {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground-hsl));
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  line-height: 1.2;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: hsl(var(--primary-hsl) / 0.9);
  outline: none;
  box-shadow: 0 0 0 3px hsl(var(--ring-hsl) / 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover,
.btn-outline:focus {
  background: hsl(var(--primary-hsl) / 0.15);
  outline: none;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}
.section-muted {
  background: hsl(var(--muted-hsl));
  border-top: 1px solid hsl(var(--border-hsl));
  border-bottom: 1px solid hsl(var(--border-hsl));
}
@media (max-width: 47.99rem) {
  .section { padding: 3rem 1.5rem; }
  .hero { min-height: 50vh; padding: 2rem 1.5rem 3rem; }
}

/* Grids */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 48rem) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Cards */
.card, .value-card {
  background: hsl(var(--card-hsl));
  border: 1px solid hsl(var(--border-hsl));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .value-card:hover { transform: translateY(-3px); }
.card-icon, .value-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--accent-hsl));
}
.card-icon .icon, .value-icon .icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 48rem) {
  .contact-grid { grid-template-columns: 2fr 1fr; }
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.contact-info .icon { color: var(--primary); flex-shrink: 0; }
.contact-cta {
  background: hsl(var(--card-hsl));
  border: 1px solid hsl(var(--border-hsl));
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.btn-contact, .btn-directions { text-align: center; }

/* Footer */
.site-footer {
  border-top: 1px solid hsl(var(--border-hsl));
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground-hsl));
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 47.99rem) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: hsl(var(--background-hsl));
    border-top: 1px solid hsl(var(--border-hsl));
    padding: 0.75rem 1rem;
    justify-content: center;
  }
  .mobile-cta-bar .btn { width: 100%; }
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus */
:focus {
  outline: 2px solid hsl(var(--ring-hsl));
  outline-offset: 2px;
}
