* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2a33;
  --muted: #4f646f;
  --accent: #2f7b6a;
  --accent-strong: #245f52;
  --surface: #ffffff;
  --surface-soft: #f3f6f9;
  --sand: #f5efe7;
  --mint: #e8f4ef;
  --sky: #eaf1f7;
  --shadow: 0 24px 60px rgba(24, 40, 52, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

header {
  padding: 28px 8vw 10px;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 30px 8vw 70px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-visual {
  background: var(--sky);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateX(8px);
}

.hero-visual img {
  border-radius: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47, 123, 106, 0.18);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.page-section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.section-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .media {
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-soft);
}

.offset-left {
  background: var(--sand);
}

.offset-right {
  background: var(--mint);
}

.offset-left .section-card {
  transform: translateX(-8px);
}

.offset-right .section-card {
  transform: translateX(8px);
}

.patterned {
  background: var(--surface-soft);
  background-image: url("assets/pattern.svg");
  background-repeat: repeat;
  background-size: 240px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card span {
  font-weight: 600;
  color: var(--accent-strong);
}

.service-card p {
  color: var(--muted);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-link {
  color: var(--accent-strong);
  border-bottom: 1px solid var(--accent-strong);
  padding-bottom: 2px;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-shell label {
  font-weight: 600;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d3dce3;
  font-size: 1rem;
}

.form-shell button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.form-shell button:hover {
  background: var(--accent-strong);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: var(--accent-strong);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 50px 8vw 70px;
  background: #121b21;
  color: #dce6ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #dce6ee;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #101a22;
  color: #f2f6fa;
  padding: 18px;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid #f2f6fa;
  background: transparent;
  color: #f2f6fa;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #f2f6fa;
  color: #101a22;
  border-color: #f2f6fa;
}

.simple-hero {
  padding: 30px 8vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sky);
}

.simple-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.content-wrap {
  padding: 40px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content-wrap ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 860px) {
  .nav-shell {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .list-row {
    flex-direction: row;
  }

  .image-stack {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }

  .legal-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .legal-grid > div {
    flex: 1 1 260px;
  }
}
