* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1a18;
  --muted: #5c5a55;
  --accent: #2f6f65;
  --accent-dark: #224e47;
  --warm: #f6efe8;
  --mist: #eef2f1;
  --sand: #f3e2d4;
  --shadow: 0 24px 40px rgba(23, 22, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 12px 6vw 80px;
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 32px;
  background: var(--warm);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-top: 0;
}

.hero-media {
  flex: 1;
  background: var(--mist);
  padding: 20px;
  margin-left: -40px;
  border-radius: 12px;
  align-self: center;
}

.hero-media img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section p {
  max-width: 680px;
}

.layered {
  background: var(--mist);
}

.layered::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 20%;
  width: 120px;
  height: 120px;
  background: var(--sand);
  border-radius: 50%;
  opacity: 0.6;
}

.offset-left {
  display: flex;
  gap: 40px;
  align-items: center;
}

.offset-left .image-stack {
  flex: 1;
  margin-left: -32px;
}

.offset-left .text-block {
  flex: 1;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.offset-right {
  display: flex;
  gap: 36px;
  align-items: center;
}

.offset-right .text-block {
  flex: 1;
  padding: 32px;
  background: var(--warm);
}

.offset-right .image-stack {
  flex: 1;
  margin-right: -36px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section-cta {
  margin-top: 20px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 12px 0;
  font-style: italic;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d9d3cb;
  font-family: inherit;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.footer {
  padding: 50px 6vw 70px;
  background: #1d1b18;
  color: #f3f1ed;
}

.footer a {
  color: #f3f1ed;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1f2321;
  color: #f8f4ee;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.background-image {
  background-image: url("https://images.unsplash.com/photo-1466921583968-f07aa80c526e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.background-image .overlay {
  background: rgba(24, 30, 29, 0.68);
  padding: 40px;
  border-radius: 16px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .hero-inner,
  .offset-left,
  .offset-right {
    flex-direction: column;
  }

  .hero-media,
  .offset-left .image-stack,
  .offset-right .image-stack {
    margin: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
