:root {
  --copper: #a85a2a;
  --black: #070707;
  --charcoal: #111111;
  --soft-black: #181818;
  --white: #ffffff;
  --off-white: #f7f4ef;
  --light-gray: #e8e4de;
  --muted: #9c9c9c;
  --max-width: 1180px;
  --header-height: 92px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px 56px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  color: var(--copper);
  border: 1px solid rgba(168, 90, 42, 0.7);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand img {
  width: 220px;
  height: auto;
}

.footer-logo img {
  width: 190px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--copper);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.hero-home {
  background-image: url("../images/hero-home.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.58) 38%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
}

.page-hero {
  min-height: 520px;
}

.page-hero-content {
  min-height: 520px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-text,
.page-hero-content p:last-child {
  max-width: 560px;
  font-size: 24px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--copper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #8f4820;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--copper);
  color: var(--copper);
}

.section-light,
.section-dark {
  padding: 80px 0;
}

.section-light {
  background: var(--off-white);
}

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

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

.section-heading.compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.section-heading.compact h2 {
  margin: 0;
  color: var(--copper);
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading.compact span {
  width: 90px;
  height: 1px;
  background: var(--copper);
}

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

.six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.service-card.minimal {
  padding: 28px 36px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.14);
}

.service-card.minimal:last-child {
  border-right: 0;
}

.icon-line {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 42px;
  line-height: 1;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.split-heading h2 {
  margin: 0;
  color: var(--copper);
  font-size: 28px;
  text-transform: uppercase;
}

.split-heading a {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--soft-black);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.project-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.project-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-card span {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.value-grid div {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--white);
}

.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px min(7vw, 100px);
}

.check-list {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.testimonial-grid article {
  padding: 32px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.final-cta {
  padding: 86px 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("../images/custom-home-front.jpg") center / cover;
}

.content-grid.two,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portal-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d3cec6;
  background: #fff;
  font: inherit;
}

.site-footer {
  color: var(--white);
  background: #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 64px 0 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 22px;
  color: var(--muted);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: var(--copper);
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--muted);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 16px 24px;
  }

  .brand img {
    width: 180px;
  }

  .site-nav {
    gap: 16px;
    font-size: 11px;
  }

  .six {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(0, 0, 0, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .three,
  .content-grid.two,
  .contact-grid,
  .image-split,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .service-card.minimal {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  :root {
    --header-height: 78px;
  }

  .brand-mark {
    min-width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .brand img {
    width: 142px;
  }

  .hero,
  .hero-content {
    min-height: 660px;
  }

  .hero-text,
  .page-hero-content p:last-child {
    font-size: 18px;
  }

  .section-light,
  .section-dark {
    padding: 58px 0;
  }

  .six,
  .two-column {
    grid-template-columns: 1fr;
  }
}
/* ===========================



   PROJECT GALLERY CARDS



=========================== */



.project-card {



    background: #ffffff;



    border-radius: 16px;



    overflow: hidden;



    margin-bottom: 80px;



    box-shadow: 0 15px 40px rgba(0,0,0,0.08);



    transition: all 0.3s ease;



}



.project-card:hover {



    transform: translateY(-5px);



    box-shadow: 0 25px 50px rgba(0,0,0,0.12);



}



.project-card a {



    display: block;



    text-decoration: none;



    color: inherit;



}



.project-card img {



    width: 100%;



    height: 550px;



    object-fit: cover;



    display: block;



}



.project-card h2 {



    margin: 30px 30px 15px 30px;



    color: #111111;



}



.project-card p {



    margin: 0 30px 30px 30px;



    color: #666666;



    line-height: 1.8;



    max-width: 800px;



}



@media (max-width: 768px) {



    .project-card img {



        height: 300px;



    }



    .project-card h2 {



        margin: 20px;



    }



    .project-card p {



        margin: 0 20px 20px 20px;



