* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2330;
  --muted: #5a6475;
  --accent: #1d6d6f;
  --accent-soft: #e3f1f0;
  --warm: #f5efe8;
  --sun: #f6d07b;
  --night: #0f172a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #f8f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 48px;
}

.hero .hero-panel {
  background: var(--warm);
  padding: 28px;
  border-radius: 24px;
  position: relative;
}

.hero .hero-panel::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--sun);
  z-index: 0;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero p {
  color: var(--muted);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.hero .hero-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.hero .hero-image {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  margin-left: 6vw;
  margin-right: 2vw;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: white;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
  margin-left: 6vw;
}

.offset-card.dark {
  background: var(--night);
  color: white;
  margin-left: 0;
  margin-right: 6vw;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fffdfb;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #ece4d8;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.insight-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sun);
  border-radius: 24px;
  padding: 24px;
  margin-top: -40px;
}

.testimonial {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border-left: 6px solid var(--accent);
}

.form-wrap {
  background: white;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9d3c6;
  font-family: inherit;
}

.form textarea {
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--night);
  color: white;
  font-size: 0.9rem;
}

.footer {
  padding: 32px 6vw 40px;
  background: #0f172a;
  color: #d9e0ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.15);
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.cookie-actions .reject {
  background: #f1f1f1;
  color: var(--ink);
}

.page-intro {
  padding: 24px 6vw 32px;
  background: var(--warm);
  border-radius: 0 0 30px 30px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.policy {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-panel {
    flex: 1.1;
  }

  .hero .hero-image {
    flex: 1;
    margin-left: 0;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stack {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .flow-steps {
    flex-direction: row;
  }

  .flow-step {
    flex: 1 1 0;
  }

  .two-col {
    flex-direction: row;
  }

  .contact-block {
    flex: 1;
  }
}
