* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1a1a;
  --muted: #5b5656;
  --rose: #c2476f;
  --sand: #f8f3f0;
  --pearl: #fffefe;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #ffffff;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  background: var(--sand);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: var(--rose);
  color: white;
}

.button.ghost {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--pearl);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.storyline {
  background: #111010;
  color: #f2ece8;
}

.storyline .muted {
  color: #d5cfcf;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.quote {
  font-size: 1.1rem;
  border-left: 3px solid var(--rose);
  padding-left: 16px;
}

.pricing {
  background: #f7ecf0;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-shell {
  background: #fff6f8;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dcd2d2;
  font-size: 1rem;
  background: white;
}

.inline-cta {
  color: var(--rose);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--rose);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  background: #141313;
  color: #efe9e6;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #bfb7b7;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 8px 14px;
}

.legal-page {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-wrap,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-wrap > * {
    flex: 1;
  }

  .cards,
  .price-grid,
  .gallery,
  .image-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .price-grid .price-card,
  .gallery .gallery-item,
  .image-strip .card {
    flex: 1;
    min-width: 240px;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
