@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap");

:root {
  --text: #1f1e1c;
  --muted: #5f5b55;
  --accent: #b85136;
  --accent-dark: #8c3d28;
  --bg: #f6f2ed;
  --bg-light: #fbf8f5;
  --line: #e1d8cf;
  --shadow: rgba(31, 30, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 1px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.section {
  padding: 48px 0;
}

.section--light {
  background: var(--bg-light);
}

.section--layered {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
  border-radius: 24px;
  padding: 36px;
}

.section--image {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split--reverse {
  flex-direction: column-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 32px var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.highlight-link {
  color: var(--accent);
  font-weight: 600;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form label {
  font-weight: 600;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.banner-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.banner-button--accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.inline-quote {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .hero-title {
    font-size: 54px;
  }
}
