* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1a17;
  background-color: #fbf8f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px;
  background-color: #fbf8f4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #efe3d7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6f5c4f;
  background: #f3e9de;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 72px 6vw 60px;
  background: #f8f0e8;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.button {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: #c8582c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #3f2f25;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #fff4ea;
}

.section.dark {
  background: #2b211b;
  color: #fef6f0;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #f1dfcf;
  border-radius: 18px;
  overflow: hidden;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3e9de;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(31, 26, 23, 0.08);
}

.card .card-image {
  background-color: #f1dfcf;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(31, 26, 23, 0.06);
}

.story-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-grid .story-block {
  flex: 1 1 260px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fdf3e8;
  padding: 20px;
  border-radius: 16px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(31, 26, 23, 0.05);
}

.pricing-item .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #c8582c;
}

.form-panel {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(31, 26, 23, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9c7b8;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: #c8582c;
  font-weight: 600;
}

.footer {
  padding: 36px 6vw;
  background: #1f1a17;
  color: #fef6f0;
  margin-top: auto;
}

.footer a {
  color: #fef6f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer .legal {
  font-size: 0.9rem;
  max-width: 560px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background: #f0b35d;
  color: #2b211b;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 46px 6vw 20px;
  background: #f8f0e8;
}

.simple-content {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(31, 26, 23, 0.08);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .media {
  flex: 1 1 220px;
  min-width: 220px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f1dfcf;
}

.highlight {
  border: 2px solid #c8582c;
}
