* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --soft: #f6f2ee;
  --accent: #2f7a5a;
  --accent-dark: #215641;
  --warm: #f1e2d4;
  --cool: #e5eef0;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 8px 0 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero {
  padding: 40px 6vw 60px;
  background: var(--cool);
  position: relative;
  overflow: hidden;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 960px;
}

.hero h2 {
  font-size: 42px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}

.hero .hero-image {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  max-width: 760px;
}

.offset-block.right {
  margin-left: auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .media {
  border-radius: 16px;
  overflow: hidden;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h4 {
  margin: 0;
}

.card small {
  color: var(--muted);
}

.inline-highlight {
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.service-row strong {
  font-size: 18px;
}

.service-row span {
  color: var(--muted);
}

.form-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  font-size: 15px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--soft);
  padding: 10px 14px;
  border-radius: 12px;
}

.service-option input {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip img {
  border-radius: 14px;
}

.quote {
  font-size: 18px;
  font-style: italic;
}

footer {
  padding: 36px 6vw 50px;
  background: #111;
  color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f7f7f7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: 34px;
  margin: 0 0 16px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: var(--cool);
  padding: 18px;
  border-radius: 12px;
}

@media (min-width: 860px) {
  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-inner > div {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 45%;
  }

  .columns {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }
}
