@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --ink: #1e1b16;
  --muted: #5a5247;
  --accent: #c25b3f;
  --accent-dark: #8f3b27;
  --highlight: #efe4d4;
  --shadow: 0 20px 45px rgba(30, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw 10px;
}

.nav .brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.nav .links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav .links a {
  color: var(--ink);
}

.hero-badge {
  background: var(--highlight);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main {
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
}

.split .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.split h1,
.split h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 12px 0 16px;
}

.split h1 {
  font-size: 48px;
  line-height: 1.1;
}

.split h2 {
  font-size: 32px;
}

.split p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.section-layer {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 13px;
}

.service-price {
  font-size: 22px;
  font-weight: 600;
}

.service-meta {
  font-size: 13px;
  color: var(--muted);
}

.testimonial {
  background: #fff7ed;
  padding: 22px;
  border-radius: 18px;
  margin-top: 16px;
}

.grid-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.grid-strip .mini-card {
  flex: 1;
  min-width: 160px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2d7c7;
  font-family: inherit;
  font-size: 14px;
}

.footer {
  background: #1c1914;
  color: #f7f4ef;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f4ef;
  font-size: 14px;
}

.footer .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-wrap {
  padding: 40px 6vw 80px;
  max-width: 900px;
}

.legal-wrap h1 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .split h1 {
    font-size: 36px;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
