@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1d1c1a;
  --muted: #5e5b57;
  --accent: #2b5a7a;
  --accent-2: #7a4b2b;
  --panel: #ffffff;
  --line: #ded7cd;
  --soft: #ece6dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 6vw 60px 6vw;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 300px;
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
  position: relative;
}

.hero-media img {
  border-radius: 14px;
  height: 340px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn:focus,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 60px 6vw;
}

.section--split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.flex-320 {
  flex: 1 1 320px;
}

.flex-300 {
  flex: 1 1 300px;
}

.flex-280 {
  flex: 1 1 280px;
}

.mt-20 {
  margin-top: 20px;
}

.section--offset {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bg-section {
  position: relative;
  color: #fff;
  background-color: #2a2a28;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.bg-section .section--split,
.bg-section .panel {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 16px 0;
}

.muted {
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.panel-image {
  background: var(--soft);
  border-radius: 16px;
  padding: 12px;
}

.panel-image img {
  border-radius: 12px;
  height: 220px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card img {
  border-radius: 14px;
  height: 180px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f1f1d;
  color: #f4f2ed;
}

.footer a {
  color: #f4f2ed;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--ink);
  color: #fff;
}

.page-header {
  padding: 20px 6vw 0 6vw;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 40px 6vw;
}

.simple-hero img {
  border-radius: 16px;
  height: 260px;
}

.contact-block {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
