* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141516;
  --muted: #4a4f57;
  --surface: #f5f2ee;
  --accent: #0f4c5c;
  --accent-soft: #e0ecef;
  --warm: #f2e7db;
  --border: #d7d4cf;
  --shadow: 0 20px 50px rgba(15, 21, 22, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 12px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 6vw;
}

.section.compact {
  padding: 48px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.bg-context {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-context .lead,
.section.bg-context p,
.section.bg-context h2 {
  color: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .content,
.split > .media {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.image-frame {
  background: #e6e0d8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card-image {
  flex: 1 1 180px;
  min-height: 140px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 140px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #111516;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid a {
  color: #ffffff;
}

.footer-note {
  margin-top: 24px;
  font-size: 13px;
  color: #cfd5da;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 10%;
  top: -18px;
  width: 140px;
  height: 140px;
  background: var(--accent-soft);
  border-radius: 50%;
  z-index: -1;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  padding: 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--muted);
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 20px 0;
  color: var(--muted);
}

.hero-media {
  min-height: 360px;
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
