* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --ink: #1e1a17;
  --muted: #6a635c;
  --accent: #d96b4f;
  --accent-dark: #b84f37;
  --soft: #efe7dd;
  --edge: #d7ccc1;
  --highlight: #fff6ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 18px 0;
  background: #f9f4ef;
  border-bottom: 1px solid var(--edge);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  background: var(--highlight);
  border: 1px solid var(--edge);
  font-size: 12px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1777221616797-45952af9a15d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a3028;
  color: #fff;
  padding: 110px 0 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 7, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
}

.hero p {
  margin: 0;
  color: #f5efe8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.section {
  padding: 72px 0;
}

.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: var(--soft);
  padding: 12px;
  border-radius: 16px;
}

.media img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.story-band {
  background: #fff;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.trust-band {
  background-image: url("https://images.unsplash.com/photo-1609121398209-c353f4d83b0a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b322b;
  position: relative;
  color: #fff;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 20, 0.7);
}

.trust-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image {
  background: #f0e5da;
  border-radius: 14px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 170px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--edge);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-size: 15px;
  font-family: inherit;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.page-hero {
  background-size: cover;
  background-position: center;
  background-color: #3a3028;
  color: #fff;
  padding: 90px 0 80px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 13, 0.65);
}

.page-hero .container {
  position: relative;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1743228672550-8b8f22cf0031?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1573677275957-d6dbf54c0a4e?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1609138453883-89412fd51e3d?w=1400&q=80");
}

.legal {
  background: #fff;
  border-top: 1px solid var(--edge);
}

.footer {
  padding: 40px 0;
  background: #1d1916;
  color: #e6dfd6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #c4b9ad;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: #f1e6dc;
  color: var(--ink);
}

.btn-secondary:hover {
  background: #e7d5c8;
}

.hidden {
  display: none;
}
