* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f241e;
  --muted: #5e6b5b;
  --accent: #c56c2f;
  --accent-dark: #8b4b1f;
  --forest: #2f4b3b;
  --sand: #f3efe8;
  --mist: #e3ebe3;
  --sun: #f6d38d;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(22, 32, 24, 0.12);
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 8vw 32px;
  position: relative;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-highlight {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.hero-media {
  position: relative;
  align-self: flex-end;
  max-width: 520px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 18% -12% -12% 28%;
  background: var(--sun);
  z-index: -1;
  border-radius: 36px;
}

.section {
  padding: 36px 8vw;
  position: relative;
}

.section-dense {
  padding: 26px 8vw;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.85rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-card {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.asym-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.asym-media::before {
  content: "";
  position: absolute;
  inset: 10% 10% auto auto;
  width: 60px;
  height: 60px;
  background: var(--mist);
  border-radius: 18px;
}

.inline-cta {
  color: var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  font-weight: 600;
}

.floating-note {
  position: absolute;
  right: 8vw;
  top: -22px;
  background: var(--forest);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  max-width: 240px;
}

.cards-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card-mini img {
  width: 58px;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
  font-style: italic;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.price-card {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d2c4;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 99;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  width: min(92vw, 520px);
  z-index: 100;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  padding: 26px 8vw 40px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  background: var(--mist);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}

.split-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    max-width: 520px;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .cards-row {
    flex-direction: row;
  }

  .gallery-strip {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .badge-row {
    flex-direction: row;
  }

  .split-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
