* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1a19;
  --muted: #5c5754;
  --rose: #7a2e37;
  --mist: #f5f1ee;
  --cream: #fff8f2;
  --charcoal: #2a2321;
  --accent: #b46b7b;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--rose);
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #ffffff;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #e0d7d1;
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--mist);
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: var(--charcoal);
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1458538977777-0549b2370168?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  padding: 80px 6vw;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--rose);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.muted {
  background: var(--mist);
}

.section.dark {
  background: var(--charcoal);
  color: #ffffff;
}

.section-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1705338670422-01133208eab9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1723391962154-8a2b6299bc09?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1621814374283-57cc5d0d39c2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1535683577427-740aaac4ec25?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.backdrop-panel {
  background: rgba(20, 17, 15, 0.72);
  padding: 24px;
  border-radius: 12px;
  max-width: 600px;
}

.story-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #e6ded8;
  border-radius: 14px;
  overflow: hidden;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-cards .card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pill {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-radius: 12px;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrapper {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfc2ba;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta button {
  pointer-events: auto;
  background: var(--accent);
}

footer {
  padding: 40px 6vw;
  background: #14110f;
  color: #f5efea;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

footer .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 60px 6vw;
  background: var(--mist);
}

.simple-layout {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  max-width: 460px;
}

@media (max-width: 880px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 6vw;
  }
}
