* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101418;
  --muted: #5a6572;
  --bone: #f6f3ee;
  --sand: #ebe2d6;
  --stone: #d9d1c6;
  --ink-soft: #1d232a;
  --accent: #1f4a6c;
  --accent-2: #b57a3b;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 0 120px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 420px;
}

.panel.tight {
  flex: 1 1 360px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 90px 0;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #f1e9de;
}

.headline {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0 20px;
}

.subhead {
  font-size: 18px;
  color: #f6efe7;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.image-frame {
  background: var(--sand);
  padding: 10px;
}

.cover-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  font-size: 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.bg-panel {
  background: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 40px;
  position: relative;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0.5);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.overlap-card {
  background: #fff;
  padding: 20px;
  border: 1px solid var(--stone);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.form-card {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone);
}

.price {
  font-weight: 700;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer {
  background: var(--ink-soft);
  color: #f6efe7;
  padding: 32px 0 60px;
}

.footer a {
  color: #f6efe7;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 70px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 0;
}

.simple-hero {
  background: var(--sand);
  padding: 36px;
}

.inline-image {
  border: 1px solid var(--stone);
}

@media (max-width: 820px) {
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: 70px 0;
  }
}
