* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1a17;
  --muted: #6d625b;
  --paper: #faf6f1;
  --cream: #f2e7dc;
  --accent: #c36a2d;
  --accent-dark: #8a451b;
  --leaf: #5d7b5d;
  --shadow: rgba(31, 26, 23, 0.08);
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid #e5d6c9;
}

.topbar-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--cream);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-image {
  flex: 0.9;
  border-radius: 18px;
  overflow: hidden;
  background: #e8d9cc;
  box-shadow: 0 18px 40px var(--shadow);
}

.split {
  display: flex;
  gap: 24px;
  margin: 40px 0;
  align-items: stretch;
}

.column-card {
  flex: 1;
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

.column-card h2 {
  margin-bottom: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background-color: #ead9cf;
}

.full-bleed {
  background: var(--cream);
  padding: 50px 0;
  margin: 50px 0;
}

.full-bleed-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  gap: 26px;
  align-items: center;
}

.full-bleed-inner img {
  width: 44%;
  height: 280px;
  border-radius: 16px;
  background-color: #e6d3c6;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button-secondary {
  background: var(--leaf);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.pricing-item span {
  font-weight: 600;
}

.form-wrapper {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 14px 30px var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7ba;
  font-family: inherit;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 18px var(--shadow);
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background-color: #ead9cf;
}

.footer {
  background: #1e1612;
  color: #f3e9df;
  padding: 32px 0;
}

.footer-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #f3e9df;
}

.footer small {
  color: #d5c8be;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px var(--shadow);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 28px var(--shadow);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #f5ece4;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.scene-banner {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0;
}

.scene-banner .page {
  padding: 0;
}

.scene-banner .banner-card {
  background: rgba(31, 26, 23, 0.8);
  padding: 26px;
  border-radius: 16px;
  max-width: 520px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.two-column {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 30px 0;
}

.two-column > div {
  flex: 1;
}

.image-frame {
  background-color: #e7d7cb;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
}

.no-form-note {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .full-bleed-inner,
  .two-column {
    flex-direction: column;
  }

  .full-bleed-inner img {
    width: 100%;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
