:root {
  --orange: #f58220;
  --orange-dark: #b95310;
  --black: #050505;
  --charcoal: #191919;
  --silver: #c6c8ca;
  --silver-soft: #eef0f2;
  --white: #ffffff;
  --muted: #696d73;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(198, 200, 202, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  width: min(360px, 58vw);
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

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

.site-nav a {
  padding: 12px 16px;
  color: var(--charcoal);
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
  border-bottom-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--black);
  border: 0;
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 104px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96) 0%, rgba(25, 25, 25, 0.92) 48%, rgba(245, 130, 32, 0.22) 100%),
    radial-gradient(circle at top right, rgba(198, 200, 202, 0.3), transparent 36%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 12px;
  background: repeating-linear-gradient(135deg, var(--orange) 0 34px, transparent 34px 52px);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  line-height: 1;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e6e7e8;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--black);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: var(--silver);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.mascot-wrap {
  width: min(360px, 78vw);
  padding: 0;
}

.mascot-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.hero-card {
  width: min(420px, 100%);
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 7px solid var(--orange);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-card span,
.contact-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 2rem;
}

.hero-card p {
  margin: 10px 0 0;
  color: #e9eaeb;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--silver);
  background: var(--silver-soft);
}

.trust-strip div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--silver);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.55rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 42px;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-top: 8px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  color: var(--orange);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.service-card p,
.split-content p {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.split-image {
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(198, 200, 202, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  border-radius: 4px;
}

.split-content p {
  color: #d8dadd;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  clip-path: polygon(14% 44%, 0 61%, 42% 100%, 100% 16%, 82% 0, 38% 63%);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    repeating-linear-gradient(135deg, var(--silver-soft) 0 16px, #ffffff 16px 32px);
}

.contact-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(198, 200, 202, 0.35);
  border: 1px solid rgba(198, 200, 202, 0.35);
}

.contact-grid a,
.contact-grid div {
  min-height: 118px;
  padding: 24px;
  background: #111111;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  background: #1f1f1f;
}

.contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 86px);
  background: var(--white);
  border-top: 5px solid var(--orange);
}

.site-footer img {
  width: 280px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
  }

  .brand img {
    max-height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--silver);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--silver);
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}
