* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2b21;
  --accent: #2f7d4c;
  --accent-soft: #e8f3ec;
  --sand: #f6f4ef;
  --stone: #ece7dd;
  --sky: #dfe9f4;
  --warm: #faf2e5;
  --shadow: 0 18px 40px rgba(20, 30, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  border-bottom: 1px solid #e3e7e2;
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.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-color: var(--accent);
}

.hero {
  padding: 60px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  background: var(--sand);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
}

.hero-image img {
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--accent-soft);
}

.section.warm {
  background: var(--warm);
}

.section.sky {
  background: var(--sky);
}

.section.stone {
  background: var(--stone);
}

.section.textured {
  background-image: linear-gradient(
      rgba(246, 244, 239, 0.92),
      rgba(246, 244, 239, 0.92)
    ),
    url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.column {
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column h2,
.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.column p,
.section p {
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.split-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-feature .feature-copy {
  flex: 1 1 280px;
}

.split-feature .feature-image {
  flex: 1 1 280px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8d0;
  font-size: 1rem;
  background: #fff;
}

button {
  cursor: pointer;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #141b16;
  color: #f2f4f2;
}

.footer a {
  color: #f2f4f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
  width: min(90vw, 560px);
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 140px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 9;
}

.subtle {
  color: #4a5a4f;
  font-size: 0.95rem;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 50px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero p {
  max-width: 720px;
}

.callout {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
