/* =========================================================
   CALIBER STRIPING
   Global Website Styles
========================================================= */

:root {
  --black: #090909;
  --charcoal: #171717;
  --asphalt: #242424;
  --medium-gray: #666666;
  --light-gray: #d9d9d9;
  --off-white: #f5f5f2;
  --white: #ffffff;
  --yellow: #ffc107;
  --yellow-dark: #dea700;

  --heading-font: "Barlow Condensed", sans-serif;
  --body-font: "Inter", sans-serif;

  --container: 1200px;
  --transition: 180ms ease;
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Top Bar */

.top-bar {
  background: var(--black);
  color: var(--light-gray);
  font-size: 0.78rem;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar p {
  margin: 0;
}

.top-bar a {
  color: var(--yellow);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--white);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  flex: 0 0 auto;
}

.site-logo {
  width: 220px;
  max-height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.nav-button):hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button {
  padding: 14px 20px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  transition:
    background var(--transition),
    color var(--transition);
}

.nav-button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--black);
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--yellow);
  transition: transform var(--transition);
}

/* Shared Components */

.section-label,
.eyebrow {
  margin-bottom: 16px;
  color: var(--yellow-dark);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.button-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: var(--white);
  color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 700;
}

.text-link span {
  color: var(--yellow-dark);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(255, 193, 7, 0.11),
      transparent 26%
    ),
    linear-gradient(130deg, #080808 0%, #151515 52%, #262626 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
}

.hero-content {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d8d8d8;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-details {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-details div {
  padding: 20px 18px 0 0;
}

.hero-details strong,
.hero-details span {
  display: block;
}

.hero-details strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-details span {
  color: #a9a9a9;
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.parking-lot {
  position: absolute;
  inset: 40px 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0)
    ),
    #202020;
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

.parking-lot::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 20% 30%, #414141 0 1px, transparent 2px),
    radial-gradient(circle at 70% 65%, #414141 0 1px, transparent 2px);
  background-size: 22px 22px, 28px 28px;
}

.parking-space {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 390px;
  background: var(--white);
  transform: rotate(26deg);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.space-one {
  left: 10%;
}

.space-two {
  left: 34%;
}

.space-three {
  left: 58%;
}

.space-four {
  left: 82%;
}

.center-line {
  position: absolute;
  top: -30px;
  left: 47%;
  width: 7px;
  height: 660px;
  background: var(--yellow);
  transform: rotate(26deg);
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.32);
}

.hero-badge {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 190px;
  padding: 22px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-badge span,
.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge span {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--heading-font);
  font-size: 3.1rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-badge small {
  margin-top: 10px;
  font-weight: 700;
}

.hero-lines {
  position: absolute;
  height: 8px;
  background: var(--yellow);
  opacity: 0.8;
}

.hero-lines-left {
  left: -120px;
  bottom: 75px;
  width: 430px;
  transform: rotate(-8deg);
}

.hero-lines-right {
  top: 120px;
  right: -120px;
  width: 380px;
  transform: rotate(-8deg);
}

/* Intro */

.intro-section {
  padding: 105px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
}

.intro-copy {
  padding-top: 42px;
}

.intro-copy p {
  margin-bottom: 26px;
  color: #555555;
  font-size: 1.05rem;
}

/* Services */

.services-preview {
  padding: 105px 0;
  background: var(--off-white);
}

.section-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.property-heading h2,
.service-area h2,
.why-content h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border-top: 5px solid transparent;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #bebebe;
  font-family: var(--heading-font);
  font-weight: 700;
}

.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
}

.parking-icon span {
  position: absolute;
  bottom: 12px;
  width: 3px;
  height: 44px;
  background: var(--yellow);
  transform: rotate(28deg);
}

.parking-icon span:nth-child(1) {
  left: 19px;
}

.parking-icon span:nth-child(2) {
  left: 33px;
}

.parking-icon span:nth-child(3) {
  left: 47px;
}

.layout-icon span {
  position: absolute;
  width: 4px;
  height: 48px;
  background: var(--yellow);
}

.layout-icon span:first-child {
  transform: rotate(45deg);
}

.layout-icon span:last-child {
  transform: rotate(-45deg);
}

.warehouse-icon span {
  width: 8px;
  height: 34px;
  margin: 2px;
  background: var(--yellow);
}

.fire-icon {
  color: var(--yellow);
  letter-spacing: 0.07em;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  text-transform: uppercase;
}

.service-card p {
  color: #626262;
}

.service-card > a:not(.button) {
  margin-top: auto;
  padding-top: 20px;
  color: var(--black);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card > a:not(.button)::after {
  content: " →";
  color: var(--yellow-dark);
}

.service-card-featured {
  justify-content: space-between;
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.service-card-featured .section-label {
  color: var(--black);
}

.service-card-featured p {
  color: #2f2f2f;
}

/* Why Caliber */

.why-caliber {
  padding: 110px 0;
  color: var(--white);
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: stretch;
}

.why-image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      transparent 0 41%,
      rgba(255, 193, 7, 0.9) 41% 42%,
      transparent 42% 48%,
      rgba(255, 255, 255, 0.84) 48% 49%,
      transparent 49%
    ),
    radial-gradient(circle at 30% 20%, #424242, transparent 30%),
    #202020;
}

.why-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, #555555 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-image-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  background: var(--yellow);
  color: var(--black);
}

.why-image-overlay span {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-content {
  padding: 25px 0;
}

.why-content h2 {
  max-width: 700px;
  margin-bottom: 26px;
}

.why-intro {
  max-width: 680px;
  margin-bottom: 45px;
  color: #bcbcbc;
}

.feature-list {
  display: grid;
  gap: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
}

.feature-check {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.feature-item h3 {
  margin-bottom: 7px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.feature-item p {
  max-width: 610px;
  margin-bottom: 0;
  color: #a9a9a9;
}

/* Property Types */

.property-types {
  padding: 105px 0;
}

.property-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.property-list {
  border-top: 1px solid #d0d0d0;
}

.property-list > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 25px 10px;
  border-bottom: 1px solid #d0d0d0;
  transition:
    background var(--transition),
    padding var(--transition);
}

.property-list > div:hover {
  padding-left: 24px;
  background: var(--off-white);
}

.property-list span {
  color: var(--yellow-dark);
  font-family: var(--heading-font);
  font-weight: 700;
}

.property-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
}

/* Service Area */

.service-area {
  padding: 105px 0;
  background: var(--off-white);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.service-area p:not(.section-label) {
  max-width: 680px;
  color: #5d5d5d;
}

.service-area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--black);
}

.service-area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    );
  background-size: 32px 32px;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 140px;
  height: 140px;
}

.ring-two {
  width: 250px;
  height: 250px;
}

.ring-three {
  width: 370px;
  height: 370px;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -65%) rotate(-45deg);
}

.map-marker span {
  width: 17px;
  height: 17px;
  background: var(--black);
  border-radius: 50%;
}

.service-area-map p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: none !important;
  margin: 0;
  padding: 18px;
  color: var(--black) !important;
  background: var(--yellow);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: var(--charcoal);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 9%;
  width: 14px;
  height: 520px;
  background: var(--yellow);
  transform: rotate(24deg);
}

.final-cta::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 14%;
  width: 5px;
  height: 520px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(24deg);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta-inner > div {
  max-width: 820px;
}

.final-cta h2 {
  max-width: 900px;
}

/* Footer */

.site-footer {
  padding-top: 75px;
  color: #c3c3c3;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 60px;
  padding-bottom: 65px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 380px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-column p {
  margin-bottom: 0;
}

.footer-bottom {
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #292929;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
}

.legal-name {
  text-align: right;
}

/* Responsive */

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 450px;
  }

  .parking-lot {
    inset: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    min-height: 480px;
  }

  .service-area-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .top-bar {
    display: none;
  }

  .header-inner {
    min-height: 125px;
  }

  .site-logo {
    width: 220px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 28px 40px;
    background: var(--black);
    transform: translateX(100%);
    transition: transform 250ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 14px 0;
    color: var(--white);
    font-size: 1.65rem;
    border-bottom: 1px solid #292929;
  }

  .main-nav > a:not(.nav-button)::after {
    display: none;
  }

  .nav-button {
    margin-top: 22px;
    padding: 16px;
    color: var(--black) !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero-content {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 13vw, 6rem);
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .hero-details div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .intro-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    align-items: flex-start;
  }

  .desktop-link {
    display: none;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .legal-name {
    text-align: left;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .parking-lot {
    transform: none;
  }

  .hero-badge {
    right: 16px;
    bottom: 16px;
    width: 160px;
    padding: 18px;
  }

  .hero-badge strong {
    font-size: 2.5rem;
  }

  .intro-section,
  .services-preview,
  .why-caliber,
  .property-types,
  .service-area {
    padding: 75px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .why-image {
    min-height: 360px;
  }

  .property-list > div {
    grid-template-columns: 48px 1fr;
  }

  .service-area-map {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-cta::before,
  .final-cta::after {
    opacity: 0.2;
  }
}
/* =========================================================
   Interior Page Styles
========================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(
      130deg,
      rgba(0, 0, 0, 0.95),
      rgba(24, 24, 24, 0.95)
    );
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -110px;
  right: 14%;
  width: 10px;
  height: 500px;
  background: var(--yellow);
  transform: rotate(25deg);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -90px;
  right: 20%;
  width: 4px;
  height: 500px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(25deg);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-inner > div {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero p:not(.section-label) {
  max-width: 720px;
  margin-bottom: 0;
  color: #c8c8c8;
  font-size: 1.08rem;
}

.services-detail {
  padding: 110px 0;
  background: var(--off-white);
}

.services-detail-grid {
  display: grid;
  gap: 22px;
}

.service-detail-card {
    position: relative;
    display: block;
    padding: 40px;
    background: #fff;
    border-left: 6px solid var(--yellow);
    margin-bottom: 24px;
}

.service-detail-number {
  color: var(--yellow-dark);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-detail-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  text-transform: uppercase;
}

.service-detail-card p {
  max-width: 850px;
  color: #5c5c5c;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 3px;
  background: var(--yellow);
}

.service-process {
  padding: 110px 0;
  color: var(--white);
  background: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 300px;
  padding: 34px;
  background: #171717;
  border-top: 5px solid var(--yellow);
}

.process-grid span {
  color: var(--yellow);
  font-family: var(--heading-font);
  font-weight: 800;
}

.process-grid h3 {
  margin: 38px 0 15px;
  font-size: 2rem;
  text-transform: uppercase;
}

.process-grid p {
  margin-bottom: 0;
  color: #aaaaaa;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .page-hero {
    padding: 80px 0;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CALIBER STRIPING & SEALCOATING
   Homepage Updates
========================================================= */

/* Use the actual light logo instead of recoloring it */
.footer-logo {
  filter: none;
}


/* Slightly larger new logo */
.site-logo {
  width: 245px;
}

.footer-logo {
  width: 245px;
}


/* Sealcoating / Crack Filling icon boxes */
.service-icon-text {
  padding: 8px;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}


/* Full-width estimate card */
.service-card-wide {
  grid-column: 1 / -1;
  min-height: auto;

  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.service-card-wide > div {
  max-width: 760px;
}

.service-card-wide .button {
  flex: 0 0 auto;
}


/* Better line spacing for longer hero labels */
.hero-details strong {
  line-height: 1.15;
}


/* Tablet */
@media (max-width: 860px) {

  .site-logo {
    width: 235px;
  }

  .service-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* Mobile */
@media (max-width: 650px) {

  .site-logo {
    width: 210px;
  }

  .footer-logo {
    width: 225px;
  }

  .service-card-wide .button {
    width: 100%;
  }

}

/* =========================================================
   SERVICE CARD GRAPHICS
========================================================= */

.service-graphic {
  overflow: hidden;
}

.service-graphic svg {
  width: 48px;
  height: 48px;
  display: block;
}

.service-graphic .icon-line {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.service-graphic .icon-line-wide {
  stroke-width: 5;
}

.service-graphic .icon-fill {
  fill: var(--yellow);
}

.service-graphic .icon-crack {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

/* =========================================================
   OHIO SERVICE AREA GRAPHIC
========================================================= */

.ohio-outline {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 255px;
  max-width: 62%;

  transform: translate(-50%, -56%);

  opacity: 0.28;

  filter:
    grayscale(1)
    brightness(0)
    invert(1);
}

.map-ring {
  z-index: 2;
}

.map-marker {
  z-index: 3;
}

.service-area-map p {
  z-index: 4;
}

.map-marker {
  top: 43%;
  left: 52%;
}

/* =========================================================
   SERVICE AREA MAP - FINAL
========================================================= */

.service-area-map {
  overflow: hidden;
}

.service-area-image {
  height: 355px;
  background: #090909;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.service-area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-area-map > p {
  position: relative;
  z-index: 2;
}

.contact-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 40px;
  padding: 24px 26px;

  background: #f6f6f6;

  border-left: 5px solid var(--yellow);
}


.contact-shortcut h3 {
  margin: 3px 0 7px;

  font-size: 1.65rem;

  text-transform: uppercase;
}


.contact-shortcut p:last-child {
  max-width: 570px;

  margin-bottom: 0;

  color: #606060;
}


.contact-shortcut .section-label {
  margin-bottom: 0;
}


.contact-shortcut .button {
  flex: 0 0 auto;

  white-space: nowrap;
}


@media (max-width: 760px) {

  .contact-shortcut {
    align-items: stretch;
    flex-direction: column;
  }


  .contact-shortcut .button {
    width: 100%;
    text-align: center;
  }

}
/* =========================================================
   FOOTER COPYRIGHT CENTERING
========================================================= */

.footer-bottom-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-centered p {
  width: 100%;
  margin: 0;
  text-align: center;
}