* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background-color: #f6f1ea;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 0;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a,
.nav button {
  padding: 8px 12px;
  border-radius: 999px;
  background-color: #e8ddd0;
}

.ad-label {
  font-size: 12px;
  max-width: 220px;
  text-align: right;
  color: #5a4e44;
}

.hero {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 8vw 80px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 40px 40px;
  position: relative;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 17, 24, 0.58), rgba(14, 17, 24, 0.1));
  border-radius: 0 0 40px 40px;
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
}

.primary-btn {
  background-color: #f4c095;
  color: #1f2430;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding: 0 8vw;
}

.offset-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.offset-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-right {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.img-frame {
  border-radius: 26px;
  overflow: hidden;
  background-color: #d5c6b8;
}

.frame-tall {
  height: 320px;
}

.story-card {
  background-color: #fff;
  padding: 22px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(31, 36, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-board {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 18px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.service-card .img-frame {
  height: 160px;
}

.service-price {
  font-weight: 700;
  color: #9c4f1a;
}

.layered-band {
  padding: 60px 8vw;
  display: flex;
  gap: 40px;
  background-color: #efe5da;
  border-radius: 40px;
  margin: 0 6vw;
}

.band-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(31, 36, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border: 1px solid #d7cfc4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 40px 8vw 60px;
  background-color: #1f2430;
  color: #fdf8f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1f2430;
  color: #fdf8f2;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  color: #1f2430;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(31, 36, 48, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background-color: #e8ddd0;
  padding: 8px 12px;
  border-radius: 999px;
}

.banner-image {
  height: 220px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #d6cbbc;
}

.legal-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 8vw 0;
}

.legal-content {
  padding: 0 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
}

.contact-card {
  background-color: #fff;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-tile {
  background-color: #fff;
  border-radius: 24px;
  padding: 18px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.thanks-card {
  background-color: #fff;
  padding: 36px;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(31, 36, 48, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
}

.text-muted {
  color: #6a5f55;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    padding: 100px 8vw 60px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .offset-grid {
    flex-direction: column;
  }

  .layered-band {
    flex-direction: column;
    margin: 0 4vw;
  }
}
