* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #4c4c4c;
  max-width: 280px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe9e3;
}

.nav-links a:hover {
  background: #e4dcd4;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 36px 0 56px;
}

.hero-copy,
.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 360px;
  background-color: #2a2a2a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1b1b1b;
  color: #f7f4f1;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #efe9e3;
  color: #1b1b1b;
}

.btn:hover {
  filter: brightness(0.95);
}

.split-section {
  padding: 56px 0;
}

.bg-soundscape {
  background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4f1;
  position: relative;
}

.bg-soundscape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.bg-soundscape .container {
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media {
  background-color: #e2d7cf;
  border-radius: 16px;
  overflow: hidden;
}

.media.empty {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9cfc6;
  color: #5a4f46;
  font-weight: 600;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #6b5f55;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.process-item {
  flex: 1 1 220px;
  background: #efe9e3;
  border-radius: 12px;
  padding: 16px;
}

.form-section {
  background: #1b1b1b;
  color: #f7f4f1;
  border-radius: 20px;
  padding: 28px;
}

.form-section label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
}

.form-section button {
  width: 100%;
}

.testimonial {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  margin-top: 12px;
}

.highlight {
  background: #efe9e3;
  padding: 20px;
  border-radius: 12px;
}

.footer {
  padding: 40px 0;
  font-size: 0.9rem;
  color: #4c4c4c;
}

.footer a {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #f7f4f1;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  color: #f7f4f1;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
}

.page-hero {
  padding: 34px 0 24px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.legal-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  margin-top: 18px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .media {
  flex: 1 1 260px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
