* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5f5a;
  --sand: #efe9df;
  --stone: #d6d2c9;
  --forest: #2e3a2e;
  --mist: #f6f4ef;
  --accent: #9a6b3f;
  --accent-soft: #e6d8c4;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0 120px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 30, 30, 0.08);
}

.hero-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.hero-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--forest);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.btn-light {
  background: var(--accent-soft);
  color: var(--forest);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.note-card {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.img-wrap {
  background: var(--sand);
  overflow: hidden;
}

.fallback-1 {
  background: #e3dacb;
}

.fallback-2 {
  background: #dcd2c4;
}

.fallback-3 {
  background: #e9e2d7;
}

.fallback-4 {
  background: #efe5d6;
}

.fallback-5 {
  background: #e7ddcc;
}

.fallback-6 {
  background: #e3d6c6;
}

.fallback-7 {
  background: #d9cfc1;
}

.fallback-8 {
  background: #e0d7c9;
}

.fallback-9 {
  background: #d4cbbf;
}

.fallback-10 {
  background: #e5dccd;
}

.fallback-11 {
  background: #d8cfc1;
}

.footer-note {
  margin-top: 18px;
}

.strip {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  background: #fffdfa;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--stone);
  padding: 32px 0 80px;
  color: var(--muted);
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.15);
}

.sticky-cta a {
  font-weight: 600;
  color: var(--forest);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(30, 30, 30, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.page-hero .img-wrap {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
}

.page-hero .page-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1777052854737-7893f50de539?w=1400&q=80");
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1696846912973-3233cc80bf86?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1527359443443-84a48aec73d2?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1504665972199-8e1eeab59fc3?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1602860739945-9a61573cd62d?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1696846912293-9a8013e17403?w=1400&q=80");
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1696846911635-83b97e53fb65?w=1400&q=80");
}

@media (max-width: 900px) {
  .split-section,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
