* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1c1a;
  --muted: #5e564f;
  --sand: #f4efe9;
  --clay: #d9cdbf;
  --sage: #c7d1c3;
  --terracotta: #c97a5d;
  --night: #151312;
  --cream: #fffaf4;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: underline;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.hero {
  padding: 40px 6vw 70px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  min-width: 280px;
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  background: var(--sage);
  opacity: 0.8;
  border-radius: 28px;
  z-index: -1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 50px 6vw;
  position: relative;
}

.section.light {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.section.sage {
  background: var(--sage);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.offset-block {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-block .copy {
  flex: 1 1 320px;
}

.offset-block .visual {
  flex: 1 1 320px;
  margin-top: -30px;
}

.offset-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.floating-card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(24, 20, 18, 0.15);
  max-width: 380px;
  position: relative;
  left: 10%;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 18px;
  background: white;
  border-radius: 18px;
  padding: 16px;
  align-items: center;
}

.service-card img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.service-card h3 {
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.service-actions {
  margin-left: auto;
}

.service-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.testimonial-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 220px;
  background: white;
  padding: 18px;
  border-radius: 16px;
}

.form-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 320px;
  background: white;
  padding: 22px;
  border-radius: 18px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #bfb5ab;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.business-model {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: var(--night);
  color: white;
  border-radius: 22px;
  flex: 1 1 280px;
}

.business-model p {
  color: #e8e0d8;
}

.inline-cta {
  color: var(--terracotta);
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--night);
  color: #f2e9df;
}

.footer a {
  color: #f2e9df;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  margin-top: 22px;
  font-size: 0.9rem;
  color: #cfc6bd;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--terracotta);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--ink);
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  max-width: 420px;
}

.page-hero {
  padding: 32px 6vw 40px;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.page-body {
  padding: 0 6vw 50px;
}

.page-body p {
  margin-bottom: 16px;
  color: var(--muted);
}

.address-block {
  background: white;
  padding: 22px;
  border-radius: 16px;
  max-width: 420px;
}

.image-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}

.image-strip img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.bg-frame {
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    flex-direction: column;
  }

  .offset-block,
  .offset-block.reverse {
    flex-direction: column;
  }

  .floating-card {
    left: 0;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-actions {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }
}
