* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2226;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f2226;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.site-header {
  padding: 22px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 14px;
  color: #4b4f55;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1f2226;
  color: #f7f5f2;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9d4cc;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  background: #1f2226;
  color: #f7f5f2;
  border: none;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
}

.cta-secondary {
  border: 1px solid #1f2226;
  padding: 10px 18px;
  border-radius: 22px;
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.magazine-row {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  align-items: flex-start;
}

.row-left {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.row-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-card {
  background: #e6e1da;
  border-radius: 18px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  background-color: #d6d0c6;
}

.service-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f2226;
}

.section-banner {
  margin-top: 52px;
  border-radius: 24px;
  padding: 36px;
  background-color: #d9d0c4;
  background-size: cover;
  background-position: center;
  color: #1f2226;
}

.banner-studio {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.banner-edit {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.banner-briefing {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.section-banner p {
  max-width: 520px;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.form-panel {
  margin-top: 52px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bd;
  font-size: 14px;
  font-family: inherit;
}

.form-field textarea {
  min-height: 110px;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  margin-top: 70px;
  border-top: 1px solid #d7cfc5;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  margin-top: 40px;
  background: #1f2226;
  color: #f7f5f2;
  padding: 12px 18px;
  border-radius: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2226;
  color: #f7f5f2;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-button {
  background: #f7f5f2;
  color: #1f2226;
  border: none;
  padding: 8px 14px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-button.secondary {
  background: transparent;
  color: #f7f5f2;
  border: 1px solid #f7f5f2;
}

.legal-image {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dcd6cd;
}

.legal-image img {
  width: 100%;
  height: 220px;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: flex-start;
  }
}
