@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --bg: #f6f3ef;
  --ink: #1f1d1b;
  --muted: #6f6861;
  --accent: #9a4a2d;
  --accent-dark: #6f2e1b;
  --soft: #efe7dd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  position: relative;
  z-index: 10;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--ink);
  padding: 10px 14px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: 70px;
  right: 6vw;
  background: var(--white);
  border: 1px solid #ddd3c7;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  min-width: 180px;
}

.nav-menu.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 0 6vw 60px;
  gap: 24px;
}

.hero-visual {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 360px;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.hero-visual h1 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  max-width: 520px;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.soft {
  background: var(--soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.lead {
  max-width: 700px;
  font-size: 1.05rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split img {
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.06);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cbbb;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e2d7c9;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
  color: var(--accent-dark);
}

.footer {
  padding: 40px 6vw;
  background: #1b1917;
  color: #d4c8ba;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-mini {
  background: var(--soft);
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grid-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-floating {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  z-index: 12;
}

@media (min-width: 800px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-visual {
    flex: 1.1;
    min-height: 460px;
  }

  .hero-copy {
    flex: 0.9;
    align-self: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-table {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .info-grid {
    display: flex;
    gap: 24px;
  }
}
