* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #2f6f6a;
  --accent-2: #e6f2ef;
  --sand: #f6f1ea;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--ink);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px 6vw;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 120px 6vw;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 12px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 360px;
  background: #d9e7e4;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-visual .hero-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel h2,
.panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.panel p {
  color: var(--muted);
}

.image-card {
  flex: 1 1 320px;
  background: #efeae2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.overlay-card {
  background: var(--accent-2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  border-radius: 16px;
  height: 180px;
  width: 100%;
  background: #e2e2e2;
}

.service-card button {
  align-self: flex-start;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--accent-2);
  padding: 28px;
  border-radius: 22px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd6d2;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.aside-sticky {
  flex: 1 1 240px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 24px;
  background: #f1f7f5;
  border-radius: 22px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.cta-bar {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-bar button {
  box-shadow: var(--shadow);
}

footer {
  padding: 60px 6vw 40px 6vw;
  background: #111414;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-block {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-block a {
  color: #f1f1f1;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c7c7c7;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.ghost-button {
  background: transparent;
  border: 1px solid #b5b5b5;
  color: #2b2b2b;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.section-band {
  background: #f8f2eb;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat-card {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-card p {
  color: var(--muted);
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-inline-img {
  border-radius: 20px;
  background: #dde7e4;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-inline-img img {
  min-height: 240px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
  }

  .cta-bar {
    position: static;
  }
}
