* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #faf7f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
  background: #fff7ec;
  border-bottom: 1px solid #f1e6d7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #f4d5a4;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fffdf9;
}

.section.dark {
  background: #1f1d1a;
  color: #f8f3ea;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1572656934803-d2162b2e98bf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff9f0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.tagline {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #e28b40;
  color: #1b1b1b;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid currentColor;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 320px;
}

.image-frame {
  background: #e7d8c6;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-frame.tall {
  height: 420px;
}

.image-frame.medium {
  height: 320px;
}

.story-banner {
  background-image: url("https://images.unsplash.com/photo-1518291344630-4857135fb581?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff8f0;
  position: relative;
}

.story-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.55);
}

.story-banner .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(20, 18, 14, 0.08);
}

.card .image-frame {
  height: 160px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.quote {
  padding: 18px;
  border-left: 4px solid #e28b40;
  background: #fff7ec;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f4e8d9;
  font-size: 0.9rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e1d5c6;
  font-size: 1rem;
  font-family: inherit;
}

.form-message {
  font-size: 0.95rem;
  color: #7b3b2f;
}

.footer {
  padding: 48px 0;
  background: #1f1d1a;
  color: #f8f3ea;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #f0e3d2;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f1d1a;
  color: #f8f3ea;
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: #e28b40;
  border: none;
  color: #1b1b1b;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.15);
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #e28b40;
  color: #1b1b1b;
}

.cookie-actions button.secondary {
  background: #f0e3d2;
}

.simple-hero {
  background: #fff7ec;
  padding: 64px 0 40px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.narrow {
  max-width: 720px;
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-item {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.08);
}

.service-item .image-frame {
  height: 150px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.08);
}

.spacer-top {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
