* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1e23;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b1e23;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #efeae3;
  border-bottom: 1px solid #d7d2c9;
}

.nav-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.tagline {
  font-size: 14px;
  color: #4a4f57;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d7d2c9;
}

.main-nav a:hover,
.button:hover,
.link-button:hover {
  background: #1b1e23;
  color: #fff;
}

.ad-disclosure {
  font-size: 12px;
  color: #5a6069;
  max-width: 240px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 36px 6vw 64px;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.feature-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #dde3ea;
  padding: 12px;
}

.section-title {
  font-size: 30px;
  margin: 0;
}

.lede {
  font-size: 18px;
  margin: 0;
}

.button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: #1b1e23;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.link-button {
  background: #f6f4f1;
  color: #1b1e23;
  border: 1px solid #1b1e23;
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mag-column {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border: 1px solid #e0dbd2;
}

.highlight {
  background: #f0e2d0;
  padding: 22px;
  border-left: 4px solid #b36c39;
}

.section-band {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: #ffffff;
  padding: 24px;
  border: 1px solid #ddd6cc;
}

.band-image {
  flex: 1 1 260px;
  background: #d9dbe2;
  padding: 10px;
}

.band-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid #e0dbd2;
}

.service-card figure {
  margin: 0;
  background: #e1e5ea;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background: #f8efe5;
  padding: 24px;
  border: 1px solid #e0dbd2;
}

.form-panel,
.form-aside {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c8c2b8;
  font-size: 14px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.inline-cta span {
  text-decoration: underline;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid #e0dbd2;
}

.footer {
  background: #1b1e23;
  color: #f6f4f1;
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #c9c5bd;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin-right: 2vw;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #c8c2b8;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid #1b1e23;
  background: #fff;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #1b1e23;
  color: #fff;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  padding: 22px;
  border: 1px solid #e0dbd2;
}

.legal-hero figure {
  flex: 1 1 280px;
  margin: 0;
  background: #d5dde5;
}

.legal-hero .legal-text {
  flex: 1 1 280px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border: 1px solid #e0dbd2;
}

.background-panel {
  background-color: #6a7a88;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 34px;
  border-radius: 8px;
}

.background-panel .button {
  background: #fff;
  color: #1b1e23;
}

.image-frame {
  background: #d9dbe2;
  padding: 8px;
}
