* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0b1c1b;
  --slate: #2a4a46;
  --muted: #5a706c;
  --mist: #e6f0ec;
  --moss: #3c7266;
  --sun: #f4d06f;
  --clay: #f4efe8;
  --pulse: #ef8354;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(14, 28, 27, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw;
  background: var(--white);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: var(--sun);
}

.header-cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-muted {
  background: var(--mist);
}

.section-clay {
  background: var(--clay);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.asym-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offset-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.offset-up {
  margin-top: -2rem;
}

.offset-right {
  margin-left: auto;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 1.5rem 1.5rem auto auto;
  width: 120px;
  height: 120px;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 28px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.offset-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  background: var(--moss);
  color: var(--white);
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--moss);
  color: var(--moss);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-sun {
  background: var(--sun);
  color: var(--ink);
}

.inline-cta {
  color: var(--moss);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.7rem;
  display: block;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 16px;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--moss);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tool-panel {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid #ccd7d4;
  font-family: inherit;
}

.service-form textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--sun);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer {
  padding: 3rem 6vw;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  display: none;
  align-items: center;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.meta-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-image {
  border-radius: 20px;
  overflow: hidden;
}

.page-hero {
  padding: 3.5rem 6vw 2.5rem;
}

.page-hero .title {
  max-width: 720px;
}

.legal {
  padding: 3rem 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.thanks-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .asym-split {
    flex-direction: row;
    align-items: center;
  }

  .asym-split.reverse {
    flex-direction: row-reverse;
  }

  .stat-grid {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 45%;
  }

  .gallery-row {
    flex-direction: row;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap .service-form {
    flex: 1;
  }

  .form-wrap .sticky-cta {
    width: 260px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .meta-grid {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-block {
    flex: 1;
  }
}
