:root {
  --red: #c0161c;
  --red-dark: #8b0e12;
  --red-deep: #5a0508;
  --cream: #f5efe0;
  --tan: #d4b896;
  --off-white: #faf7f2;
  --charcoal: #1a1212;
  --gray-mid: #6b5555;
  --gold: #d4922a;
  --gold-light: #f0b84a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo .op-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-logo span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.15;
}
.nav-logo span small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--tan);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tan);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 3px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: #fff;
  background: var(--red-dark);
}

.nav-cta {
  background: var(--red);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--red-dark);
}

/* ─── HERO ─── */
.hero {
  margin-top: 64px;
  position: relative;
  background: var(--red-deep);
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.92) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 18, 18, 0.35) 0%,
    transparent 55%,
    rgba(26, 18, 18, 0.55) 100%
  );
  pointer-events: none;
}

.hero-strip {
  background: var(--red);
  padding: 0.9rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-strip-tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  font-style: italic;
}
.hero-strip-contact {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.hero-strip-contact span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  text-align: right;
  text-transform: uppercase;
}

/* ─── SECTION BASICS ─── */
section {
  padding: 5rem 3rem;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.02em;
}
h2 em {
  font-style: italic;
  color: var(--red);
}

/* ─── INTRO ─── */
.intro {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--tan);
  margin-top: 1.5rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: var(--red-deep);
  border: 1px solid rgba(192, 22, 28, 0.35);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
}
.stat-box .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-box .label {
  font-size: 0.85rem;
  color: var(--tan);
  margin-top: 0.3rem;
  line-height: 1.35;
}

/* ─── SERVICES ─── */
.services {
  background: #100a0a;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--red-deep);
  border: 1px solid rgba(192, 22, 28, 0.3);
  border-top: 4px solid var(--red);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(192, 22, 28, 0.25);
}
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--tan);
}

/* ─── LOCATIONS ─── */
.locations {
  background: var(--charcoal);
}

.locations-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.location-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--tan);
  padding: 0.6rem 0.8rem;
  background: rgba(192, 22, 28, 0.08);
  border-radius: 3px;
  border: 1px solid rgba(192, 22, 28, 0.2);
}
.location-list li::before {
  content: "●";
  color: var(--red);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.hours-card {
  background: var(--red);
  padding: 2rem 2rem 2.5rem;
  border-radius: 6px;
  margin-top: 2rem;
}
.hours-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.75rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hours-row strong {
  color: #fff;
}

.credit-info {
  margin-top: 1.5rem;
  background: var(--red-deep);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
}
.credit-info h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.credit-info p {
  font-size: 0.85rem;
  color: var(--tan);
  line-height: 1.6;
}

/* ─── PARTNERS ─── */
.partners {
  background: #100a0a;
  text-align: center;
}

.partners h2 {
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.partner-badge {
  background: var(--red-deep);
  border: 1px solid rgba(192, 22, 28, 0.3);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.partner-badge:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.partner-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--red);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-strip-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  font-style: italic;
  line-height: 1.1;
  flex: 1;
}
.about-strip-text span {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.cert-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cert-badge {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--charcoal);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-details {
  margin-top: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(192, 22, 28, 0.2);
}
.contact-row .icon {
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-row .info-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
}
.contact-row .info-val {
  font-size: 1rem;
  color: var(--cream);
  margin-top: 0.1rem;
}
.contact-row a {
  color: var(--cream);
  text-decoration: none;
}
.contact-row a:hover {
  color: var(--gold-light);
}

.contact-form {
  background: var(--red-deep);
  border: 1px solid rgba(192, 22, 28, 0.35);
  padding: 2.25rem 2rem;
  border-radius: 6px;
  margin-top: 1.5rem;
}
.contact-form h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(192, 22, 28, 0.35);
  border-radius: 3px;
  color: var(--cream);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--red);
}
textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: #0a0505;
  border-top: 3px solid var(--red);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.footer-brand small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.12em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--tan);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-align: right;
}

/* ─── DIVIDER ─── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem 0 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
  }
  .nav-cta {
    display: none;
  }
  section {
    padding: 3.5rem 1.5rem;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .locations-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  nav ul li {
    font-size: 12px !important;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .location-list {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-strip {
    padding: 1rem 1.25rem;
  }
  .about-strip {
    padding: 2rem 1.5rem;
  }
  footer {
    flex-direction: column;
  }
}
