* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1a;
  --muted: #5d5d58;
  --cream: #f6f3ef;
  --sand: #efe7df;
  --clay: #d5c6b8;
  --olive: #7b846f;
  --accent: #37504f;
  --accent-soft: #e4eceb;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 12px;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 0;
}

.ad-disclosure {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  gap: 36px;
  padding: 48px 6vw 20px;
  align-items: center;
}

.hero-text {
  flex: 1;
  padding-right: 10px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-media {
  flex: 1;
  min-height: 360px;
  position: relative;
  margin-top: 18px;
}

.image-frame {
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #243837;
}

.btn.secondary {
  background: var(--olive);
}

.btn.secondary:hover {
  background: #616b59;
}

.section {
  padding: 52px 6vw;
}

.section.offset {
  margin-left: 8vw;
  margin-right: 2vw;
  background: var(--accent-soft);
  border-radius: 36px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-height: 280px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-image {
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--clay);
}

.card .price {
  font-weight: 600;
  color: var(--accent);
}

.layered {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 32px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered .overlay {
  background: rgba(27, 27, 26, 0.68);
  padding: 32px;
  border-radius: 24px;
  max-width: 580px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-panel {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c2;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 40px 6vw 60px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  max-width: 300px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  cursor: pointer;
}

.page-hero {
  padding: 42px 6vw 22px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}

.page-hero .media {
  min-height: 220px;
  flex: 1;
}

.page-hero .text {
  flex: 1;
}

.content-block {
  padding: 32px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.thanks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 60px 6vw;
  max-width: 700px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .section.offset {
    margin: 0;
  }

  .ad-disclosure {
    text-align: left;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
