*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1c18;
  --muted: #5d5a55;
  --accent: #b3583a;
  --accent-dark: #8f4128;
  --soft: #efe6dc;
  --surface: #ffffff;
  --outline: #ded3c7;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--surface);
  border-bottom: 1px solid var(--outline);
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 6vw 30px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  padding: 14px;
  background: var(--soft);
  border-radius: 24px;
}

.hero-media .image-frame {
  background: #d7cabb;
  border-radius: 20px;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--soft);
}

.section-bg {
  background-color: #c9b8a6;
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg .overlay {
  background: rgba(31, 28, 24, 0.72);
  padding: 36px;
  border-radius: 20px;
  max-width: 640px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #d2c4b5;
  padding: 12px;
  border-radius: 22px;
}

.offset-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(31, 28, 24, 0.08);
  margin-left: auto;
  max-width: 520px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.service-card .image-frame {
  background: #d8cfc4;
  border-radius: 14px;
  overflow: hidden;
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-card .btn {
  align-self: flex-start;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 16px;
}

.timeline-item .step {
  font-weight: 700;
  color: var(--accent-dark);
  min-width: 90px;
}

.cta-inline {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 1rem;
  background: #fff;
}

.form-grid textarea {
  min-height: 120px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  font-size: 0.85rem;
  color: #d6d0c8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 18px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
