@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1d1b19;
  --muted: #5c5752;
  --accent: #3a6b7e;
  --accent-2: #d98c4b;
  --surface: #ffffff;
  --panel: #efe9e1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 22px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 80px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #d4d1cd;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  background: rgba(246, 244, 241, 0.9);
  padding: 32px;
  border-radius: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--panel);
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #dcd4c9;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-media {
  background-color: #e2d6c6;
  border-radius: 12px;
  overflow: hidden;
}

.card-price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--accent-2);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  max-width: 620px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b6;
  font-size: 1rem;
}

.form-wrap button {
  background: var(--accent-2);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 40px 6vw 50px;
  background: #1f1c19;
  color: #f4f0eb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f4f0eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  color: var(--ink);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #d9d1c6;
  color: var(--ink);
}

.legal {
  max-width: 820px;
}

.notice {
  background: #f0e7dd;
  padding: 18px;
  border-radius: 12px;
}
