@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #151515;
  --muted: #5b5b5b;
  --accent: #c64a62;
  --accent-soft: #f5d9df;
  --sand: #f7f3ef;
  --night: #1f1b1d;
  --line: #e6e0da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.floating-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 74, 98, 0.08), transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
  z-index: 1;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: min(520px, 100%);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateX(12px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: var(--night);
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.night {
  background: var(--night);
  color: #fff;
}

.section.night .muted {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.panel.offset {
  transform: translateY(-18px);
}

.panel.dark {
  background: #272327;
  color: #fff;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 20;
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw 60px;
  background: #121012;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small {
  font-size: 0.9rem;
}

.page-hero {
  padding: 36px 6vw 40px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .image-stack {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
  }
}
