:root {
  --bg: #f7f4f0;
  --ink: #1f1a16;
  --muted: #6b5f55;
  --accent: #b25a3b;
  --accent-dark: #8c442d;
  --sand: #efe8e1;
  --stone: #d8cfc7;
  --olive: #7b7a64;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 32px 20px;
}

nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.hero {
  min-height: 70vh;
  background-image: url("https://images.unsplash.com/photo-1699309325446-3561a7508d3c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
  position: relative;
}

.hero-overlay {
  background: rgba(20, 17, 15, 0.58);
  color: var(--paper);
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 720px;
  margin: 0;
}

.hero p {
  max-width: 560px;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-row.spaced {
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}

.section {
  padding: 70px 32px;
}

.section.alt {
  background: var(--paper);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--sand);
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 15, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
  border-radius: 12px;
  background: var(--stone);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--sand);
}

.price-tag {
  font-weight: 700;
}

.testimonial {
  padding: 18px 20px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: var(--paper);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(18, 13, 9, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  background: var(--paper);
}

.inline-cta {
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.timeline-step {
  flex: 1 1 200px;
  background: var(--sand);
  border-radius: 16px;
  padding: 16px;
}

.muted {
  color: var(--muted);
}

.footer {
  background: #161412;
  color: #f7f4f0;
  padding: 40px 32px 90px;
}

.footer a {
  color: #f0d6c8;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #d9ccc2;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(20, 12, 8, 0.2);
  max-width: 320px;
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .btn-outline {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 20, 18, 0.96);
  color: var(--paper);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 90;
}

.sticky-cta button {
  background: #f3d1c2;
  color: #2c2018;
}

.page-hero {
  background: var(--paper);
  padding: 60px 32px 40px;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery-row img {
  flex: 1 1 220px;
  height: 220px;
  border-radius: 16px;
  background: var(--stone);
}

.contact-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
}

.legal-text {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.service-item img {
  width: 180px;
  height: 140px;
  border-radius: 12px;
  background: var(--stone);
}
