* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1b4b43;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #d9cfc0;
}

header {
  padding: 24px 6%;
  background: #f6f3ee;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.ad-label {
  font-size: 13px;
  color: #3f3f3f;
  background: #efe7da;
  padding: 4px 10px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.hero {
  padding: 40px 6% 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-visual {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #d9cfc0;
  border-radius: 20px;
  overflow: hidden;
}

.hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #1b4b43;
  color: #fff;
}

.btn-secondary {
  background: #efe7da;
  color: #1b4b43;
}

.section {
  padding: 50px 6%;
}

.section-muted {
  background: #efe7da;
}

.section-contrast {
  background: #1b4b43;
  color: #fff;
}

.section-contrast a {
  color: #f6f3ee;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
}

.image-frame {
  background-color: #d9cfc0;
  border-radius: 18px;
  overflow: hidden;
}

.badge {
  display: inline-block;
  background: #efe7da;
  color: #1b4b43;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
}

.form-wrapper {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrapper label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c9c1b4;
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > div {
  flex: 1 1 200px;
}

.testimonial {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  font-style: italic;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b4b43;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 40px 6%;
  background: #151c1a;
  color: #f6f3ee;
}

.footer a {
  color: #f6f3ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  width: min(360px, 90vw);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 30px 6% 10px;
}

.page-hero img {
  border-radius: 18px;
  background-color: #d9cfc0;
  width: 100%;
  height: 320px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #efe7da;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
