* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1b18;
  --muted: #5b534c;
  --accent: #2f5d62;
  --accent-soft: #e6f1f0;
  --sand: #f4f0eb;
  --stone: #e7dfd6;
  --pearl: #faf7f3;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-quiet {
  background: var(--sand);
}

.section-contrast {
  background: var(--stone);
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.stack-start {
  align-items: flex-start;
}

.hero {
  position: relative;
  color: #fefcf9;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 33, 36, 0.85), rgba(22, 33, 36, 0.4));
  z-index: 1;
}

.hero.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  margin: 18px 0;
}

h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #24494d;
}

.btn-light {
  background: #fff;
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-light:hover {
  transform: translateY(-1px);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(47, 93, 98, 0.3);
}

.inline-cta:hover {
  border-bottom-color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 0.82rem;
  background: rgba(47, 93, 98, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.image-frame {
  background-color: #d7d1c8;
  padding: 12px;
  border-radius: 18px;
}

.image-frame.tall {
  height: 360px;
}

.image-frame.medium {
  height: 300px;
}

.image-frame.small {
  height: 220px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(30, 27, 24, 0.08);
}

.card-media {
  background-color: #d7d1c8;
  height: 120px;
  width: 160px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(30, 27, 24, 0.15);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc4ba;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.columns {
  display: flex;
  gap: 32px;
}

.column {
  flex: 1;
}

.footer {
  padding: 48px 0 36px;
  background: #1c1b18;
  color: #f6f0e8;
}

.footer a {
  color: #f6f0e8;
}

.footer-grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer p {
  color: rgba(246, 240, 232, 0.75);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(30, 27, 24, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  font-weight: 600;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(30, 27, 24, 0.2);
  display: none;
  z-index: 12;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e7dfd6;
  color: var(--ink);
}

.page-hero {
  padding: 70px 0;
  background: var(--sand);
}

.page-hero .split {
  align-items: stretch;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.notice {
  background: var(--accent-soft);
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 980px) {
  .split,
  .columns {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 96px;
  }
}
