:root {
  --ink: #203229;
  --forest: #385343;
  --deep: #13221b;
  --sage: #9aaa86;
  --mist: #edf0e8;
  --paper: #fbfaf6;
  --gold: #b9914b;
  --clay: #a86f53;
  --line: rgba(32, 50, 41, 0.16);
  --shadow: 0 20px 60px rgba(24, 36, 31, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  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: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: 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, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(30, 46, 38, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.93rem;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 34, 27, 0.82) 0%, rgba(19, 34, 27, 0.52) 42%, rgba(19, 34, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(19, 34, 27, 0.74) 0%, rgba(19, 34, 27, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8c986;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button:hover,
.text-link:hover {
  filter: brightness(1.04);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 500;
}

.trust-strip span {
  margin-top: 6px;
  color: rgba(32, 50, 41, 0.72);
}

.section-grid,
.services,
.pricing,
.coverage,
.contact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(70px, 12vw, 130px) 0;
}

.flow p {
  margin: 0;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.flow p + p {
  margin-top: 20px;
}

.image-band {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--deep);
}

.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 34, 27, 0.75), rgba(19, 34, 27, 0.08) 62%);
}

.band-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(52px, 8vw, 86px);
  text-align: center;
}

.band-panel .eyebrow {
  color: #e8c986;
}

.band-panel p:last-child {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.12rem;
}

.services {
  padding: clamp(70px, 12vw, 132px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 42px;
}

.section-head p:last-child {
  margin: 0;
  color: rgba(32, 50, 41, 0.74);
}

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

.service-card {
  min-height: 252px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.service-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: rgba(32, 50, 41, 0.74);
}

.standards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--mist);
}

.standards-copy {
  padding: clamp(48px, 8vw, 90px) clamp(24px, 6vw, 72px);
}

.standards-copy p {
  max-width: 620px;
}

.standards-photo {
  min-height: 580px;
}

.standards-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  padding: clamp(68px, 10vw, 118px) 0;
}

.quote-box {
  padding-left: clamp(24px, 5vw, 58px);
  border-left: 1px solid var(--line);
}

.quote-box p {
  margin: 0 0 18px;
  font-size: 1.12rem;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-color: rgba(56, 83, 67, 0.32);
  text-underline-offset: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 10px;
  width: min(1440px, calc(100% - 20px));
  margin: 0 auto;
}

.gallery figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

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

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 4px;
  color: white;
  background: rgba(19, 34, 27, 0.72);
  font-size: 0.9rem;
}

.coverage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(68px, 10vw, 116px) 0;
  border-bottom: 1px solid var(--line);
}

.coverage p:last-child {
  align-self: end;
  margin: 0;
  color: rgba(32, 50, 41, 0.76);
  font-size: 1.12rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(68px, 10vw, 116px) 0;
}

.contact-copy p {
  max-width: 520px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 1.16rem;
  font-weight: 800;
}

.contact-lines a {
  color: var(--forest);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(32, 50, 41, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(32, 50, 41, 0.22);
  border-radius: 4px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 145, 75, 0.24);
  border-color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--deep);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  white-space: nowrap;
}

.site-footer img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 4px;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .trust-strip,
  .intro,
  .section-head,
  .standards,
  .pricing,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

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

  .standards-photo {
    min-height: 420px;
  }

  .quote-box {
    padding-left: 0;
    border-left: 0;
  }

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

  .gallery figure {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

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

  .brand span {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

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

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .trust-strip div {
    border-right: 0;
  }

  .image-band {
    min-height: 530px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }
}
