/* =========================================
   BUCKEYE REPAIR & RENOVATIONS
   ========================================= */

:root {
  --red: #c81010;
  --dark-red: #930909;
  --black: #151515;
  --charcoal: #232323;
  --light-gray: #f4f4f4;
  --mid-gray: #696969;
  --white: #ffffff;

  --caliber-yellow: #f7bd16;
  --caliber-black: #0c0c0c;

  --max-width: 1320px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}


img {
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255,255,255,.97);

  border-bottom: 1px solid #e3e3e3;
}


.header-inner {
  min-height: 105px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.site-logo {
  width: 340px;
  max-height: 78px;
  object-fit: contain;
  display: block;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}


.main-nav a {
  transition: .2s;
}


.main-nav a:hover {
  color: var(--red);
}


.nav-cta {
  background: var(--red);
  color: white !important;

  padding: 13px 18px;

  border-radius: 3px;
}


.nav-cta:hover {
  background: var(--dark-red);
}


.mobile-menu-button {
  display: none;

  border: 0;
  background: none;

  font-size: 1.8rem;
  cursor: pointer;
}


/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(8,8,8,.30) 0%,
      rgba(8,8,8,.18) 48%,
      rgba(8,8,8,.05) 100%
    ),
    url("images/buckeye-hero.png") center / cover no-repeat;

  color: white;
}


.hero::after {
  content: "";

  position: absolute;
  right: -80px;
  top: -70px;

  width: 550px;
  height: 800px;

  background:
    linear-gradient(
      110deg,
      transparent 45%,
      rgba(200,16,16,.9) 46%,
      rgba(200,16,16,.9) 52%,
      transparent 53%
    );

  opacity: .75;
}


.hero-content {
  position: relative;
  z-index: 2;

  padding: 90px 0 90px 30px;

  max-width: 750px;

  margin-left: 0;
  margin-right: auto;
}

.eyebrow,
.section-label {
  font-size: .78rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .18em;

  color: var(--red);

  margin-bottom: 16px;
}


.hero .eyebrow {
  color: #ef6b6b;
}


.hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.8rem);

  line-height: .88;

  letter-spacing: -.05em;

  text-transform: uppercase;

  margin-bottom: 30px;
}


.hero h1 span {
  color: #ef3030;
}


.hero-text {
  max-width: 680px;

  color: #d7d7d7;

  font-size: 1.15rem;

  margin-bottom: 36px;
}


.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border-radius: 3px;

  font-size: .84rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .06em;

  transition: .2s;
}


.btn-primary {
  background: var(--red);
  color: white;
}


.btn-primary:hover {
  background: #e01a1a;
  transform: translateY(-2px);
}


.btn-secondary {
  border: 1px solid #777;
  color: white;
}


.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,.08);
}


.btn-light {
  background: white;
  color: var(--red);

  white-space: nowrap;
}


.btn-light:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}


/* =========================================
   CALIBER FEATURE
   ========================================= */

.striping-feature {
  background: var(--caliber-black);
  color: white;

  padding: 100px 0;

  position: relative;

  overflow: hidden;
}


.striping-feature::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border: 75px solid rgba(247,189,22,.05);

  border-radius: 50%;

  right: -200px;
  top: -150px;
}


.striping-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;

  gap: 75px;

  align-items: center;

  position: relative;
  z-index: 2;
}


.section-label.yellow {
  color: var(--caliber-yellow);
}


.striping-content h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);

  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 16px;
}


.striping-content h3 {
  font-size: 1.4rem;

  margin-bottom: 24px;

  color: #e7e7e7;
}


.striping-content h3 span {
  color: var(--caliber-yellow);
}


.striping-content p {
  color: #c8c8c8;

  margin-bottom: 18px;
}


.striping-services {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin: 30px 0;
}


.striping-services span {
  border: 1px solid #484848;

  padding: 8px 12px;

  font-size: .75rem;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .05em;
}


.btn-caliber {
  background: var(--caliber-yellow);

  color: #111;
}


.btn-caliber:hover {
  background: #ffd04a;

  transform: translateY(-2px);
}


/* CALIBER GRAPHIC */

.caliber-card {
  position: relative;

  min-height: 430px;

  padding: 60px 45px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  border: 1px solid #343434;

  background:
    linear-gradient(
      160deg,
      #171717,
      #050505
    );

  overflow: hidden;
}


.caliber-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 45px,
      rgba(255,255,255,.015) 46px
    );
}


.road-lines span {
  position: absolute;

  width: 20px;
  height: 550px;

  background: var(--caliber-yellow);

  top: -130px;

  transform: rotate(35deg);

  opacity: .9;
}


.road-lines span:first-child {
  right: 100px;
}


.road-lines span:last-child {
  right: 150px;
}


.caliber-small {
  position: relative;

  color: #777 !important;

  font-size: .68rem;

  letter-spacing: .18em;

  font-weight: 700;
}


.caliber-card h3 {
  position: relative;

  font-size: 3.2rem;

  line-height: .85;

  font-style: italic;

  margin-bottom: 20px;
}


.caliber-card h3 strong {
  display: block;

  color: var(--caliber-yellow);

  font-size: 2rem;

  letter-spacing: .12em;
}


.caliber-card > p {
  position: relative;
}


.caliber-card a {
  position: relative;

  margin-top: 20px;

  font-weight: 700;

  color: var(--caliber-yellow);
}

.caliber-feature-panel {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 45px;

  border: 1px solid #333;

   background: #000;

  text-align: center;

  position: relative;
  overflow: hidden;
}


.caliber-feature-panel::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 500px;

  right: -35px;
  top: -70px;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      rgba(247,189,22,.9) 23px 38px
    );

  transform: rotate(32deg);

  opacity: .22;
}


.caliber-feature-logo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}


.caliber-feature-panel p {
  max-width: 380px;

  color: #bbb;

  margin-bottom: 18px;

  position: relative;
  z-index: 2;
}


.caliber-site-link {
  color: var(--caliber-yellow);

  font-weight: 800;

  position: relative;
  z-index: 2;
}


.caliber-site-link:hover {
  color: white;
}


/* =========================================
   SERVICES
   ========================================= */

.services-section {
  padding: 110px 0;

  background: #fafafa;
}


.section-heading {
  max-width: 680px;

  margin-bottom: 55px;
}


.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);

  line-height: 1;

  margin-bottom: 20px;
}


.section-heading p:last-child {
  color: #666;

  font-size: 1.05rem;
}


.services-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;
}


.service-card {
  position: relative;

  background: white;

  border: 1px solid #e2e2e2;

  padding: 42px;

  min-height: 290px;

  overflow: hidden;

  transition: .25s;
}


.service-card:hover {
  border-color: #bebebe;

  transform: translateY(-4px);

  box-shadow:
    0 15px 40px
    rgba(0,0,0,.06);
}


.service-number {
  font-size: .75rem;

  font-weight: 800;

  color: var(--red);

  margin-bottom: 34px;

  letter-spacing: .12em;
}


.service-card h3 {
  font-size: 1.6rem;

  margin-bottom: 16px;
}


.service-card p {
  color: #656565;
}


/* =========================================
   ABOUT
   ========================================= */

.about-section {
  padding: 100px 0;
}


.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;
}


.about-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);

  line-height: 1;

  text-transform: uppercase;
}


.about-copy {
  font-size: 1.06rem;

  color: #555;
}


.about-copy p {
  margin-bottom: 20px;
}


/* =========================================
   ESTIMATE
   ========================================= */

.estimate-section {
  background:
    linear-gradient(
      135deg,
      var(--red),
      #970707
    );

  color: white;

  padding: 75px 0;
}


.estimate-inner {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 50px;
}


.section-label.light {
  color: rgba(255,255,255,.7);
}


.estimate-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);

  margin-bottom: 12px;
}


.estimate-inner p {
  max-width: 700px;

  color: rgba(255,255,255,.85);
}

/* =========================================
   ESTIMATE PAGE
   ========================================= */

.estimate-page-hero {
  background:
    linear-gradient(
      135deg,
      #121212,
      #252525
    );

  color: white;

  padding: 95px 0;
}


.estimate-page-hero-inner {
  max-width: 760px;
}


.estimate-page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: .95;

  text-transform: uppercase;

  margin-bottom: 25px;
}


.estimate-page-hero p:last-child {
  max-width: 650px;

  color: #ccc;

  font-size: 1.1rem;
}



.estimate-form-page {
  background: #f7f7f7;

  padding: 100px 0;
}


.estimate-page-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(300px, .65fr);

  gap: 70px;

  align-items: start;
}


.estimate-form-wrap {
  background: white;

  border: 1px solid #e1e1e1;

  padding: 50px;
}


.estimate-form {
  margin-top: 35px;
}


.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}


.form-group {
  margin-bottom: 22px;
}


.form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: .88rem;

  font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid #cfcfcf;

  border-radius: 2px;

  background: white;

  color: #222;

  font: inherit;

  transition: border-color .2s;
}


.form-group textarea {
  resize: vertical;

  min-height: 160px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--red);
}


.checkbox-group label {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  font-weight: 400;

  color: #555;
}


.checkbox-group input {
  width: auto;

  margin-top: 5px;
}



.estimate-side-panel {
  background: #151515;

  color: white;

  padding: 45px;

  position: sticky;

  top: 125px;
}


.estimate-side-panel h3 {
  font-size: 1.8rem;

  margin-bottom: 30px;
}


.estimate-service-list {
  display: grid;

  gap: 0;
}


.estimate-service-list > div {
  padding: 18px 0;

  border-bottom: 1px solid #333;
}


.estimate-service-list strong {
  display: block;

  margin-bottom: 4px;
}


.estimate-service-list span {
  color: #aaa;

  font-size: .88rem;
}


.estimate-side-note {
  margin-top: 35px;

  padding-top: 30px;

  border-top: 2px solid var(--caliber-yellow);
}


.estimate-side-note strong {
  color: var(--caliber-yellow);
}


.estimate-side-note p {
  color: #aaa;

  margin: 10px 0 15px;
}


.estimate-side-note a {
  color: var(--caliber-yellow);

  font-weight: 700;
}



@media (max-width: 900px) {

  .estimate-page-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .estimate-side-panel {
    position: static;
  }

}


@media (max-width: 650px) {

  .estimate-form-wrap {
    padding: 30px 22px;
  }


  .form-grid {
    grid-template-columns: 1fr;
  }


  .estimate-page-hero {
    padding: 70px 0;
  }

}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: #111;

  color: #aaa;

  padding-top: 70px;
}


.footer-grid {
  display: grid;

  grid-template-columns: 1.2fr .8fr 1fr;

  gap: 70px;

  padding-bottom: 60px;
}


.footer-logo {
  width: 290px;

  background: white;

  padding: 8px;
}


.site-footer h4 {
  color: white;

  font-size: .85rem;

  text-transform: uppercase;

  letter-spacing: .12em;

  margin-bottom: 18px;
}


.site-footer a {
  display: block;

  margin-bottom: 9px;

  color: #bbb;
}


.site-footer a:hover {
  color: white;
}


.site-footer p {
  margin-bottom: 16px;
}


.footer-bottom {
  border-top: 1px solid #292929;

  padding: 22px 0;

  font-size: .78rem;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

  .header-inner {
    min-height: 76px;
  }


  .site-logo {
    width: 220px;
  }


  .mobile-menu-button {
    display: block;
  }


  .main-nav {
    display: none;

    position: absolute;

    top: 76px;
    left: 0;
    right: 0;

    background: white;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 12px 5%;
    border-top: 1px solid #eee;

    box-shadow:
      0 10px 25px
      rgba(0,0,0,.07);
  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    padding: 15px 8px;

    border-bottom: 1px solid #eee;
  }


  .nav-cta {
    margin-top: 8px;

    text-align: center;
  }


  .hero {
    min-height: 570px;
  }


  .hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-content {
    padding: 70px 0;
  }

  .striping-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }


  .striping-grid {
    gap: 45px;
  }


  .services-grid {
    grid-template-columns: 1fr;
  }


  .estimate-inner {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (max-width: 600px) {

  .site-logo {
    width: 185px;
  }


  .hero-content {
    padding: 70px 0;
  }


  .hero-text {
    font-size: 1rem;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .hero-buttons .btn {
    width: 100%;
  }


  .striping-feature,
  .services-section,
  .about-section {
    padding: 75px 0;
  }


  .caliber-card {
    min-height: 350px;

    padding: 40px 25px;
  }


  .caliber-card h3 {
    font-size: 2.5rem;
  }


  .service-card {
    padding: 30px;
  }

}