:root {
  --yellow: #f5b800;
  --yellow-dark: #d49900;
  --black: #1a1a1a;
  --charcoal: #262626;
  --gray-bg: #efeeec;
  --white: #ffffff;
  --text: #1c1c1c;
  --muted: #565656;
  --muted-light: #c9c9c7;
  --border: rgba(0, 0, 0, 0.85);
  --stripe-h: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

/* Hazard stripe divider */
.hazard-bar {
  height: var(--stripe-h);
  background: repeating-linear-gradient(
    45deg,
    var(--black) 0,
    var(--black) 18px,
    var(--yellow) 18px,
    var(--yellow) 36px
  );
}

/* Headings */
.stencil {
  font-family: "Allerta Stencil", "Oswald", Arial, sans-serif;
}

h1, h2, h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-kicker,
.hero-kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dark);
}

.section-dark .section-kicker {
  color: var(--yellow);
}

.section-title {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

/* Header */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-llc {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-left: 6px;
  letter-spacing: 0.1em;
}

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

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 150ms ease;
}

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

.nav-phone {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 9px 16px;
  border-radius: 2px;
  font-weight: 700;
}

.nav-phone:hover {
  background: var(--yellow-dark);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 2px solid var(--yellow);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--yellow);
  margin: 0 7px;
}

/* Hero */
.hero {
  background: var(--black);
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    repeating-linear-gradient(135deg, rgba(245,184,0,0.06) 0, rgba(245,184,0,0.06) 2px, transparent 2px, transparent 26px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-title {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title br {
  display: block;
}

.hero-sub {
  max-width: 38rem;
  color: var(--muted-light);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.mascot-img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  border-radius: 2px;
  padding: 15px 28px;
  border: 2px solid transparent;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 70px 0;
  background: var(--gray-bg);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark p {
  color: var(--muted-light);
}

.section-dark h3 {
  color: var(--white);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 42rem;
}

.about-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  width: 100%;
  max-width: 240px;
}

.feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-left: 6px solid var(--yellow);
  padding: 22px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

/* Trust strip */
.trust-strip {
  background: var(--black);
  border-top: 3px solid var(--yellow);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 18px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-icon {
  font-size: 1.2rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  background: var(--charcoal);
  border: 2px solid var(--yellow);
  padding: 26px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: var(--yellow);
  border-radius: 6px;
  font-size: 1.4rem;
}

.service-item h3 {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-item p {
  margin: 0;
}

.service-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted-light);
}

.service-item ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.service-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

.service-item-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--yellow);
  border-color: var(--black);
}

.service-item-cta .service-icon {
  background: var(--black);
  color: var(--yellow);
}

.service-item-cta h3 {
  color: var(--black);
}

.service-item-cta p {
  color: var(--charcoal);
  margin-bottom: 16px;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-item {
  padding: 26px;
  border-top: 4px solid var(--yellow);
  background: var(--white);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  margin: 0;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.contact-panel p {
  margin-bottom: 26px;
  max-width: 36rem;
}

.contact-owner {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  margin-top: -10px;
  margin-bottom: 22px !important;
}

.contact-owner span {
  color: var(--muted-light);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.contact-list {
  display: grid;
  gap: 12px;
  max-width: 26rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--charcoal);
  border: 2px solid var(--yellow);
  text-decoration: none;
  color: var(--white);
}

.contact-item span {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.contact-item strong {
  font-weight: 600;
}

.contact-note {
  text-align: center;
}

.contact-logo {
  width: 140px;
  margin: 0 auto 18px;
}

.slogan {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-transform: uppercase;
}

/* Tagline strip */
.tagline-strip {
  background: var(--yellow);
  padding: 16px 24px;
  text-align: center;
}

.tagline-strip p {
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.08em;
  color: var(--black);
}

.tagline-strip span {
  color: var(--charcoal);
  margin: 0 6px;
}

/* Footer */
.footer-bar {
  background: var(--black);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .feature-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 3px solid var(--yellow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }

  .site-nav.open {
    max-height: 320px;
  }

  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-phone {
    margin: 14px 24px;
    text-align: center;
  }

  .header-inner {
    position: relative;
  }

  .hero-actions {
    flex-direction: column;
  }

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