* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  gap: 24px;
  background-color: #f7f5f2;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #5c5f66;
  border: 1px solid #d3d0cb;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fff;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(12, 14, 18, 0.62);
  padding: 60px 6%;
  width: 100%;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  gap: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #f7c66b;
  color: #2a261c;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #f7c66b;
  color: #f7c66b;
}

.section {
  padding: 70px 6%;
}

.section-compact {
  padding: 50px 6%;
}

.section-dark {
  background-color: #1d1f24;
  color: #f7f5f2;
}

.section-image-bg {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b3b3b;
  color: #fff;
  position: relative;
}

.section-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.6);
}

.section-image-bg > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split > div {
  flex: 1 1 300px;
}

.story-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.story-card h2,
.story-card h3 {
  margin-top: 0;
}

.inline-image {
  background-color: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
}

.highlight {
  background-color: #fff2d8;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #6f4b14;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonial {
  border-left: 3px solid #f7c66b;
  padding-left: 18px;
  margin-bottom: 18px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 170px;
  object-fit: cover;
  background-color: #d9d1c7;
}

.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: #6f4b14;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1c9bf;
  font-size: 15px;
  background-color: #fffdf9;
}

.form-note {
  font-size: 13px;
  color: #6b6f76;
}

.cta-inline {
  color: #f7c66b;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 36px 6%;
  background-color: #0f1114;
  color: #e6e0d7;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 14px;
}

.footer a {
  color: #e6e0d7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1d1f24;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 5;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ddd5cc;
}

.simple-hero {
  background-color: #fff;
  padding: 50px 6%;
  border-bottom: 1px solid #e8e2da;
}

.simple-hero h1 {
  margin: 0 0 12px 0;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legal {
  max-width: 780px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.image-frame {
  background-color: #d9d1c7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  height: 260px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6% 0;
    align-self: flex-start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
