/* =========================================================
   01. Variables + Base Reset
   ========================================================= */

:root {
  --gold: #c88717;
  --black: #050505;
  --dark: #101010;
  --light: #ffffff;
  --gray: #d6d6d6;
  --white: #ffffff;

  --max-width: 1400px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

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

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


/* =========================================================
   02. Global Layout + Utilities
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.section {
  padding: 100px 5%;
}


/* =========================================================
   03. Hero Sections
   ========================================================= */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero_background-home.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-quote {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-quote.jpg");

  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #050505;
  position: relative;
    padding-top: 0;
  margin-top: 0;

}
@media (max-width: 768px) {
  .hero-quote {
    background-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 100%
      ),
      url("../images/hero-background-quote-mobile-crop.png");

    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
  }
}

.hero-thank-you {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-quote.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-services {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-services.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-work {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-work.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-about {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-about.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-materials {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-materials.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}

.hero-contact {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-contact.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}
.hero-promotion {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-promotion.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}

.hero-clifford {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-clifford.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
    padding-top: 0;
  margin-top: 0;
}


/* =========================================================
   04. Header + Navigation
   ========================================================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 5%;
  width: 100%;
}

.logo img {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.menu {
  display: flex;
  gap: 50px;
  list-style: none;
}

.menu a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #c88717;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .menu a::after {
    display: none;
  }

  .menu a.active {
    color: #c88717;
    font-weight: 700;
  }
}


/* =========================================================
   05. Buttons + Reusable Helpers
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  padding: 16px 34px;
  font-weight: 600;
  transition: 0.3s;

  border: none; /* Removes the default browser border */
  cursor: pointer; /* Makes the mouse turn into a hand on hover */
  font-family: inherit; /* Forces the button to use your site's font */
  text-decoration: none;
  font-size: 18px;
}

.btn-outline {
  border: 1px solid var(--gold);
  background: #000;
}

.btn-outline:hover {
  background: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

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

.white {
  color: var(--white);
}

.hero-content {
  max-width: 700px;
  padding-left: 5%;
  padding-top: 220px;
  padding-bottom: 120px;
}

.hero h1,
.hero-quote h1,
.hero-services h1,
.hero-work h1,
.hero-about h1,
.hero-materials h1,
.hero-contact h1,
.hero-clifford h1,
.hero-promotion h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h2,
.hero-quote h2,
.hero-services h2,
.hero-work h2,
.hero-about h2,
.hero-materials h2,
.hero-contact h2,
.hero-clifford h2,
.hero-promotion h2 {
  padding-top: 40px;
}

.hero h1 span,
.hero-quote h1 span,
.hero-services h1 span,
.hero-work h1 span,
.hero-about h1 span,
.hero-materials h1 span,
.hero-contact h1 span,
.hero-clifford h1 span,
.hero-promotion h1 span {
  display: block;
}

.gold {
  color: var(--gold);
}

.hero p,
.hero-quote p,
.hero-services p,
.hero-work p,
.hero-about p,
.hero-materials p,
.hero-contact p,
.hero-clifford p,
.hero-promotion p {
  font-size: 1.35rem;
  max-width: 500px;
  margin: 30px 0;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


/* =========================================================
   06. Home Page Sections
   ========================================================= */

.benefits {
  background: #0b0b0b;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.benefit i {
  padding-bottom: 18px;
}

.benefit .allcaps {
  font-family: "Oswald";
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.services {
  padding: 70px 5% 100px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
}

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

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.services h2,
.featured h2 {
  font-family: "Oswald";
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;

  margin: 20px 0;
}

.services p {
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  margin-bottom: 40px;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-title {
  position: absolute;
  bottom: 20px;
  width: 100%;

  padding: 20px;
  padding-top: 70px;
  font-family: "Oswald";
  font-size: 1.4rem;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.featured {
  background: #f5f3ef;
  color: #111;

  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;

  padding: 100px 5%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.project-grid img:hover {
  transform: scale(1.03);
}

.btn-outline-dark {
  border: 1px solid var(--gold);
  color: #111;
}


/* =========================================================
   07. Footer
   ========================================================= */

.footer-banner {
  background: url("../images/wood-bg.png");
  background-size: cover;
  min-height: 100px;
  padding: 50px 5%;
}

.banner-text-new {
  font-family: "Oswald";
  font-size: clamp(1rem, 6vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.banner-text h2 {
  font-family: "Oswald";
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.banner-text span {
  color: var(--gold);
}

.footer {
  background: #050505;
  padding: 80px 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: auto;
}

.footer-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.footer h4, .footer h3 {
  font-family: "Oswald";
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .menu {
    display: none;
  }

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

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

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

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

@media (max-width: 768px) {
  .hero-content {
    padding-top: 180px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 220px;
  }
}

.benefit-icon,
.materials-icon,
.custom-icon,
.built-icon {
  font-size: 3rem;
  color: #c88717;
}

.footer-social h4 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}

.social-icons a:hover {
  border-color: #c88717;
  color: #c88717;
  transform: translateY(-2px);
}

.social-icons i {
  font-size: 1rem;
}

.footer-social p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);

  padding: 18px 5%;

  text-align: center;
  font-size: 0.8rem;

  color: rgba(255, 255, 255, 0.45);
}

.wcb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wcb-logo {
  width: 220px;
  height: auto;
}

.worksafe-logo {
  width: 260px;
  height: auto;
}


/* =========================================================
   08. Quote Page
   ========================================================= */

.quote-page {
  background: #050505;
  color: #fff;
}

.quote-content {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 50px;
  padding: 80px 5%;
  max-width: 1400px;
  margin: auto;
}

.quote-benefits,
.quote-form-wrap {
  background: linear-gradient(145deg, #0b0b0b, #050505);
  border: 1px solid rgba(200, 135, 23, 0.35);
  padding: 40px;
}

.quote-benefits h2,
.quote-form-wrap h2,
.recent-projects h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #c88717;
  text-transform: uppercase;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.quote-benefit {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-benefit i {
  color: #c88717;
  font-size: 2rem;
  min-width: 40px;
}

.quote-benefit h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-benefit p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.quote-form label, .contact-form label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-form label {
	color: #000;
}

.quote-form label span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 15px;
    font-family: inherit;
    margin-bottom: 6px;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #c88717;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.budget-options button {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px;
  cursor: pointer;
}

.budget-options button:hover {
  border-color: #c88717;
  color: #c88717;
}

.upload-box {
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.upload-box i {
  color: #c88717;
  font-size: 2rem;
}

.recent-projects {
  padding: 40px 5% 80px;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.recent-grid a {
  overflow: hidden;
  display: block;
}

.recent-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: 0.4s;
}

.recent-grid a:hover img {
  transform: scale(1.05);
}

.quote-testimonial {
  background: url("images/wood-bg.jpg") center/cover;
  padding: 45px 5%;
  text-align: center;
  border-top: 1px solid rgba(200, 135, 23, 0.25);
  border-bottom: 1px solid rgba(200, 135, 23, 0.25);
}

.quote-testimonial blockquote {
  max-width: 900px;
  margin: auto;
  font-size: 1.4rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-testimonial p {
  margin-top: 18px;
  color: #c88717;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .quote-content {
    grid-template-columns: 1fr;
  }

  .budget-options,
  .recent-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .quote-content,
  .quote-benefits,
  .quote-form-wrap {
    padding: 40px 5%;
  }

  .form-row,
  .budget-options,
  .recent-grid {
    grid-template-columns: 1fr;
  }
}

.quote-testimonial {
  background: url("images/wood-bg.jpg") center/cover;
  padding: 55px 5%;
  text-align: center;
  border-top: 1px solid rgba(200, 135, 23, 0.25);
  border-bottom: 1px solid rgba(200, 135, 23, 0.25);
}

.testimonial-slider {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeTestimonial 0.5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
  font-style: italic;
  color: #fff;
}

.testimonial p {
  margin-top: 18px;
  color: #c88717;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: #c88717;
}

@keyframes fadeTestimonial {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.error {
    display: block;
    color: #c88717;
    font-size: 0.85rem;
    margin-top: 6px;
    margin-bottom: 14px;
}


/* =========================================================
   09. Thank You Page
   ========================================================= */

.thank-you-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 42%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.thank-you-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.thank-icon {
  color: #c88717;
  font-size: 4rem;
  margin-bottom: 24px;
}

.thank-you-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  margin-bottom: 14px;
  color: #fff;
  text-transform: uppercase;
}

.thank-you-content h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #c88717;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 28px;
}

.thank-you-content p {
  color: #f5f5f5;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 35px;
}

.next-steps {
  background: #f5f3ef;
  padding: 85px 5%;
  color: #111;
}

.next-steps .container {
  max-width: 1400px;
  margin: auto;
}

.next-steps h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #111;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -35px;
  width: 1px;
  height: 140px;
  background: rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-icon i {
  font-size: 2.2rem;
  color: #c88717;
}

.step h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 15px;
}

.step p {
  color: #555;
  line-height: 1.8;
  max-width: 300px;
  margin: auto;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .thank-you-content {
    max-width: 100%;
  }
}


/* =========================================================
   10. Services Page
   ========================================================= */

.services-overview {
  background: #050505;
  color: #fff;
  padding: 90px 5% 100px;
}

.services-intro-grid {
  max-width: 1400px;
  margin: 0 auto 55px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.services-intro-grid .eyebrow {
  color: #c88717;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.services-intro-grid h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-top: 18px;
}

.services-intro-grid h2 span {
  color: #c88717;
}

.services-intro-grid p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.services-card-grid {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-box {
  background: #111;
  overflow: hidden;
  min-height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-box img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-box:hover img {
  transform: scale(1.06);
}

.service-box-content {
  padding: 28px 24px 30px;
}

.service-box-content i {
  color: #c88717;
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.service-box-content h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-box-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.service-box-content a {
  color: #c88717;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.service-box-content a span {
  margin-left: 6px;
  transition: margin-left 0.25s ease;
}

.service-box-content a:hover span {
  margin-left: 12px;
}

@media (max-width: 1150px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 650px) {
  .services-overview {
    padding: 65px 5% 75px;
  }

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

  .service-box-content {
    padding: 24px 20px 28px;
  }
}


/* =========================================================
   11. Promotion Banner + Form Honeypot
   ========================================================= */

.promotion {
  background-color: var(--gold);

  text-align: center;
}
.promotion div {
  min-height: 60px;
  font-family: inherit;
  color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
}

.promotion p {
  font-size: 20px;
}
.promotion a {
	text-decoration: underline;
}

.promotion .highlight {
  font-weight: 700;
}

.website-field {
  display: none;
}


/* =========================================================
   12. Our Work Page
   ========================================================= */
.work-section {
  padding-top: 40px;
}
.work-se {
  background: #080908;
  padding: 40px 5% 70px;
  color: #ffffff;
}

.work-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 35px;
}

.filter-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #d79422;
  border-color: #d79422;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #d79422;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 18px 16px 20px;
  background: linear-gradient(to bottom, #141414, #0b0b0b);
}

.project-info h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.project-info p {
  margin: 0;
  color: #d79422;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA SECTION */

.work-cta {
  background: url("../images/wood-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 38px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta-icon {
  color: #d79422;
  font-size: 2.6rem;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-text p {
  margin: 0;
  color: #dddddd;
  font-size: 1rem;
}

.cta-button {
  background: linear-gradient(135deg, #d79422, #f0b545);
  color: #111;
  padding: 15px 42px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0b545, #d79422);
}

/* Responsive */

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .work-section {
    padding: 30px 20px 50px;
  }

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

  .filter-btn {
    width: 100%;
  }

  .project-card img {
    height: 230px;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

.project-card[hidden] {
  display: none;
}


/* =========================================================
   13. Project Detail Pages
   ========================================================= */

/* Project Hero */

.project-hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hubtown-background.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}

.project-hero-gazebo {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/gazebo-background.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}
.project-hero-daza {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/daza-background.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}

.project-hero-bishops {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/bishops-background.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}

.project-hero-wolfes {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../images/hero-background-wolfes.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}



.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 36%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.back-link {
  color: #c88717;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 28px;
}

.project-hero h1,
.project-hero-gazebo h1,
.project-hero-daza h1,
.project-hero-bishops h1,
.project-hero-wolfes h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #f2f2f2;
  margin-bottom: 28px;
}

.project-hero h1 span,
.project-hero-gazebo h1 span,
.project-hero-daza h1 span,
.project-hero-bishops h1 span,
.project-hero-wolfes h1 span {
  color: #c88717;
}

.project-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  text-transform: uppercase;
  font-weight: 700;
}

.project-category i {
  color: #c88717;
  font-size: 1.7rem;
}

.project-category::after {
  content: "";
  width: 55px;
  height: 1px;
  background: #c88717;
}

.project-hero p,
.project-hero-gazebo p,
.project-hero-daza p,
.project-hero-bishops p,
.project-hero-wolfes p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 35px;
}

/* PROJECT PAGE */

.project-page {
  background: #050505;
  color: #fff;
}

.project-gallery-section {
  max-width: 1400px;
  margin: auto;
  padding: 70px 5% 40px;
}

.eyebrow {
  display: block;
  color: #c88717;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 24px;
}

.project-gallery a {
  display: block;
  overflow: hidden;
}

.project-gallery a.large {
  grid-row: span 2;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-gallery a:hover img {
  transform: scale(1.05);
}

/* Project Details + CTA */

.project-details-cta {
  max-width: 1400px;
  margin: auto;
  padding: 40px 5% 90px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.project-details,
.project-cta-box {
  background: linear-gradient(145deg, #0d0d0d, #050505);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px;
}

.project-details {
  border-right: none;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 50px;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-item i {
  color: #c88717;
  font-size: 2rem;
  min-width: 32px;
}

.detail-item h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 8px;
}

.detail-item p {
  color: rgba(255, 255, 255, 0.78);
}

.project-cta-box h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.project-cta-box h2 span {
  color: #c88717;
}

.project-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 480px;
}

/* Responsive */

@media (max-width: 1000px) {
  .project-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .project-gallery a.large {
    grid-column: span 2;
    grid-row: auto;
  }

  .project-gallery a {
    aspect-ratio: 16 / 10;
  }

  .project-details-cta {
    grid-template-columns: 1fr;
  }

  .project-details {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }
}

@media (max-width: 650px) {
  .project-hero {
    min-height: auto;
    padding: 130px 5% 70px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery a.large {
    grid-column: auto;
  }

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

  .project-details,
  .project-cta-box {
    padding: 32px 24px;
  }
}


/* =========================================================
   14. Mobile Navigation Overrides
   ========================================================= */

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .nav {
    position: relative;
  }

  .quote-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .menu a {
    display: block;
    padding: 16px 20px;
  }
}
@media (max-width: 1024px) {
  .nav .btn-gold {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 30px 5%;
  }

  .menu {
    top: calc(100% - 25px);
  }
}

@media (max-width: 1300px) {
  .nav .btn-gold {
    display: none;
  }
}


/* =========================================================
   15. About Page
   ========================================================= */

.our-story {
  background: #111;
  color: #f5f3ef;
  padding: 90px 5%;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: #c88717;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 22px;
  position: relative;
}

.section-label::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 2px;
  background: #c88717;
  margin-left: 16px;
  vertical-align: middle;
}

.story-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.story-text h3 {
  font-family: "Oswald", sans-serif;
  color: #c88717;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin-bottom: 28px;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 243, 239, 0.86);
  margin-bottom: 18px;
}

.signature {
  color: #c88717;
  font-size: 2rem;
  font-style: italic;
  margin-top: 30px;
}

.founders {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.7);
  margin-top: 8px;
}

.story-image {
  border: 1px solid #c88717;
  padding: 8px;
  background: #0b0b0b;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.story-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 450px;
}

/* Mobile */
@media (max-width: 900px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .our-story {
    padding: 70px 6%;
  }

  .story-image {
    order: -1;
  }
}

.story-container {
  align-items: start;
}

.story-text {
  align-self: start;
  padding-top: 0;
  margin-top: 0;
}

.story-image {
  align-self: start;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: stretch;
}

.story-image {
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.story-image img {
  object-position: center top;
}

@media (max-width: 1024px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .story-image {
    order: -1;
  }

  .story-image img {
    width: 100%;
    height: auto;
  }
}


/* =========================================================
   16. Materials Page
   ========================================================= */

.wood-types-section {
  background: #050505;
  color: #fff;
  padding: 90px 5%;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  position: relative;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  display: inline-block;
  width: 90px;
  height: 1px;
  background: #c88717;
  vertical-align: middle;
  margin: 0 22px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 1rem;
}

.wood-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.wood-card {
  background: #111;
  border: 1px solid rgba(200, 135, 23, 0.35);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.wood-card:hover {
  transform: translateY(-6px);
  border-color: #c88717;
}

.wood-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.wood-card-content {
  padding: 24px 22px 28px;
}

.wood-card h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #c88717;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.wood-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (max-width: 1200px) {
  .wood-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .wood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: 45px;
    margin: 0 12px;
  }
}

@media (max-width: 550px) {
  .wood-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    display: none;
  }
}

.materials-section {
  background: #f5f3ef;
  padding: 40px 6%;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.material-card {
  background: #151515;
  border: 1px solid #8a4f16;
  overflow: hidden;
}

.material-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) contrast(1.08) saturate(1.1);
}

.material-content {
  display: flex;
  gap: 16px;
  padding: 18px 20px 22px;
}

.material-icon {
  color: #c88717;
  border: 1px solid #c88717;
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.material-card h3 {
  color: #c88717;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.material-card p {
  color: #d7d2c9;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-card img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .materials-section {
    padding: 30px 5%;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .material-card img {
    height: 210px;
  }

  .material-content {
    padding: 18px;
  }
}


/* =========================================================
   17. Contact Page
   ========================================================= */

.contact-section {
  background: #f5f3ef;
  padding: 90px 5%;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
}

.contact-card {
  background: #090909;
  color: #fff;
  padding: 50px;
}

.contact-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 40px;
}

.contact-card h2 span {
  color: #c88717;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border: 2px solid #c88717;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c88717;
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border: 1px solid #e5e0d8;
}

.contact-form-wrapper h3 {
  font-family: "Oswald", sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #000;
}

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

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-form-wrapper button {
  background: #c88717;
  color: #fff;
  border: none;
  padding: 18px 40px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  cursor: pointer;
}
.service-area-strip {
  background: #111;
  background-image: url(images/wood-bg.jpg);
  background-size: cover;
  padding: 35px 5%;
}

.service-area-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-left {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.area-left i {
  color: #c88717;
  font-size: 3rem;
}

.area-left span {
  color: #c88717;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.area-left h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.area-right {
  display: flex;
  gap: 40px;
  color: #fff;
}

.city i {
  color: #c88717;
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card,
  .contact-form-wrapper {
    padding: 35px 24px;
  }

  .contact-card h2 {
    font-size: 2.5rem;
  }

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

  .service-area-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .area-right {
    flex-direction: column;
    gap: 16px;
  }

  .area-left i {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 5%;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .contact-card h2,
  .area-left h2 {
    font-size: 2rem;
  }
}

.success-banner {
  background: #e8f5e9;
  color: #1f6b2c;
  border-left: 5px solid #1f6b2c;
  padding: 16px 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

.error-banner {
  background: #fdecea;
  color: #9f1c1c;
  border-left: 5px solid #9f1c1c;
  padding: 16px 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

.visually-hidden {
    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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

main {
  margin-top: 0;
}

.hero,
.hero-quote,
.hero-services,
.hero-work,
.hero-about,
.hero-materials,
.hero-contact,
.project-hero-bishops {
  margin-top: 0;
}
/* =========================================================
   Floating Promotion Badge
   ========================================================= */

.promo-badge {
  position: absolute;

  top: 42%;
  right: 10%;

  transform: translateY(-50%);

  width: 170px;
  height: 170px;

  background:
    linear-gradient(
      135deg,
      #dca03b 0%,
      #c88717 50%,
      #9f650f 100%
    );

  color: #fff;

  border-radius: 50%;
  border: 4px solid #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-decoration: none;

  box-shadow:
    0 0 0 8px rgba(255,255,255,.15),
    0 15px 35px rgba(0,0,0,.45);

  z-index: 20;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.promo-badge:hover {
  transform: translateY(-50%) scale(1.06);

  box-shadow:
    0 0 0 8px rgba(255,255,255,.2),
    0 20px 45px rgba(0,0,0,.55);
}

/* Ribbon */

.promo-ribbon {
  position: absolute;

  top: -12px;

  background: #fff;
  color: #c88717;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 5px 12px;

  border-radius: 3px;
}

/* Text */

.promo-label {
  font-size: 0.7rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.12em;

  margin-bottom: 4px;
}

.promo-amount {
  font-family: "Oswald", sans-serif;

  font-size: 3rem;
  line-height: 1;

  font-weight: 700;
}

.promo-detail {
  font-size: 0.65rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  max-width: 110px;
  margin-top: 6px;
}

.promo-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-size {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 6px 0;
}

.promo-title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.promo-detail {
  display: block;
  margin-top: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pulse Animation */

@keyframes promoPulse {
  0% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.05);
  }

  100% {
    transform: translateY(-50%) scale(1);
  }
}

.promo-badge {
  animation: promoPulse 4s ease-in-out infinite;
}

@media (max-width: 1024px) {

  .promo-badge-wrapper {
    padding-top: 110px;
  }

  .promo-badge {
    display: flex;
    position: relative;

    top: auto;
    right: auto;

    transform: none;
    animation: promoPulseMobile 4s ease-in-out infinite;

    width: 180px;
    height: 180px;

    margin: 0 auto;

    border-radius: 50%;
  }

  .promo-badge:hover {
    transform: none;
  }

  .promo-ribbon {
    display: block;

    position: absolute;
    top: -12px;
    left: 50%;

    transform: translateX(-50%);

    white-space: nowrap;
  }

  .promo-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .promo-size {
    font-size: 1.8rem;
    line-height: 1;
    margin: 4px 0;
  }

  .promo-title {
    font-size: 0.75rem;
    line-height: 1.1;
    margin-top: 2px;
  }

  .promo-detail {
    font-size: 0.5rem;
    margin-top: 6px;
    max-width: 80px;
  }
}

@keyframes promoPulseMobile {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}