* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #10141a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #0f4c5c;
  text-decoration: none;
}

a:focus {
  outline: 2px solid #0f4c5c;
  outline-offset: 2px;
}

.site-header {
  padding: 28px 6vw 10px;
  background: #f7f4ef;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
  text-transform: lowercase;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.95rem;
  color: #4a4f57;
}

.ad-label {
  font-size: 0.85rem;
  background: #e9dccb;
  padding: 6px 12px;
  border-radius: 999px;
  color: #3a2d1f;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1d8cc;
}

.main-nav a {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: #0f4c5c;
}

.page-wrap {
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  gap: 5vw;
  padding: 60px 0;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.compact {
  padding: 40px 0;
}

.split .content {
  flex: 1;
  min-width: 260px;
}

.split .media {
  flex: 1;
  min-width: 260px;
  background: #ddd4c8;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: #3e434a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #0f4c5c;
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: #f1c76a;
  color: #2b2520;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e4ecec;
  font-size: 0.85rem;
  color: #325c64;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.service-card h3 {
  margin: 0 0 6px;
}

.service-card span {
  font-weight: 600;
  color: #0f4c5c;
  white-space: nowrap;
}

.service-card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
  background: #d4d9d2;
}

.highlight-block {
  background: #0f4c5c;
  color: #f8f3ea;
  border-radius: 18px;
  padding: 28px;
}

.highlight-block a {
  color: #f8f3ea;
}

.bg-soundfield {
  background-image: url("https://images.unsplash.com/photo-1483000805330-4eaf0a0d82da?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-install {
  background-image: url("https://images.unsplash.com/photo-1560330196-5c63edf7f168?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-acoustic {
  background-image: url("https://images.unsplash.com/photo-1506704888326-3b8834edb40a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c4bc;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-fields.is-locked {
  opacity: 0.6;
  pointer-events: none;
}

.footer {
  background: #10141a;
  color: #f6f2ea;
  padding: 40px 6vw;
}

.footer a {
  color: #f6f2ea;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #d2cbc1;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  font-size: 0.95rem;
  color: #4b5057;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
