:root {
  --cream: #f7f2e8;
  --warm-white: #fffdf7;
  --forest: #304536;
  --sage: #77886e;
  --gold: #d0a512;
  --gold-dark: #ad8500;
  --ink: #1f2c23;
  --muted: #697466;
  --line: rgba(48, 69, 54, 0.16);
  --shadow: 0 20px 50px rgba(31, 44, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.content-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--warm-white);
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.03);
  z-index: -2;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(29, 44, 33, 0.94) 0%, rgba(48, 69, 54, 0.78) 42%, rgba(48, 69, 54, 0.22) 100%),
    linear-gradient(180deg, rgba(31, 44, 35, 0.5), rgba(31, 44, 35, 0.12));
  z-index: -1;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

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

.brand img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 253, 247, 0.72);
  border-radius: 8px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a,
.header-call,
.button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover,
.header-call:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-call {
  border: 1px solid rgba(255, 253, 247, 0.54);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--warm-white);
  font-weight: 800;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 46px 0 86px;
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.25rem, 6vw, 5.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.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;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
}

.button--primary {
  background: var(--gold);
  color: #243123;
}

.button--primary:hover {
  background: #e1b820;
}

.button--secondary {
  border: 1px solid rgba(255, 253, 247, 0.62);
  color: var(--warm-white);
}

.button--secondary:hover {
  background: rgba(255, 253, 247, 0.12);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 253, 247, 0.1);
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.intro-band {
  background: var(--forest);
  color: var(--warm-white);
}

.intro-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 27px 0;
}

.intro-band p {
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.intro-band strong {
  color: var(--warm-white);
}

.intro-band a {
  color: var(--gold);
  font-weight: 900;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 38px;
}

.section h2 {
  color: var(--forest);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.section-heading p:not(.eyebrow),
.mission__copy p:not(.eyebrow),
.area p,
.estimate p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-grid,
.value-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.value-card,
.gallery-card,
.estimate__panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.service-card__number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card h3,
.value-card h3,
.estimate__panel h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.3rem;
}

.service-card p,
.value-card p,
.estimate__panel p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.mission {
  background:
    radial-gradient(circle at 12% 12%, rgba(208, 165, 18, 0.18), transparent 28%),
    var(--warm-white);
}

.mission__grid,
.area__grid,
.estimate__grid {
  display: grid;
  align-items: center;
  gap: 44px;
}

.mission__grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.mission__copy {
  max-width: 440px;
}

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

.value-card {
  min-height: 230px;
  padding: 24px;
}

.value-card::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.area {
  background: var(--cream);
}

.area__grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.area img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.results {
  background: var(--warm-white);
}

.gallery-grid {
  grid-template-columns: 1.2fr 1.2fr 0.86fr;
  align-items: stretch;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
}

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

.gallery-card:nth-child(3) img {
  object-position: center top;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: var(--forest);
  font-weight: 900;
}

.estimate {
  background: var(--forest);
}

.estimate__grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
}

.estimate__quote h2,
.estimate__quote p {
  color: var(--warm-white);
}

.quote-mark {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.8;
}

.estimate__panel {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  overflow: hidden;
}

.estimate__panel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.estimate__panel div {
  padding: 28px;
}

.estimate__panel .button {
  margin-top: 22px;
}

.footer {
  background: #f2eadb;
  padding: 38px 0;
}

.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer img {
  width: 112px;
  border-radius: 8px;
}

.footer p {
  margin: 12px 0 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--forest);
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .service-grid,
  .mission__grid,
  .value-grid,
  .area__grid,
  .gallery-grid,
  .estimate__grid {
    grid-template-columns: 1fr;
  }

  .mission__copy {
    max-width: none;
  }

  .area img {
    max-width: 430px;
  }

  .gallery-card img {
    height: auto;
  }
}

@media (max-width: 680px) {
  .content-shell,
  .site-header {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 720px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(29, 44, 33, 0.96) 0%, rgba(48, 69, 54, 0.82) 56%, rgba(48, 69, 54, 0.5) 100%),
      linear-gradient(90deg, rgba(31, 44, 35, 0.72), rgba(31, 44, 35, 0.24));
  }

  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero__content {
    min-height: 575px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__actions,
  .button,
  .intro-band__grid,
  .footer__grid,
  .footer__contact {
    width: 100%;
  }

  .button,
  .intro-band__grid,
  .footer__grid,
  .footer__contact {
    justify-content: center;
  }

  .intro-band__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

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

  .estimate__panel img {
    height: 240px;
  }
}
