:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #4b5a64;
  --accent: #1f7a6b;
  --accent-dark: #155e53;
  --surface: #f5f4f0;
  --panel: #ffffff;
  --sand: #efe7da;
  --slate: #22313a;
  --leaf: #dce7df;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
}

.button-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  padding: 1.5rem 0 0.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  padding: 2.5rem 0 3rem;
}

.split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 300px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--leaf);
}

.section.sand {
  background: var(--sand);
}

.headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.5rem 0 1rem;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 1.2rem;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  border-radius: 1rem;
  overflow: hidden;
  background-color: #dfe6dc;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-small {
  max-height: 220px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 200px;
  background: var(--panel);
  padding: 1.2rem;
  border-radius: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: var(--slate);
  color: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
}

.sticky-cta p {
  margin-top: 0;
}

.form-panel {
  background: var(--panel);
  padding: 1.8rem;
  border-radius: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid #ccd2ce;
  font: inherit;
  background: #fff;
}

.inline-link {
  font-weight: 600;
}

.footer {
  padding: 3rem 0 4rem;
  background: #11181d;
  color: #d6dde2;
}

.footer a {
  color: #d6dde2;
}

.footer-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b8c2c9;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.content-narrow {
  max-width: 760px;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.list {
  padding-left: 1.1rem;
}

.notice {
  background: #fff6e9;
  border-radius: 1rem;
  padding: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e7f0ec;
  color: #1e5149;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.full-width {
  width: 100%;
}
