* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c636a;
  --soft: #f5f2ee;
  --accent: #d9812d;
  --deep: #23303b;
  --paper: #ffffff;
  --sage: #e1e8e2;
  --sand: #f2e6d8;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 18px;
  background: var(--paper);
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 64px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.muted {
  color: var(--muted);
}

.hero {
  background: var(--soft);
}

.highlight {
  background: var(--sage);
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1501876725168-00c445821c9e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6d1c9;
  background-blend-mode: multiply;
}

.deep {
  background: var(--deep);
  color: #f8f6f2;
}

.deep .muted {
  color: #d4d7db;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fffaf4;
}

.button.light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--deep);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--paper);
  border: 1px solid #e7e1d9;
  border-radius: 16px;
  padding: 18px;
  align-items: center;
}

.service-card .service-image {
  flex: 0 0 160px;
  max-width: 160px;
}

.service-card .service-info {
  flex: 1 1 260px;
}

.price-tag {
  font-weight: 700;
  color: var(--deep);
}

.form-wrap {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eadfd2;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c0b6;
  font: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: #f7f4f0;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--deep);
  color: #f8f6f2;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  color: #f8f6f2;
  border: 1px solid #f8f6f2;
  padding: 6px 14px;
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1px solid #e6ded4;
  border-radius: 16px;
  padding: 18px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  width: calc(100% - 40px);
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.15rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px solid #e7e1d9;
  border-radius: 16px;
  padding: 18px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wide-media {
  background: var(--sand);
  padding: 0;
}

.wide-media img {
  height: 100%;
}

@media (max-width: 760px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card .service-image {
    max-width: 100%;
    width: 100%;
  }
}
