* {
  box-sizing: border-box;
}

:root {
  --ink: #2d2418;
  --muted: #6b5a43;
  --honey: #d9a441;
  --amber: #b77b2b;
  --cream: #f7f1e6;
  --paper: #fffaf2;
  --stone: #efe3d1;
  --forest: #2f3a2c;
  --leaf: #7b8b57;
  --accent: #9a5a2c;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 36, 24, 0.08);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f0e0c4;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw 40px;
  background: linear-gradient(135deg, #f7e7c6 0%, #fff7e8 100%);
}

.hero-media {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ead7b7;
  min-height: 280px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--honey);
  color: #2d1a00;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.primary-cta:hover,
.primary-cta:focus {
  background: #f0b74b;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-contrast {
  background: var(--stone);
}

.section-dark {
  background: #2a251c;
  color: #f5e9d8;
}

.section-dark a {
  color: #f5d492;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #e6d5bd;
  min-height: 220px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(45, 36, 24, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.quote {
  border-left: 3px solid var(--honey);
  padding-left: 16px;
  font-style: italic;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: #fff7ea;
  padding: 16px 18px;
  border-radius: 14px;
}

.price-item strong {
  font-size: 1.05rem;
}

.inline-cta {
  font-weight: 600;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(45, 36, 24, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(45, 36, 24, 0.2);
  font-size: 1rem;
}

button {
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6vw;
  background: var(--cream);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  margin: 0 6vw 20px;
  background: #fff7ea;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 20px rgba(45, 36, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-cta button {
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(45, 36, 24, 0.2);
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #efe3d1;
  font-size: 0.85rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(45, 36, 24, 0.08);
}

@media (max-width: 860px) {
  .hero-media {
    flex-direction: column;
  }
  .sticky-cta {
    position: static;
  }
}
