@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Inter:wght@300;400;600&display=swap");

:root {
  --ink: #1f1f1b;
  --ink-soft: #3a3a33;
  --cream: #faf7f1;
  --sand: #f1ece2;
  --rust: #b24c38;
  --olive: #5f6a4f;
  --fog: #e6e1d7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 20px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  color: var(--rust);
  border: 1px solid var(--rust);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  box-shadow: 0 10px 24px rgba(31, 31, 27, 0.2);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
}

.hero-visual {
  background: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  border-radius: 28px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}

.hero-visual .overlay {
  background: rgba(18, 18, 15, 0.5);
  padding: 18px 22px;
  border-radius: 20px;
  max-width: 380px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 12px;
}

.hero p {
  margin: 0;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-split .split-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-split .split-item.reverse {
  flex-direction: column-reverse;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 22px rgba(31, 31, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset {
  margin-left: 6vw;
}

.band {
  background: var(--sand);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  font-size: 1rem;
  border-left: 3px solid var(--rust);
  padding-left: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 16px;
}

.form-panel {
  background: var(--fog);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d1c7;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.inline-cta {
  color: var(--rust);
  font-weight: 600;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(31, 31, 27, 0.18);
  display: none;
  z-index: 10;
  gap: 12px;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.content {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    min-height: 420px;
    flex: 1;
  }

  .hero-copy {
    flex: 1;
  }

  .section-split .split-item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .section-split .split-item.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-row {
    flex: 1 1 240px;
  }

  .band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-panel {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  form {
    flex: 1;
  }
}
