* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f7f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  gap: 20px;
  background: #fefbf6;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.disclosure {
  font-size: 12px;
  color: #5a4e43;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #efe8dc;
}

.main {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6% 40px;
  position: relative;
}

.hero-panel {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-copy {
  font-size: 18px;
  color: #3f4248;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  background-color: #d8d0c3;
  border-radius: 28px;
  overflow: hidden;
}

.hero-image img {
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.cta-primary {
  background: #1d1f24;
  color: #fefbf6;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.cta-secondary {
  background: transparent;
  border: 1px solid #1d1f24;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
}

.section {
  padding: 56px 6%;
}

.section.alt {
  background: #f0ece5;
}

.asymmetric {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.offset-card {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.offset-media {
  flex: 1;
  background-color: #cfd5d6;
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
}

.inline-note {
  margin-top: 18px;
  font-size: 14px;
  color: #4a4d54;
}

.timeline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 200px;
  background: #fff7ef;
  border-radius: 18px;
  padding: 18px;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #1f3d2b;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #46464d;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c1b8;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 13px;
  color: #5c5f66;
}

.form-side {
  flex: 1;
  min-width: 240px;
  background: #f7efe3;
  border-radius: 22px;
  padding: 22px;
}

.legal-footer {
  background: #1d1f24;
  color: #fefbf6;
  padding: 38px 6% 60px;
  font-size: 14px;
}

.legal-footer a {
  color: #fefbf6;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1f24;
  color: #fefbf6;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 100;
}

.sticky-cta button {
  background: #fefbf6;
  border: none;
  color: #1d1f24;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 18px;
  max-width: 320px;
  z-index: 110;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  border: none;
  font-size: 13px;
}

.cookie-accept {
  background: #1d1f24;
  color: #fefbf6;
}

.cookie-reject {
  background: #efe8dc;
  color: #1d1f24;
}

.hero-bg {
  background-color: #dcd4c6;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.story-bg {
  background-color: #d7d3cc;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.insight-bg {
  background-color: #cfd3d6;
  background-image: url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.service-img-1 {
  background-color: #d6d1c5;
}

.service-img-2 {
  background-color: #d1d9d8;
}

.service-img-3 {
  background-color: #e2d7c8;
}

.service-img-4 {
  background-color: #d2c9c0;
}

.service-img-5 {
  background-color: #d0d6de;
}

.hero-image img,
.offset-media img,
.service-card img,
.testimonial img {
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-panel,
  .asymmetric,
  .form-wrap {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
