* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #161616;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px 20px 80px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #f2a85c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero .hero-copy {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 18px;
}

.hero .hero-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  position: relative;
}

.hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #161616;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn.alt {
  background: #f2a85c;
  color: #1a1a1a;
}

.btn.light {
  background: #ffffff;
  color: #161616;
  border: 1px solid #161616;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.offset {
  margin-left: 8%;
}

.section.offset-right {
  margin-right: 8%;
}

.section .title {
  font-size: 24px;
  line-height: 1.3;
}

.section .lead {
  font-size: 15px;
  color: #333333;
}

.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.story-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #fdf1e5;
  border-radius: 16px;
  padding: 18px;
}

.stat strong {
  font-size: 20px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: #b25b17;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.testimonial em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: #666666;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #2d2d2d;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
  background: #ffffff;
}

.inline-cta {
  color: #b25b17;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: #4d4d4d;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #161616;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.mini-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.policy {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .page {
    padding: 32px 60px 100px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-visual {
    flex: 0.9;
  }

  .story-blocks {
    flex-direction: row;
  }

  .stats-row {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col .highlight {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
