* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #2b5b4c;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5a5a;
  max-width: 330px;
}

.nav-toggle {
  border: 1px solid #1b1b1b;
  background: transparent;
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-panel {
  margin-top: 18px;
  display: none;
}

.nav-panel.open {
  display: flex;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 20px 6vw 40px;
}

.hero-text {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-top: 30px;
}

.hero-text::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: #f2d6b1;
  z-index: -1;
  border-radius: 28px;
}

.hero-media {
  flex: 1 1 420px;
  background: #dbe9e0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: #e4f0ea;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-button {
  background: #2b5b4c;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-secondary {
  border: 1px solid #2b5b4c;
  background: transparent;
  color: #2b5b4c;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #ffffff;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 380px;
  background: #f1e6d7;
  padding: 12px;
  border-radius: 24px;
}

.split-media img {
  border-radius: 18px;
  width: 100%;
  height: 320px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fdfbf7;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #dfe7da;
}

.image-frame {
  background: #dfe7da;
  border-radius: 20px;
  overflow: hidden;
}

.background-panel {
  background-color: #d9e6de;
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 36px;
  color: #ffffff;
  position: relative;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 28px;
  z-index: 0;
}

.background-panel .panel-content {
  position: relative;
  z-index: 1;
}

.price-tag {
  font-weight: 700;
  color: #2b5b4c;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f2a15b;
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 20;
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.info-block {
  flex: 1 1 260px;
  background: #e9f1ec;
  padding: 24px;
  border-radius: 20px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

footer {
  padding: 40px 6vw 60px;
  background: #1f2a24;
  color: #f6f2ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #f6f2ee;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1b1b;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2b5b4c;
  color: #ffffff;
}

.cookie-reject {
  background: #e2e2e2;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.references {
  font-size: 0.9rem;
  color: #d9d9d9;
}

@media (max-width: 820px) {
  .hero-text::after {
    display: none;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
  }
}
