* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid #1f1f1f;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f5f2ee;
  border-bottom: 1px solid #dad6d0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c5c5c;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #e6dfd7;
}

.nav-links a:hover {
  background: #d7cec5;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6vw 32px;
  background: #efe8df;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #1f1f1f;
  color: #f5f2ee;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #8b7b6a;
}

.btn:hover {
  background: #000000;
}

.hero-media {
  flex: 1 1 360px;
  background: #d7cec5;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw;
  align-items: stretch;
}

.magazine-row.alt {
  background: #ffffff;
}

.column {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.panel-image {
  background: #d7cec5;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 200px;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #f8f6f2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  background: #d7cec5;
}

.service-price {
  font-weight: 700;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.storyline figure {
  margin: 0;
  background: #e6dfd7;
  border-radius: 16px;
  overflow: hidden;
}

.storyline img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.form-section {
  background: #1f1f1f;
  color: #f5f2ee;
  padding: 48px 6vw;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.form-panel {
  flex: 1 1 320px;
  background: #2b2b2b;
  padding: 24px;
  border-radius: 16px;
}

.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;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #efe8df;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  max-width: 520px;
  font-size: 0.9rem;
  color: #5a5a5a;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #1f1f1f;
  color: #f5f2ee;
  border: none;
  border-radius: 30px;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 90;
}

.sticky-cta:hover {
  background: #000000;
}

.legal-content {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw;
}

.contact-card {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.reference-list {
  font-size: 0.85rem;
  color: #5a5a5a;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: auto;
    right: 20px;
  }

  .main-nav {
    gap: 12px;
  }
}
