* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f8f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  background: #f1ebe5;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  background: #d8cfc7;
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 40px 8vw 80px;
  background: #efe6dd;
}

.hero-text {
  flex: 1;
  padding-top: 30px;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  max-width: 480px;
  margin: 0 0 24px;
}

.hero-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
}

.image-wrap {
  background: #d6c8bc;
  padding: 12px;
}

.image-wrap img {
  width: 100%;
  height: auto;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: #1f1f1f;
  color: #f8f4f0;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #1f1f1f;
}

.section {
  padding: 70px 8vw;
}

.section.light {
  background: #faf7f3;
}

.section.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4f0;
  position: relative;
}

.section.bg-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.section.bg-studio .content {
  position: relative;
  z-index: 1;
}

.split-block {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-left: -60px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-image {
  background: #e3d7cd;
  padding: 8px;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 600;
}

.inline-note {
  font-size: 14px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #f3ebe4;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfc3b9;
  font-size: 14px;
  border-radius: 6px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.footer {
  background: #1f1f1f;
  color: #f8f4f0;
  padding: 50px 8vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.disclaimer {
  font-size: 12px;
  max-width: 700px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-page {
  padding: 60px 8vw 90px;
  background: #faf7f3;
}

.simple-page h1 {
  font-size: 36px;
  margin-bottom: 18px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-box {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.text-link {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero,
  .split-block {
    flex-direction: column;
  }

  .offset-card {
    margin-left: 0;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 10px;
  }
}
