* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #14171f;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #ffffff;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f1ebe3;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  max-width: 640px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .visual-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-block {
  min-height: 320px;
}

.image-frame {
  width: 100%;
  height: 100%;
  background-color: #d5d2cc;
  overflow: hidden;
  border-radius: 18px;
}

.inline-media {
  height: 260px;
}

.hero {
  padding-top: 60px;
  background: #ffffff;
}

.hero-visual {
  min-height: 380px;
}

.hero-visual.bg-hero {
  background-color: #cfd6df;
  background-image: url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.service-card .image-frame {
  height: 150px;
}

.price {
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1e28;
  color: #ffffff;
  font-size: 0.95rem;
  border: none;
}

.button.secondary {
  background: #ffffff;
  color: #1b1e28;
  border: 1px solid #1b1e28;
}

.button.light {
  background: #e8ded1;
  color: #1b1e28;
}

.bg-studio {
  background-color: #11141b;
  color: #f4f2ee;
  background-image: url("https://images.unsplash.com/photo-1504274066651-8d31a536b11a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio .panel {
  background: rgba(17, 20, 27, 0.78);
  padding: 28px;
  border-radius: 20px;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  max-width: 560px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c6bf;
  font-size: 0.95rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  background: #f4d38a;
  color: #1b1e28;
  border-radius: 999px;
  font-weight: 600;
  z-index: 30;
}

.footer {
  background: #ffffff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #dcd7cf;
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  background: #f1ebe3;
  padding: 18px;
  border-radius: 16px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  max-width: 520px;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
