* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1c1b;
  --muted: #5c6b63;
  --accent: #1f6f5c;
  --accent-dark: #154c3f;
  --sun: #f4f1ea;
  --soft: #e6ede7;
  --line: #d9e1db;
  --shadow: 0 18px 45px rgba(16, 24, 20, 0.15);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 18px;
  position: relative;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 90px;
  align-items: flex-start;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 30% 30%;
  background: var(--soft);
  z-index: 0;
  border-radius: 0 0 0 180px;
}

.hero-content {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 520px;
}

.hero-visual {
  flex: 1 1 300px;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  width: 190px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.button.outline {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sun);
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 280px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  top: -20px;
}

.layered {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.layered .layer {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 140px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.service-card img {
  border-radius: 16px;
  margin-bottom: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: #121816;
  color: #e9efe9;
}

.footer a {
  color: #cfe3da;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 25;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.page-hero {
  padding: 50px 6vw 40px;
  background: var(--soft);
  position: relative;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 200px;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
