* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5b6168;
  --accent: #2f6f5f;
  --accent-soft: #e5f1ed;
  --sand: #f4f1ec;
  --stone: #e8e3da;
  --shadow: 0 18px 40px rgba(12, 14, 18, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

header {
  padding: 24px 0 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid var(--ink);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 28px 0 40px;
}

.hero h1 {
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.link {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.img-frame {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-frame.tall {
  height: 100%;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.5rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(14, 16, 20, 0.08);
}

.card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.card .price {
  font-weight: 600;
  font-size: 1.1rem;
}

.accent-block {
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 28px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9ccd1;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.band {
  background: var(--sand);
}

.band-stone {
  background: var(--stone);
}

.bg-image {
  background-color: #dfe4e0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image .accent-block {
  background: rgba(255, 255, 255, 0.9);
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--stone);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 36px 0 28px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
