* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b19;
  --soil: #2f2a24;
  --mist: #f6f2ee;
  --leaf: #4e7b5a;
  --clay: #c7734f;
  --sun: #f2c55c;
  --shadow: rgba(29, 27, 25, 0.1);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 18px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--soil);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 32px 8vw 56px;
  gap: 24px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--leaf);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--soil);
  color: var(--soil);
}

.btn-accent {
  background: var(--clay);
  color: #fff;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: 32px;
  box-shadow: 0 26px 50px rgba(29, 27, 25, 0.18);
}

.hero-tag {
  position: absolute;
  bottom: 20px;
  left: -12px;
  background: var(--sun);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(29, 27, 25, 0.18);
}

.band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soil);
  color: #fff;
  padding: 22px 8vw;
}

.band strong {
  font-size: 1.1rem;
}

.section {
  padding: 50px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card {
  background: var(--mist);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #e4ddd7;
  box-shadow: 0 15px 30px var(--shadow);
}

.callout {
  background: var(--sun);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.service-price {
  font-weight: 700;
  color: var(--leaf);
}

.inline-cta {
  color: var(--clay);
  font-weight: 600;
}

.testimonial {
  background: var(--soil);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 30px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cec6;
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #14120f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--clay);
}

.page-title {
  padding: 40px 8vw 20px;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-list li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 22px var(--shadow);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .grid-cards {
    flex-direction: row;
  }

  .grid-cards .card {
    flex: 1;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 859px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
