:root {
  --ink: #202124;
  --muted: #656a70;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dedbd2;
  --amber: #e3a01b;
  --amber-dark: #9b5c00;
  --green: #1f6f55;
  --green-soft: #e6f0eb;
  --red: #a83b32;
  --shadow: 0 12px 30px rgba(35, 31, 25, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(35, 31, 25, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f0b12a;
  color: #191815;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  color: #3f4246;
  font-size: 0.94rem;
  text-decoration: none;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  background: var(--green-soft);
  color: var(--green);
}

.header-phone {
  padding: 9px 12px;
  border-radius: 6px;
  background: #191915;
  color: white;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero,
.page-hero,
.contact-hero {
  padding: clamp(42px, 7vw, 82px) clamp(16px, 5vw, 64px);
}

.page-hero {
  padding-top: clamp(34px, 5vw, 60px);
  padding-bottom: clamp(12px, 2vw, 20px);
}

.page-hero + .section {
  padding-top: clamp(10px, 1.5vw, 20px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  min-height: auto;
  background: #f1efe8;
  border-bottom: 1px solid var(--line);
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
}

.page-hero h1,
.contact-hero h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.55rem);
}

.lead,
.page-hero p,
.contact-hero p {
  max-width: 720px;
  color: #3e4144;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid #d4d0c3;
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 45px rgba(35, 31, 25, 0.16);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-panel ul,
.side-panel ul {
  margin: 0;
  padding: 18px 22px 22px;
  background: white;
}

.hero-panel li,
.side-panel li {
  margin: 7px 0;
}

.section {
  padding: clamp(34px, 6vw, 72px) clamp(16px, 5vw, 64px);
}

.section + .section {
  border-top: 1px solid rgba(222, 219, 210, 0.72);
}

.intro,
.split,
.service-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 5vw, 58px);
}

.intro h2,
.section-heading h2,
.split h2,
.cta-band h2,
.side-panel h2,
.prose h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading a,
.text-link {
  color: var(--green);
  font-weight: 800;
}

.card-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.testimonial,
.job-item,
.side-panel,
.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(35, 31, 25, 0.06);
}

.service-card {
  padding: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(35, 31, 25, 0.1);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card p,
.testimonial blockquote,
.job-item dd,
.prose p,
.intro p,
.split p,
.cta-band p,
.site-footer p {
  color: var(--muted);
}

.service-card span {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.job-list {
  display: grid;
  gap: 14px;
}

.job-item {
  padding: 18px;
}

.job-item h3 {
  margin: 0 0 12px;
}

.job-item dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.job-item div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}

.job-item dt {
  font-weight: 800;
}

.job-item dd {
  margin: 0;
}

.testimonial {
  padding: 22px;
}

.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 1.03rem;
}

.testimonial figcaption {
  font-weight: 800;
}

.testimonial span {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.prose {
  max-width: 780px;
}

.side-panel {
  padding: 22px;
  align-self: start;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dedbd2;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 24px clamp(16px, 5vw, 64px) 58px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: #20211d;
  color: white;
}

.cta-band p {
  max-width: 650px;
  color: #dedbd2;
}

.big-phone {
  display: inline-block;
  margin: 18px 0 8px;
  color: var(--green);
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(16px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #f1efe8;
}

.footer-actions a {
  font-weight: 800;
  color: var(--green);
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 11px 12px;
    background: #f8f7f2;
  }

  .header-phone {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .hero,
  .intro,
  .split,
  .service-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .card-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 14px;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .hero,
  .page-hero,
  .contact-hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    width: 100%;
  }

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

  .job-item div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
