* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2421;
  --muted: #5c6360;
  --accent: #c57c5a;
  --accent-dark: #a66549;
  --sand: #f4efe9;
  --stone: #e6e1dc;
  --pine: #2f3a35;
  --mist: #f7f5f2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.btn:hover,
.ghost-link:hover,
.sticky-cta a:hover {
  background: var(--stone);
}

.hero {
  padding: 40px 6vw 50px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split {
  display: flex;
  gap: 32px;
  padding: 50px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-tight {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 30px 6vw 70px;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel h1,
.panel h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.panel p {
  color: var(--muted);
}

.hero-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 23, 22, 0.08);
}

.hero-image,
.image-card,
.inline-image {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img,
.image-card img,
.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  min-height: 420px;
}

.image-card {
  min-height: 320px;
}

.inline-image {
  min-height: 240px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--pine);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 14px;
}

.section-tone {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-pine {
  background: var(--pine);
  color: #f7f3ee;
}

.section-pine p {
  color: #d8d2cb;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.section-bg .bg-image img {
  width: 100%;
  height: 100%;
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
}

.steps,
.service-grid,
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card,
.service-card,
.testimonial {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 23, 22, 0.08);
}

.section-pine .service-card,
.section-pine .testimonial {
  background: #3d4a43;
}

.service-card h3 {
  font-size: 18px;
}

.card-thumb {
  background: #e8e3de;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 140px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.section-pine .price {
  color: #e6c2a6;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 38px rgba(21, 23, 22, 0.1);
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7d2cd;
  border-radius: 12px;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: flex-end;
  padding: 0 6vw 24px;
}

.sticky-cta a {
  background: var(--pine);
  color: #fff6ec;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 6vw;
  right: 6vw;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(21, 23, 22, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--pine);
  color: #ffffff;
}

.cookie-actions button.reject {
  background: #6d6b68;
}

.content-center {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 6vw 70px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(21, 23, 22, 0.08);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .split-tight {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    justify-content: flex-start;
  }
}
