@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #1f1d1a;
  --muted: #6b655e;
  --sand: #f4f0ea;
  --cream: #fbf8f3;
  --accent: #8a6b4f;
  --accent-dark: #5f4734;
  --olive: #59604a;
  --line: #e5ded3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta p {
  font-size: 0.9rem;
  color: var(--muted);
}

.btn-primary,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: linear-gradient(120deg, rgba(31, 29, 26, 0.85), rgba(31, 29, 26, 0.2)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: #f7f1e8;
}

.hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: #f0e7da;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .image-block {
  flex: 1 1 280px;
  position: relative;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.overlay-badge {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.card .price {
  color: var(--accent);
  font-weight: 600;
}

.callout {
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 8px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.seasonal {
  background: linear-gradient(90deg, #f6efe5, #fdfaf6);
  position: relative;
  overflow: hidden;
}

.seasonal::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(138, 107, 79, 0.12);
  border-radius: 50%;
}

.form-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--cream);
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.form-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  flex: 1 1 240px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 32px 8vw;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--sand);
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.details-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.details-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.service-line span {
  color: var(--muted);
}

.thanks-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sticky-cta {
    position: static;
  }
}
