/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background-color: #111;
  color: #f5f3ef;
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  background-color: #e8c067;
  color: #111;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e6e1d9;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 500;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero {
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 15, 13, 0.55);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero p {
  max-width: 560px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #fff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e8e1d6;
  border-radius: 18px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 360px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  background-color: #efe8dd;
  border-radius: 14px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #6a3b11;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #111;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn.light {
  background-color: #f5d28b;
  color: #111;
}

.btn:hover,
.nav-links a:hover,
.text-link:hover,
.sticky-cta a:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.btn.light:hover {
  background-color: #f0c56d;
  color: #111;
}

.text-link {
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-cta {
  margin-top: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
}

.form-wrap {
  background-color: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7cfc4;
  font-size: 1rem;
}

footer {
  background-color: #111;
  color: #efe7dc;
  padding: 40px 0;
  font-size: 0.95rem;
}

footer a {
  color: #efe7dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #e2d9cc;
  padding: 16px 0;
  z-index: 30;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.1);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-legal {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-panel .split {
  background: rgba(255, 255, 255, 0.92);
  padding: 36px;
  border-radius: 22px;
}

.note {
  font-size: 0.92rem;
  color: #493f33;
}

.references {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .hero .container {
    padding: 60px 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
