/* Base */
:root {
  --ink: #1a1f1c;
  --muted: #5f6a64;
  --accent: #1f7a6d;
  --accent-light: #d4f0ea;
  --sun: #f6d88b;
  --mist: #f4f7f5;
  --stone: #e7ece9;
  --deep: #0e3c33;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(14, 60, 51, 0.12);
  --radius: 28px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 22px;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.hero {
  position: relative;
  padding: 36px 0 10px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: var(--accent-light);
  border-radius: 50%;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta.alt {
  background: var(--deep);
}

.cta.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.hero-image {
  position: relative;
  transform: translateX(6%);
}

.hero-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  bottom: 12%;
  left: -10%;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 220px;
  font-size: 14px;
}

.section {
  position: relative;
}

.section.offset {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 36px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin: 0 0 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: var(--paper);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--stone);
  padding: 18px;
  border-radius: 20px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 18px;
}

.price {
  font-weight: 700;
  color: var(--deep);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: 26px;
  background: var(--sun);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dfda;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--mist);
  padding: 24px;
  border-radius: 24px;
}

.footer {
  background: var(--deep);
  color: var(--paper);
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--paper);
}

.cookie-actions .reject {
  background: #dfe7e3;
  color: var(--ink);
}

.page-hero {
  background: var(--mist);
  padding: 40px 0 24px;
  border-radius: var(--radius);
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-flow {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-card {
    flex: 1.05;
  }

  .hero-image {
    flex: 0.95;
  }

  .two-column {
    flex-direction: row;
    gap: 32px;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .form-grid > div {
    flex: 1 1 220px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
