* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f5f1;
}

a {
  color: #1f2933;
  text-decoration: underline;
}

img.cover-img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: #efe9df;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #b9b0a2;
  background: #fff6ec;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 24px;
  background: #f7f1e8;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 48px 30px;
  position: relative;
}

.hero-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 20px;
}

.hero-media {
  flex: 1;
  position: relative;
  min-height: 340px;
  background: #e2d8cc;
}

.hero-media .media-frame {
  position: absolute;
  inset: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border: none;
  background: #1f2933;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.section {
  padding: 50px 48px;
  position: relative;
}

.section.alt {
  background: #fff9f3;
}

.asym-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1.1;
}

.asym-media {
  flex: 0.9;
  min-height: 260px;
  background: #e7ded3;
  position: relative;
  margin-top: 20px;
}

.offset-card {
  background: #ffffff;
  padding: 26px;
  border-left: 5px solid #1f2933;
  margin-left: 40px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  background: #f1ebe2;
}

.service-meta {
  max-width: 70%;
}

.pricing {
  font-weight: 700;
}

.testimonial {
  padding: 18px;
  background: #fdf7f0;
  border: 1px solid #ded3c4;
  margin: 12px 0;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-left: 4px solid #1f2933;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px;
  border: 1px solid #c9c0b4;
  font-size: 14px;
}

.side-note {
  flex: 0.7;
  background: #efe6da;
  padding: 24px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2933;
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 50;
}

.footer {
  margin-top: auto;
  padding: 40px 48px;
  background: #1f2933;
  color: #f7f5f1;
}

.footer a {
  color: #f7f5f1;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-card {
  background: #e7ded3;
  padding: 10px;
}

.legal-hero {
  min-height: 220px;
  background: #e4dbd0;
  margin-bottom: 24px;
  position: relative;
}

.contact-block {
  background: #ffffff;
  padding: 24px;
  border-left: 4px solid #1f2933;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid #c5b9a7;
  padding: 16px;
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.hidden {
  display: none;
}
