* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2228;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #f0ece7;
  border-bottom: 1px solid #e1d8cf;
  padding: 18px 6vw;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5c5147;
  background: #efe6dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  gap: 6vw;
  padding: 64px 6vw;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.tight {
  padding: 36px 6vw;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #dcd2c6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #5c5147;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 17px;
  color: #3d3833;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d2228;
  color: #fff;
  font-size: 14px;
}

.btn.secondary {
  background: #efe6dc;
  color: #2c2925;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(30, 22, 16, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6efe6;
  color: #5c5147;
  font-size: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f8f3ed;
  border-radius: 16px;
}

.service-item span {
  font-weight: 600;
}

.service-item strong {
  font-size: 16px;
}

.image-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-card {
  flex: 1 1 200px;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #cfc4b7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: #4c433b;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6c9bb;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d2228;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
}

.footer {
  background: #1d2228;
  color: #f7f3ee;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.references {
  font-size: 13px;
  color: #d8cfc6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 16, 12, 0.18);
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-bg {
  background: #efe7df;
}

.light-bg {
  background: #fbf8f4;
}

.notice {
  background: #fff6ea;
  border-radius: 16px;
  padding: 18px;
  font-size: 14px;
  color: #4c433b;
}

.wide {
  max-width: 1200px;
  margin: 0 auto;
}

.plain {
  font-size: 15px;
  color: #3b3530;
}

.spacer {
  height: 20px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4dbd2;
}

.table-row strong {
  font-weight: 600;
}
