* {
  box-sizing: border-box;
}

:root {
  --ink: #1f252b;
  --muted: #5c6770;
  --accent: #2f6b4f;
  --accent-2: #b36a3c;
  --bg: #f5f1ec;
  --panel: #ffffff;
  --sand: #efe5db;
  --stone: #e2e6e9;
  --shadow: 0 18px 40px rgba(31, 37, 43, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: var(--panel);
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e4e0da;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  padding: 48px 6vw 24px;
}

.hero-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: var(--panel);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.bg-kitchen {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6cdc2;
}

.bg-reno {
  background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d8d1c7;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d0c4;
}

.mag-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.mag-column {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card img {
  width: 100%;
  height: 180px;
}

.split-banner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split-banner .copy {
  flex: 1 1 280px;
}

.split-banner .image {
  flex: 1 1 280px;
  min-height: 240px;
  background: #d8d2c8;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: var(--panel);
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-item strong {
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1rem;
}

.button.secondary {
  background: var(--accent-2);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-2);
}

.testimonial {
  background: var(--panel);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-frame {
  background-color: #e6ded5;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: 260px;
}

.form-panel {
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-half {
  flex: 1 1 180px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd6db;
  border-radius: 6px;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #1f252b;
  color: #f2efe9;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f2efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  padding: 8px 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
