*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f5f4f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 8px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #4d4d4d;
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 6vw 20px;
  gap: 32px;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 320px;
  background: #dbe2e8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-card {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
  margin-left: 10%;
  max-width: 340px;
}

.primary-button,
.secondary-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.secondary-button {
  background: transparent;
  color: #1b1b1b;
}

.ghost-link {
  border: none;
  background: transparent;
  color: #1b1b1b;
  padding: 0;
  font-weight: 600;
}

.section {
  padding: 56px 6vw;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1b1b1b;
  color: #ffffff;
}

.bg-flow {
  background: linear-gradient(rgba(245, 244, 242, 0.9), rgba(245, 244, 242, 0.9)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio {
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-calm {
  background: linear-gradient(rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.88)),
    url("https://images.unsplash.com/photo-1517263904808-5dc91e3e7044?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1 1 300px;
  min-width: 260px;
}

.asym-block.offset {
  margin-top: -36px;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f1efe9;
  border: 1px solid #d7d2c9;
}

.image-frame {
  background: #e3e7ea;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-step {
  font-weight: 700;
  border-radius: 50%;
  background: #1b1b1b;
  color: #ffffff;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-image {
  background: #d9e1e8;
  border-radius: 14px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 180px;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border-left: 4px solid #1b1b1b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #ffffff;
  font-weight: 600;
  z-index: 50;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #0f0f0f;
  color: #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.legal {
  font-size: 0.85rem;
  color: #bdbdbd;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.notice {
  background: #efe9ff;
  color: #342452;
  padding: 18px 20px;
  border-radius: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  border-bottom: 1px solid #e2e2e2;
  padding: 12px 8px;
  text-align: left;
}

@media (max-width: 860px) {
  .hero-card {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
