* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2421;
  --muted: #5a625d;
  --accent: #6c4f3d;
  --accent-soft: #efe7e1;
  --surface: #f8f6f2;
  --line: #d8d1c8;
  --highlight: #dfe7e3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 24px;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--line);
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.section {
  display: flex;
  gap: 4vw;
  align-items: center;
  padding: 70px 6vw;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.highlight {
  background: var(--highlight);
}

.section.surface {
  background: #fff;
}

.section-bg {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.col {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.image-frame {
  background: #e6e1da;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  align-items: center;
}

.service-card img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

footer {
  background: #131412;
  color: #f5f3ef;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #c7c1b9;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 220px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
