* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f24;
  --muted: #5a616b;
  --paper: #f7f6f3;
  --accent: #2f5d62;
  --accent-2: #b76d3f;
  --line: #d9d6cf;
  --soft: #efece6;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 28px 6vw 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.brand strong {
  font-size: 22px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 56px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section.bg-image {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c7ced3;
}

.section.bg-image .text,
.section.bg-image .split-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
}

.split .media {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
}

.img-wrap {
  width: 100%;
  background: #dfe3e8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.img-wrap.tone-1 {
  background: #d8e1e4;
}

.img-wrap.tone-2 {
  background: #e6ded1;
}

.img-wrap.tone-3 {
  background: #e2d5d0;
}

.img-wrap.tone-4 {
  background: #d3d9d6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item span {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  width: fit-content;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.inline-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(29, 31, 36, 0.12);
  z-index: 10;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 8px 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(29, 31, 36, 0.15);
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  padding: 32px 6vw 60px 6vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  nav {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
  }
}
