:root {
  --red: #d81324;
  --red-dark: #8f0d18;
  --red-glow: #ff3b3b;
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1c1c1c;
  --steel: #8a8f98;
  --steel-light: #d6d9dd;
  --white: #f5f5f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: rgba(10,10,10,0.6);
  border-bottom: 1px solid rgba(216,19,36,0.25);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--steel);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a:hover { color: var(--red-glow); }

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 48px; width: auto; display: block; }
.brand span {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: var(--white);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul li a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--steel-light);
  transition: color .2s;
}
nav ul li a:hover { color: var(--red-glow); }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(216,19,36,0.35);
}
.nav-cta:hover { filter: brightness(1.1); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.75) 55%, var(--black) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=2000&q=80') center 30% / cover no-repeat;
  padding: 140px 20px 100px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(216,19,36,0.18), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-logo {
  width: 150px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(216,19,36,0.55));
}
.eyebrow {
  color: var(--red-glow);
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
  background: linear-gradient(180deg, #ffffff 0%, #d6d9dd 55%, #9aa0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #ff4b4b 0%, var(--red) 55%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  margin-top: 20px;
  font-size: 1.15rem;
  color: var(--steel-light);
}
.hero-badges {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--steel);
}
.hero-badges span { display: flex; align-items: center; gap: 6px; }
.hero-badges .star { color: #f5c542; }
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: transform .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #ff3b3b, var(--red) 45%, var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(216,19,36,0.45);
}
.btn-primary:hover { filter: brightness(1.12); }
.btn-outline {
  border: 2px solid var(--steel);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { border-color: var(--red-glow); color: var(--red-glow); }

/* ---------- Section shared ---------- */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.section-head h2 .accent { color: var(--red); }
.section-head p {
  margin-top: 14px;
  color: var(--steel);
  font-size: 1.02rem;
}
.divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ---------- About ---------- */
.about { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-text h2 .accent { color: var(--red); }
.about-text p { color: var(--steel-light); margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--white);
}
.about-list li .dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(216,19,36,0.7);
  flex-shrink: 0;
}
.about-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(216,19,36,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-photo img { width: 100%; display: block; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 34px 28px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,19,36,0.5);
}
.service-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(216,19,36,0.4);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-card p { color: var(--steel); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 34px 22px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(216,19,36,0.4), 0 20px 40px rgba(216,19,36,0.15);
  transform: scale(1.05);
}
.price-card.featured .badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-card h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.price-card .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.price-card .amount sup { font-size: 1.1rem; vertical-align: super; color: var(--red-glow); }
.price-card .student {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--steel);
}
.price-card .student b { color: var(--red-glow); }
.price-card .btn { margin-top: 24px; width: 100%; padding: 12px; font-size: 0.85rem; }

/* ---------- Hours & Location ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.info-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 36px;
}
.info-card h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-size: 1.15rem;
  color: var(--red-glow);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--steel-light); font-weight: 600; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-line .icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(216,19,36,0.15);
  color: var(--red-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-line div b { display: block; color: var(--steel); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-line div a, .contact-line div span { color: var(--white); font-weight: 600; }
.contact-line div a:hover { color: var(--red-glow); }

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(216,19,36,0.18), rgba(0,0,0,0.4)), var(--black);
  border-top: 1px solid rgba(216,19,36,0.3);
  border-bottom: 1px solid rgba(216,19,36,0.3);
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-banner p { color: var(--steel-light); margin-bottom: 30px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  padding: 50px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-weight: 800; letter-spacing: 1px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--steel); font-size: 0.9rem; }
.footer-links a:hover { color: var(--red-glow); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
}
.footer-social a:hover { border-color: var(--red); color: var(--red-glow); }
.footer-bottom {
  text-align: center;
  color: var(--steel);
  font-size: 0.82rem;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 700px) {
  nav ul { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; text-align: center; }
}
