@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: #3b2a20;
  --muted: #7a5a47;
  --soft: #f8f2eb;
  --accent: #b17252;
  --accent-dark: #8f5a3d;
  --cream: #f3e7dc;
  --stone: #e7d5c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
}

.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section-texture {
  background-image: url("../images/texture.svg");
  background-size: cover;
}

.section-accent {
  background: var(--cream);
}

.section-dark {
  background: var(--accent-dark);
  color: #fff2e8;
}

.section-dark a {
  color: #fff2e8;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(59, 42, 32, 0.12);
  position: relative;
}

.offset-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(183, 122, 93, 0.25);
  border-radius: 16px;
  pointer-events: none;
}

.offset-card.shift-right {
  margin-left: 6vw;
}

.offset-card.shift-left {
  margin-right: 6vw;
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 500;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-light {
  border-color: #fff2e8;
  color: #fff2e8;
  background: transparent;
}

.hero {
  padding-top: 30px;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(59, 42, 32, 0.12);
}

.hero-card .headline {
  font-size: 40px;
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.floating-label {
  position: absolute;
  right: 6vw;
  top: -20px;
  background: var(--accent);
  color: #fff2e8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(59, 42, 32, 0.1);
}

.mini-card img {
  border-radius: 12px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.step span {
  font-weight: 600;
  color: var(--accent-dark);
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(59, 42, 32, 0.12);
}

.price {
  font-size: 24px;
  font-weight: 600;
}

.form-shell {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(59, 42, 32, 0.14);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background: #fff;
}

.inline-testimonial {
  font-style: italic;
  margin: 20px 0 0;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 500;
}

.footer {
  padding: 40px 6vw 60px;
  background: #2f1f17;
  color: #f8f2eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--stone);
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(59, 42, 32, 0.12);
}

.split.asym {
  align-items: stretch;
}

.split.asym > div {
  flex: 1;
}

.floating-block {
  background: var(--accent);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  position: relative;
  margin-left: -4vw;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

.legal p {
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(59, 42, 32, 0.12);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .offset-stack {
    flex-direction: row;
  }

  .mini-cards {
    flex-direction: row;
  }

  .steps {
    flex-direction: row;
  }

  .prices {
    flex-direction: row;
  }

  .section-grid {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
  }

  .service-item {
    flex: 1;
  }
}
