* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f1a;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6%;
  background: #f6f4f1;
  border-bottom: 1px solid #ded8cf;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #1c1f1a;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.main {
  flex: 1;
}

.hero {
  position: relative;
  background: #1b2a24;
  color: #fff;
  padding: 80px 6% 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1778572444501-596cf5a18ee7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  z-index: 1;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 20px;
}

.hero-card {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 42px;
  margin: 0;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 28px;
  border: 1px solid transparent;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: #f5b74c;
  color: #1c1f1a;
}

.button.secondary {
  background: transparent;
  border-color: #f5b74c;
  color: #f5b74c;
}

.section {
  padding: 64px 6%;
  position: relative;
}

.section.asymmetric {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.section.asymmetric.reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #ece6dd;
  flex: 1;
  min-width: 260px;
}

.offset-panel.shift {
  margin-top: -40px;
}

.image-frame {
  background: #e6ede4;
  flex: 1;
  min-width: 260px;
  height: 320px;
}

.image-frame.tall {
  height: 420px;
  background: #dfe6d9;
}

.floating-note {
  position: absolute;
  right: 10%;
  top: -28px;
  background: #1c1f1a;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ece6dd;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  padding: 18px;
  flex-wrap: wrap;
}

.service-image {
  width: 180px;
  height: 140px;
  background: #eef1ea;
  flex-shrink: 0;
}

.service-body {
  flex: 1;
  min-width: 200px;
}

.price {
  font-weight: 700;
  color: #2f5d45;
}

.section-contrast {
  background: #1f2a22;
  color: #f7f4ee;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1780226987896-08f39ce84466?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.section-contrast .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: #f4efe6;
  border: 1px solid #e3dccf;
  flex-wrap: wrap;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-card {
  background: #fff;
  border: 1px solid #ece6dd;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d0c7;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  background: #1c1f1a;
  color: #f4efe6;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c8c2b6;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #2f5d45;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid #e3dccf;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #1c1f1a;
  background: #1c1f1a;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1c1f1a;
}

.page-hero {
  padding: 60px 6% 40px;
  background: #e7ece4;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .text {
  flex: 1.2;
}

.page-hero .image-frame {
  flex: 0.8;
  min-width: 240px;
  height: 260px;
}

.legal-block {
  background: #fff;
  border: 1px solid #ece6dd;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wide-split {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: stretch;
  flex-wrap: wrap;
}

.wide-split > div {
  flex: 1;
  min-width: 250px;
}

.note-strip {
  background: #2f5d45;
  color: #fff;
  padding: 10px 6%;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.link-inline {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-content,
  .section.asymmetric {
    flex-direction: column;
  }

  .offset-panel.shift {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
