* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #6a3c2c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  background: #f7f4f1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: #5a4b43;
}

.nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.8rem;
  background: #efe8e1;
  padding: 6px 10px;
  border-radius: 20px;
  color: #4b3a32;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw 64px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 380px;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #6a3c2c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #fff;
  color: #6a3c2c;
  border: 1px solid #6a3c2c;
}

.btn:hover {
  filter: brightness(0.95);
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
  background: #e3d7cd;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 240px;
}

.section {
  padding: 56px 6vw;
}

.backdrop-studio {
  background-color: #efe8e1;
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.alt {
  background: #efe8e1;
}

.backdrop-gallery {
  background-color: #e8dfd6;
  background-image: url("https://images.pexels.com/photos/12148587/pexels-photo-12148587.jpeg");
  background-size: cover;
  background-position: center;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -24px;
}

.media-card {
  flex: 1 1 320px;
  background: #d7ccc4;
  border-radius: 28px;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stack-block {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .service-media {
  background: #d9cec6;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #6a3c2c;
}

.form-shell {
  background: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.9rem;
  color: #4a3c36;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8b9af;
  font-size: 0.95rem;
  width: 100%;
}

.form-shell button {
  align-self: flex-start;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-tile {
  flex: 1 1 220px;
  background: #cfc3bb;
  border-radius: 22px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.footer {
  margin-top: auto;
  background: #1f1c1a;
  color: #f3ede7;
  padding: 38px 6vw;
}

.footer a {
  color: #f5caa5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-block {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8c7bc;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #6a3c2c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  color: #2a2320;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.contact-panel {
  background: #fff;
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.note-bar {
  background: #ede2d8;
  padding: 18px 22px;
  border-radius: 20px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-block {
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
