:root {
  --green: #00a851;
  --orange: #ff8218;
  --ink: #17211d;
  --muted: #5d6863;
  --line: #dde5df;
  --paper: #f6f8f5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(246, 248, 245, 0.92);
  border-bottom: 1px solid rgba(221, 229, 223, 0.9);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: clamp(130px, 18vw, 210px);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: 650px;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 64px) 56px;
  background:
    linear-gradient(120deg, rgba(0, 168, 81, 0.12), transparent 38%),
    linear-gradient(300deg, rgba(255, 130, 24, 0.14), transparent 36%),
    var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
}

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

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

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.intro > p,
.service-card p,
.steps p,
.contact span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid var(--green);
  border-radius: 6px;
  font-weight: 900;
}

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

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

.hero-panel {
  display: grid;
  align-self: center;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--orange) 0 50%, var(--green) 50%),
    var(--white);
  background-size: 100% 12px, auto;
  background-repeat: no-repeat;
  box-shadow: 0 28px 70px rgba(23, 33, 29, 0.1);
}

.hero-panel div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-top: 1px solid var(--line);
}

.hero-panel div:first-child {
  border-top: 0;
}

.hero-panel strong {
  color: var(--orange);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
}

.hero-panel span {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 4vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro > p {
  margin: 0;
}

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

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
}

.section-heading.compact {
  max-width: 720px;
}

.offer {
  background: var(--paper);
}

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

.service-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card h3 {
  padding-top: 18px;
  border-top: 6px solid var(--green);
}

.service-card:nth-child(2) h3 {
  border-color: var(--orange);
}

.service-card p {
  margin: 22px 0;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "/";
}

.process {
  background: #16231d;
  color: var(--white);
}

.process .eyebrow {
  color: var(--orange);
}

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

.steps article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

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

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  background: var(--white);
}

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

.photo-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 22px;
  border: 1px dashed rgba(0, 168, 81, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 168, 81, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(255, 130, 24, 0.14), transparent 46%),
    #f4f6f2;
}

.photo-placeholder span {
  color: var(--green);
  font-weight: 900;
}

.photo-placeholder strong {
  margin-top: 8px;
  font-size: 1.25rem;
}

.gallery-photo {
  display: block;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(66px, 8vw, 110px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(90deg, var(--green) 0 50%, var(--orange) 50%),
    var(--ink);
  background-size: 100% 12px, auto;
  background-repeat: no-repeat;
  color: var(--white);
}

.contact .eyebrow {
  color: var(--orange);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  display: grid;
  gap: 4px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-actions strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.site-footer {
  padding: 18px clamp(20px, 4vw, 64px);
  background: #101915;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--orange);
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .service-card,
  .steps article,
  .photo-placeholder {
    min-height: auto;
  }
}
