* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ee;
  --ink: #2b2b2b;
  --muted: #6c6762;
  --accent: #c67b4b;
  --accent-dark: #8f5b36;
  --panel: #ffffff;
  --sand: #efe7df;
  --sage: #e3ebe6;
  --slate: #dfe3e7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: var(--panel);
  border-bottom: 1px solid #e5ded6;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero {
  display: flex;
  min-height: 72vh;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 26, 22, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 7vw;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 22px;
  color: #f2e9e2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

.section {
  padding: 64px 7vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-card {
  background: var(--panel);
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  background-color: var(--slate);
}

.media-card img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--muted);
  font-size: 0.85rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--sand);
}

.service-card img {
  height: 180px;
  width: 100%;
}

.service-card .content {
  padding: 18px 20px 24px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.divider {
  height: 1px;
  background: #e2d9d0;
  margin: 32px 0;
}

.highlight {
  background: var(--sand);
  border-radius: 28px;
  padding: 36px;
}

.form-wrap {
  background: var(--panel);
  border-radius: 28px;
  padding: 30px;
  background-color: var(--slate);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d4ccc4;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid #e5ded6;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta span {
  color: var(--muted);
}

.footer {
  background: #1f1a17;
  color: #f1eae4;
  padding: 40px 7vw;
}

.footer a {
  color: #f1eae4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 24px;
}

.legal-note {
  font-size: 0.85rem;
  color: #cfc3b9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-header {
  background: var(--panel);
  padding: 46px 7vw 24px;
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

.side-note {
  padding: 22px;
  background: var(--sage);
  border-radius: 18px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  background-color: var(--sand);
}

.reference-list a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
