@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --ink: #1f1b16;
  --muted: #6d6258;
  --accent: #c57a45;
  --accent-dark: #9a5b30;
  --sand: #efe4d8;
  --stone: #d2c2b1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: relative;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  padding: 30px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--white);
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(31, 27, 22, 0.12);
  position: relative;
  margin-right: 6vw;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 18px;
  width: 120px;
  height: 120px;
  background: var(--sand);
  border-radius: 28px;
  z-index: -1;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  width: fit-content;
}

.hero-image {
  margin-left: 4vw;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 18px;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.card img {
  height: 180px;
  object-fit: cover;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  margin-left: 6vw;
}

.offset-block.reverse {
  margin-left: 0;
  margin-right: 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chip {
  background: var(--stone);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  width: fit-content;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

button {
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1b16;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--white);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.subtle {
  color: var(--muted);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img:nth-child(2) {
  margin-left: 14vw;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-main {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .grid-cards {
    flex-direction: row;
  }

  .grid-cards .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 45%;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1;
  }
}
