* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5a5a5a;
  --accent: #c0482b;
  --accent-dark: #8f2d18;
  --sand: #f4efe9;
  --mist: #eef1f3;
  --night: #121015;
  --leaf: #12413c;
  --card: #ffffff;
  --radius: 22px;
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 120px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 10px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--ink);
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 0 40px;
  align-items: stretch;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 10%;
  top: -10px;
  width: 240px;
  height: 240px;
  background: rgba(192, 72, 43, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero-copy {
  flex: 1.1;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-card {
  flex: 0.9;
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.hero-card img {
  border-radius: 18px;
  object-fit: cover;
  height: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 56px 0;
  position: relative;
}

.section-alt {
  background: var(--mist);
  margin: 0 -4vw;
  padding: 56px 4vw;
}

.section-dark {
  background: var(--night);
  color: #fdf6f0;
  margin: 0 -4vw;
  padding: 56px 4vw;
}

.section-dark a {
  color: #f8c8bb;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.callout {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.floating {
  position: relative;
  top: -26px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: #fef7f4;
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: 12px;
}

.form-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d1d1;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid #d6d6d6;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 65, 60, 0.12);
  color: var(--leaf);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-grid .card {
  flex: 1;
  min-width: 240px;
}

.wide-image {
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
