* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2326;
  --muted: #5a6268;
  --accent: #c48d5f;
  --accent-dark: #8f6342;
  --bg: #f7f3ee;
  --bg-alt: #f0e8df;
  --card: #ffffff;
  --line: #e6ddd3;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 48px 0 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 0.9;
  background-color: #d9cdc0;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
  background: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 50px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.bg-texture-one {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-texture-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 18, 0.55);
}

.bg-texture-one .container {
  position: relative;
  z-index: 1;
}

.bg-texture-two {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-texture-two::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 239, 231, 0.86);
}

.bg-texture-two .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-block {
  background: var(--card);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  margin-left: 40px;
}

.media-box {
  background-color: #dbcfc2;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.media-box img {
  height: 100%;
  min-height: 280px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .card-media {
  background-color: #e0d5cb;
}

.service-card img {
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.highlight {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.testimonial {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  flex: 1;
  min-width: 220px;
}

.testimonial-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.footer {
  background: #1f2326;
  color: #f9f6f1;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-note {
  margin-top: 18px;
}

.footer a {
  color: #f9f6f1;
}

.footer small {
  color: #d7d0c7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2f33;
  color: #f6f1ea;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #f6f1ea;
  color: #2a2f33;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.cookie-btn.secondary {
  background: transparent;
  color: #f6f1ea;
  border: 1px solid #f6f1ea;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  font-size: 2rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  flex: 1 1 260px;
}

.notice {
  background: #fff7ec;
  border: 1px solid #f1d8b7;
  padding: 16px;
  border-radius: 12px;
  color: #6d4c2a;
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .offset-block {
    margin-left: 0;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
