:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --yellow: #f4bf12;
  --yellow-bright: #ffd21a;
  --red: #d91f1f;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --gray: #b9b9b9;
  --line: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171717;
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,7,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,191,18,.22);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 250px;
  max-width: 46vw;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: .96rem;
  transition: color .2s ease;
}

.site-nav a:hover { color: var(--yellow); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  width: 26px;
  height: 2px;
  background: var(--yellow);
  display: block;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(217,31,31,.23), transparent 32%),
    linear-gradient(115deg, #050505 0%, #101010 55%, #191919 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -120px 35%;
  height: 280px;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, transparent, rgba(244,191,18,.18), rgba(217,31,31,.18));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08)),
    linear-gradient(150deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08));
  background-size: 34px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .84rem;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .98;
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 7vw, 7.3rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

h1 span { color: var(--yellow); }

.hero-copy {
  max-width: 650px;
  margin: 0 0 32px;
  color: #dedede;
  font-size: 1.13rem;
}

.hero-actions, .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #080808;
  background: var(--yellow);
}

.btn-primary:hover { background: var(--yellow-bright); }

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: transparent;
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
}

.quick-strip {
  background: var(--yellow);
  border-bottom: 5px solid var(--red);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid div {
  padding: 25px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.18);
}

.quick-grid div:last-child { border-right: 0; }

.quick-grid strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.quick-grid span {
  display: block;
  margin-top: 5px;
  font-weight: 700;
  font-size: .9rem;
}

.section { padding: 95px 0; }

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2,
.about-grid h2,
.cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

.section-heading > p:last-child {
  color: #606060;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 225px;
  padding: 26px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,191,18,.7);
  box-shadow: var(--shadow);
}

.service-icon { font-size: 2rem; }

.service-card h3 {
  margin: 18px 0 9px;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #666;
  font-size: .94rem;
}

.services-more {
  margin: 28px 0 0;
  font-weight: 700;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.94)),
    repeating-linear-gradient(45deg, #171717, #171717 10px, #101010 10px, #101010 20px);
}

.section-heading.light > p:last-child { color: #c7c7c7; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.location-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #181818, #0d0d0d);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--yellow);
}

.location-card.featured::after {
  content: "SUNDAY APPOINTMENTS";
  position: absolute;
  top: 18px;
  right: -48px;
  width: 190px;
  padding: 6px 0;
  transform: rotate(35deg);
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.location-badge {
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 13px 0 4px;
  font-size: 2.15rem;
  text-transform: uppercase;
}

.city { margin: 0 0 18px; color: #bfbfbf; }

.phone {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.hours {
  padding-top: 18px;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0;
  color: #d0d0d0;
  font-size: .92rem;
}

.hours strong { color: var(--white); text-align: right; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-copy {
  font-size: 1.08rem;
  color: #555;
}

.about-copy p:first-child { margin-top: 4px; }

.cta {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.78)),
    var(--red);
  border-top: 5px solid var(--yellow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 { margin-bottom: 10px; }

.cta p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: #d7d7d7;
}

.site-footer {
  padding: 55px 0 20px;
  color: #cfcfcf;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
  border-radius: 7px;
}

.footer-brand p { margin-top: 15px; }

.site-footer h3 {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 1.3rem;
}

.site-footer a, .site-footer p {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover { color: var(--yellow); }

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .86rem;
  color: #8d8d8d;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .brand { width: 210px; }

  .menu-button { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #090909;
    border-bottom: 1px solid rgba(244,191,18,.25);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero {
    min-height: 560px;
  }

  .hero-content { padding: 72px 0; }

  h1 { font-size: clamp(3.2rem, 17vw, 5rem); }

  .hero-actions .btn { width: 100%; }

  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.16);
  }

  .section { padding: 70px 0; }

  .service-grid { grid-template-columns: 1fr; }

  .service-card { min-height: auto; }

  .location-card { padding: 28px 22px; }
  .phone { font-size: 1.9rem; }

  .hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hours strong { text-align: left; }

  .card-actions .btn { flex: 1 1 130px; }

  .footer-grid { grid-template-columns: 1fr; }
}
