@font-face {
  font-family: "Literata";
  font-style: normal;
  font-weight: 400;
  src: local("Literata"), local("Georgia");
}

:root {
  --text: #1b1a17;
  --muted: #5b5248;
  --accent: #b04b6b;
  --accent-dark: #7c2f48;
  --light: #f7f3ef;
  --mid: #ede3dc;
  --dark: #1f1712;
  --highlight: #f5d2c9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Literata", "Times New Roman", serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: rgba(247, 243, 239, 0.9);
  position: relative;
  z-index: 3;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 15px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 6% 72px;
  background: linear-gradient(120deg, #f7efe9 0%, #f2d6d7 100%);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6%;
}

.section.alt {
  background: var(--mid);
}

.section.dark {
  background: var(--dark);
  color: #fef7f3;
}

.section.dark a {
  color: #f5d2c9;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--muted);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eaded6;
}

.price {
  font-size: 22px;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(27, 26, 23, 0.92);
  color: #fff;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.sticky-cta a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.form-section {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbcfc7;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 6%;
  background: #15110d;
  color: #f7efe9;
}

.footer a {
  color: #f5d2c9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent-dark);
  color: #fff;
}

@media (min-width: 860px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1;
    min-width: 240px;
  }
}
