* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f26;
  --muted: #5b6675;
  --accent: #1c6b5a;
  --accent-dark: #13463b;
  --soft: #f3f6f4;
  --warm: #f8f3ee;
  --line: #d9e0e3;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.6px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-background {
  color: #101418;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
}

.section-background .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.section-border {
  border-top: 1px solid var(--line);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card span {
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  padding: 40px 0 60px;
  background: #11171f;
  color: #dfe6ea;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer p {
  color: #c3ced6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  border-radius: 24px;
}

.overlay-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.side-image {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  width: min(320px, 90%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 30;
}

.cookie-banner p {
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.layout-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.contact-details strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
