* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f21;
  --muted: #4c5258;
  --soft: #f4f4f2;
  --accent: #2f5d62;
  --accent-2: #f2b705;
  --panel: #ffffff;
  --stroke: #d8d8d6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 520px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 88px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 0;
}

.panel {
  background: var(--panel);
  padding: 32px;
  border: 1px solid var(--stroke);
}

.panel.dark {
  background: #1f2a2d;
  color: #f5f5f3;
  border-color: #1f2a2d;
}

.panel.dark a {
  color: #f2b705;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--stroke);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: #ffffff;
  background-color: #2b3437;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 2.6rem;
}

.hero p {
  margin: 0;
  max-width: 520px;
}

.image-frame {
  background: #dfe3e6;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  padding: 18px;
}

.service-card .thumb {
  width: 140px;
  height: 110px;
  background: #e8ecef;
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #1f2a2d;
}

.button.light {
  background: var(--accent-2);
  color: #1d1f21;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--stroke);
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 48px 6vw 64px;
  background: #ffffff;
  border-top: 1px solid var(--stroke);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bg-flow-one {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.bg-flow-two {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-flow-three {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.bg-flow-one,
.bg-flow-two,
.bg-flow-three {
  background-size: cover;
  background-position: center;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 24px 6vw 0;
  }
}
