/* ===== Container / Utilities ===== */
.container {
  max-width: var(--max-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.red { color: var(--color-brand-red); }
.section { padding: 5rem 0; }
section { scroll-margin-top: 80px; }
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-primary {
  background: var(--color-brand-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-brand-red-dark);
  transform: translateY(-1px);
}
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-white-red { background: #fff; color: var(--color-brand-red); font-weight: 800; }
.btn-white-red:hover { background: #f0f0f0; }
.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); }
.btn-ghost-dark {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-text-primary);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
}
.btn-ghost-dark:hover { background: #eee; }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.badge--youtube {
  background: rgba(237, 28, 36, 0.15);
  border-color: rgba(237, 28, 36, 0.4);
  color: #fff;
}
.badge--pill {
  background: var(--color-brand-red);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.05em;
  border: none;
}
.yt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 0.9rem;
  background: var(--color-accent-youtube);
  color: #fff;
  border-radius: 3px;
  font-size: 0.65rem;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}
.site-header.is-scrolled .top-bar { padding: 0.5rem 0; }
.top-bar {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding var(--dur-base) var(--ease-out);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar__promo {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar__promo strong { color: #fff; font-weight: 700; }
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-brand-red); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 28px;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform var(--dur-base), opacity var(--dur-base);
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(80vw, 320px);
  background: var(--color-bg-dark);
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out);
  z-index: 100;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: none;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a { font-size: 1.1rem; font-weight: 500; }
@media (max-width: 900px) {
  .top-bar__cta, .top-bar__promo { display: none; }
  .hamburger { display: flex; }
}

/* ===== Section Heading ===== */
.section-head { margin-bottom: 2.5rem; }
.section-head--center { text-align: center; }
.section-head h2 {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
}
.section-head__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.section-head__sub--dark { color: var(--color-text-muted); }
.section-head--light h2 { color: var(--color-text-primary); }

/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: flex-end;
}
.footer__links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer__links a:hover { color: #fff; }
.footer__links span { color: rgba(255, 255, 255, 0.3); }
.footer__meta { font-size: 0.8rem; line-height: 1.7; }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}
.footer__brand {
  margin-top: 1rem;
  color: var(--color-brand-red);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.footer__cta {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  position: relative;
}
.footer__man {
  max-height: 220px;
  align-self: flex-end;
  border-radius: 8px;
}
.footer__call { text-align: right; color: #fff; }
.footer__call-label { font-size: 1.1rem; font-weight: 700; }
.footer__call-hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0 0.5rem;
}
.footer__call-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__call-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cta { justify-content: space-between; align-items: center; }
  .footer__call { text-align: left; }
  .footer__man { max-height: 160px; }
}
