@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #1c1a19;
  --muted: #5a5754;
  --paper: #f7f2ec;
  --accent: #c15b3d;
  --accent-dark: #8e3e2a;
  --sage: #cfd7cd;
  --shadow: rgba(28, 26, 25, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 20px 8px;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 20px 64px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: -40px;
  width: 58%;
  height: 80%;
  background: var(--sage);
  z-index: -1;
  border-bottom-left-radius: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: 36px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.button.alt {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button.ghost {
  background: #fff;
  border: 1px solid #ddd2c6;
  color: var(--ink);
}

.section {
  padding: 56px 20px;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section.offset {
  margin-top: -40px;
  padding-top: 80px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 8px 20px var(--shadow);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.list li {
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.testimonial {
  font-style: italic;
  background: #fff7f1;
  border-left: 4px solid var(--accent);
  padding: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid #e4d8cc;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6c9bc;
  font-family: inherit;
  font-size: 15px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 32px 20px 80px;
  background: #1f1b18;
  color: #f7f2ec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 20px;
  box-shadow: 0 -10px 25px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thin {
  font-weight: 300;
}

.page-hero {
  padding: 40px 20px 32px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  h1 {
    font-size: 46px;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-stack {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }
}
