@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #1b2a24;
  --muted: #4a5a54;
  --accent: #3d6b5b;
  --accent-soft: #dfece6;
  --sand: #f6f3ee;
  --stone: #e5e1db;
  --shadow: rgba(27, 42, 36, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #ced9d2;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1753195268432-446b2a5b545b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px 32px;
  margin: 36px;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px var(--shadow);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 72px 0;
}

.asym-split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 360px;
  max-width: 520px;
}

.offset-card {
  flex: 1 1 360px;
  margin-left: clamp(0px, 6vw, 80px);
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px var(--shadow);
}

.image-frame {
  background: #d9e3db;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 34px var(--shadow);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.strip {
  background: #f2efe9;
  padding: 64px 0;
}

.bg-panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  color: #fff;
  padding: 54px;
  background: #52655b;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.bg-misty::before {
  background-image: url("https://images.unsplash.com/photo-1755398104445-a6a9b964ad94?w=1400&q=80");
}

.bg-sky::before {
  background-image: url("https://images.unsplash.com/photo-1752999050383-0ba4d17bee2a?w=1400&q=80");
}

.bg-panel .content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 36px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cad5cf;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 14px 26px var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: #101915;
  color: #e7ede9;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer a {
  color: #e7ede9;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  width: min(360px, 90%);
  box-shadow: 0 18px 36px var(--shadow);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.stack-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stack-block {
  flex: 1 1 280px;
  background: var(--sand);
  padding: 20px;
  border-radius: var(--radius);
}

.page-hero {
  background: var(--stone);
  padding: 48px 0;
}

.page-hero-inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.flex-wide {
  flex: 1 1 320px;
}

.mt-s {
  margin-top: 18px;
}
