
:root {
  --red: #9f281f;
  --red-dark: #761c16;
  --ink: #1d211f;
  --muted: #5d625e;
  --cream: #f5f1e9;
  --sand: #e9dfcf;
  --white: #ffffff;
  --line: #d7cbbb;
  --shadow: 0 18px 42px rgba(22, 25, 23, .14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
section { scroll-margin-top: 94px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}
.eyebrow {
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 .7rem;
  font-family: Georgia, "Times New Roman", serif;
}
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); max-width: 860px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 760px; }
.section { padding: 88px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(30,34,31,.1);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link {
  width: 320px;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.logo-link img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: center 72%;
  border-radius: 0;
  transform: translateY(6px);
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
}
.main-nav a:hover { color: var(--red); }
.header-phone {
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--red-dark); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover { background: var(--white); color: var(--ink); }
.btn-light { background: var(--white); color: var(--red-dark); }
.btn-light:hover { background: var(--cream); }
.btn-small { min-height: 42px; padding: .55rem .95rem; font-size: .9rem; }

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: #101412;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16,20,18,.84) 0%, rgba(16,20,18,.55) 48%, rgba(16,20,18,.18) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(10,12,11,.38));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 86px;
}
.hero .eyebrow { color: #ffd6d2; }
.hero p {
  max-width: 710px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 32px;
  font-weight: 700;
}
.hero-contact a { color: var(--white); }

.trust-strip {
  background: var(--red);
  color: var(--white);
}
.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  font-weight: 800;
}
.trust-grid div + div { border-left: 1px solid rgba(255,255,255,.35); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.intro-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, var(--cream));
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: .8rem 0 .8rem 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-weight: 700;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 280px;
  box-shadow: 0 10px 24px rgba(30,34,31,.06);
}
.service-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}
.service-card p { color: var(--muted); }

.project-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.project-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}
.project-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.025); }
.project-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: .6rem .9rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.project-description {
  margin-top: 24px;
  padding: 28px;
  border-left: 5px solid var(--red);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.owner-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255,255,255,.06);
}
.owner {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.owner:last-child { border-bottom: 0; }
.owner strong { display: block; font-size: 1.2rem; }
.owner a { color: var(--white); }

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start;
}
.area-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.area-panel strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.quote-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-item {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.contact-item small { display: block; opacity: .72; text-transform: uppercase; letter-spacing: .08em; }
.contact-item a { color: var(--white); font-weight: 800; text-decoration-thickness: 1px; }

.quote-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #b8b4ad;
  border-radius: 10px;
  padding: .85rem .9rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(159,40,31,.18);
  border-color: var(--red);
}
textarea { min-height: 150px; resize: vertical; }
.form-note {
  font-size: .83rem;
  color: var(--muted);
  margin-top: 12px;
}
.hidden { display: none !important; }

.site-footer {
  padding: 38px 0;
  background: #101311;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.9); }

.mobile-call {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--cream);
}
.thank-you-card {
  max-width: 720px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header-phone, .header-cta { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid, .about-grid, .area-grid, .quote-wrap { grid-template-columns: 1fr; }
  .hero { min-height: 660px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 74px; }
  .section { padding: 66px 0; }
  .container { width: min(calc(100% - 26px), var(--max)); }
  .logo-link { width: 250px; }
  .logo-link img {
    height: 66px;
    object-fit: contain;
    object-position: center 72%;
    transform: translateY(5px);
  }
  .header-inner { min-height: 80px; }
  .main-nav { top: 80px; }
  .hero { min-height: 640px; background-position: 58% center; }
  .hero-content { padding: 84px 0 62px; }
  .hero-actions .btn { width: 100%; }
  .hero-contact { display: grid; gap: 8px; }
  .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-grid div { padding: 10px 0; }
  .trust-grid div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .services-grid, .project-grid, .form-grid { grid-template-columns: 1fr; }
  .project-card, .project-card img { min-height: 330px; }
  .project-heading { display: block; }
  .quote-form { padding: 22px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call { display: flex; }
}


.about-subheading {
  margin-top: 1.65rem;
  margin-bottom: .55rem;
  color: var(--white);
  font-size: 1.5rem;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.service-area-card,
.service-area-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(30,34,31,.055);
}

.service-area-card h3,
.service-area-cta h3 {
  margin-bottom: .65rem;
}

.service-area-card p,
.service-area-cta p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-area-cta {
  grid-column: span 2;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.service-area-cta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 1.2rem;
}

@media (max-width: 980px) {
  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-area-cta {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .service-area-cta {
    grid-column: auto;
  }
}


.secondary-project {
  margin-top: 54px;
}

.secondary-project-heading {
  margin-bottom: 24px;
}

.secondary-project h3 {
  margin-bottom: 0;
}
