:root {
  --bg: #f6f6f4;
  --surface: #ffffff;
  --surface-2: #f1efe9;
  --text: #171717;
  --muted: #5d5d5d;
  --line: #dfd8cb;
  --brand: #7d1417;
  --brand-dark: #5f0e11;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --nav-height: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
  scroll-margin-top: 128px;
}
.section-alt { background: #fbfaf7; }
.section-accent {
  background: linear-gradient(180deg, #fff 0%, #f6efef 100%);
}
.topbar {
  background: rgba(246, 246, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}
.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-scroll {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 11px 16px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 600;
  transition: 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(125, 20, 23, 0.1);
  color: var(--brand);
}
.progress-track {
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
}
.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #b85154);
}
.hero {
  padding-top: 72px;
}
.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero h1,
.section-heading h2,
.split-grid h2,
.contact-card h2 {
  margin: 0 0 18px;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.6rem); }
.section-heading h2,
.split-grid h2,
.contact-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hero p,
.section-heading p,
.split-grid p,
.info-card p,
.panel,
.contact-card p { color: var(--muted); }
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  border: 1px solid var(--brand);
  transition: 0.25s ease;
}
.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}
.button-outline {
  background: transparent;
  color: var(--brand);
}
.button-outline:hover {
  color: white;
}
.hero-points,
.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}
.hero-card,
.panel,
.contact-card,
.info-card,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card-inner {
  padding: 28px;
}
.hero-logo {
  width: min(320px, 100%);
  margin: 0 auto 24px;
}
.stat-grid,
.card-grid,
.download-grid {
  display: grid;
  gap: 18px;
}
.stat-grid {
  grid-template-columns: repeat(2, 1fr);
}
.stat-card {
  padding: 18px;
}
.stat-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.stat-card span { color: var(--muted); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-heading.left {
  max-width: 720px;
  text-align: left;
  margin-left: 0;
}
.three-up { grid-template-columns: repeat(3, 1fr); }
.two-up { grid-template-columns: repeat(2, 1fr); }
.info-card {
  padding: 24px;
}
.info-card h3,
.panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.highlight {
  border-color: rgba(125, 20, 23, 0.18);
}
.panel {
  padding: 28px;
}
.contact-block p { margin: 0 0 18px; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.map-button { margin-top: 22px; }
.contact-section {
  padding-top: 40px;
}
.contact-card {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer {
  padding: 24px 0 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-card,
  .three-up,
  .two-up,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 52px; height: 52px; }
  .brand-tag { display: none; }
  .button { width: 100%; }
  .hero-actions .button,
  .contact-actions .button { width: 100%; }
}
