:root {
  --ink: #17211f;
  --muted: #5c6864;
  --line: #d8ded9;
  --paper: #fbfbf7;
  --soft: #eef3ee;
  --green: #2d4d42;
  --green-deep: #182d27;
  --orange: #f27732;
  --orange-deep: #c85518;
  --copper: var(--orange);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(17, 37, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 251, 247, 0.94);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  max-width: 48px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-phone,
.footer-links a {
  transition: color 160ms ease;
}

.nav a:hover,
.header-phone:hover,
.footer-links a:hover {
  color: var(--orange);
}

.header-phone {
  font-weight: 800;
  min-width: max-content;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.9), rgba(24, 34, 29, 0.58) 52%, rgba(24, 34, 29, 0.18)),
    linear-gradient(0deg, rgba(20, 26, 22, 0.76), rgba(20, 26, 22, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 46px;
}

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

.hero .eyebrow {
  color: #ffb173;
  font-size: clamp(15px, 1.4vw, 18px);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.footer-links,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(242, 119, 50, 0.26);
}

.button.primary:hover {
  background: var(--orange-deep);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(216, 111, 42, 0.28);
}

.trust-strip div {
  padding: 20px;
  background: rgba(25, 52, 45, 0.5);
  backdrop-filter: blur(12px);
}

.trust-strip dt {
  font-size: 20px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-lead {
  max-width: 760px;
}

.services-title,
.projects-title,
.process-title {
  max-width: none;
  font-size: clamp(28px, 3.2vw, 42px);
  white-space: nowrap;
}

.areas-title {
  max-width: none;
  font-size: 30px;
  line-height: 1.12;
  white-space: nowrap;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.06);
}

.service-card img {
  height: 210px;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.project-card p,
.areas-layout p,
.steps p,
.work-copy p,
.site-footer p,
.form-note {
  color: var(--muted);
}

.recent-projects {
  padding-top: 28px;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.06);
}

.featured-project {
  grid-column: span 2;
}

.featured-project .project-photo {
  height: 320px;
}

.project-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--soft);
}

.project-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card div:last-child {
  padding: 22px;
}

.project-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  min-height: 620px;
  background: var(--green-deep);
  color: var(--white);
}

.work-image {
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1600585152220-90363fe7e115?auto=format&fit=crop&w=1500&q=86");
  background-position: center;
  background-size: cover;
}

.work-copy {
  align-self: center;
  padding: clamp(40px, 8vw, 96px);
}

.work-copy p,
.work-copy .check-list {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  line-height: 19px;
  text-align: center;
}

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

.steps article {
  min-height: 220px;
  padding: 28px;
  border-top: 4px solid var(--orange);
  background: var(--soft);
}

.steps span {
  display: block;
  margin-bottom: 40px;
  color: var(--copper);
  font-weight: 900;
}

.service-areas {
  padding-top: 34px;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.areas-layout p {
  max-width: 620px;
  font-size: 18px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 10px 13px;
  border: 1px solid rgba(242, 119, 50, 0.32);
  border-radius: 8px;
  color: var(--green-deep);
  background: rgba(242, 119, 50, 0.08);
  font-weight: 850;
}

.booking {
  padding-top: 42px;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 58px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 119, 50, 0.18), rgba(242, 119, 50, 0) 38%),
    var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.booking-copy {
  align-self: center;
}

.booking-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-lines {
  flex-direction: column;
  align-items: flex-start;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(177, 100, 61, 0.2);
  border-color: var(--copper);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  text-transform: none;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: start;
  padding: 50px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-brand {
  width: auto;
  min-width: max-content;
  max-width: none;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 16px;
  padding: 0;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
}

.footer-logo {
  width: 48px;
  max-width: 48px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.site-footer p {
  max-width: 580px;
  margin-bottom: 0;
}

.footer-links {
  justify-content: flex-start;
  align-self: flex-start;
  padding-top: 0;
  font-weight: 800;
}

.copyright {
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav a {
    padding: 14px;
  }

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

  .header-phone {
    justify-self: end;
  }

  .menu-button {
    display: grid;
    gap: 5px;
  }

  .intro,
  .work-band,
  .areas-layout,
  .booking-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .featured-project {
    grid-column: span 2;
  }

  .work-copy {
    padding: 48px 20px 56px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand {
    min-width: max-content;
  }

  .brand-logo {
    width: 42px;
    max-width: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 18, 16, 0.86), rgba(9, 18, 16, 0.52)),
      linear-gradient(0deg, rgba(9, 18, 16, 0.76), rgba(9, 18, 16, 0));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 28px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .project-grid,
  .steps,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .featured-project {
    grid-column: auto;
  }

  .featured-project .project-photo {
    height: 250px;
  }

  .services-title,
  .projects-title,
  .areas-title,
  .process-title {
    font-size: 28px;
    white-space: normal;
  }

  .section {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .service-card img {
    height: 190px;
  }

  .booking-panel {
    padding: 22px;
  }

  .estimate-form {
    padding: 16px;
  }
}
