@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 {
  --ink: #1f2a32;
  --muted: #5d6a73;
  --soft: #f3f5f6;
  --accent: #1d5d6a;
  --accent-2: #f2b643;
  --paper: #ffffff;
  --line: #d9e2e6;
  --shadow: 0 12px 30px rgba(31, 42, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.side-nav {
  background: var(--soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.nav-meta {
  font-size: 12px;
  color: var(--muted);
}

.content {
  flex: 1;
}

.section {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--soft);
}

.section.dark {
  background: #1b2d33;
  color: #f4f8f9;
}

.section.accent {
  background: #e6f0f1;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0;
}

.section-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  max-width: 620px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.button.alt {
  background: var(--accent-2);
  color: #1b1b1b;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card img {
  border-radius: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  min-width: 140px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-weight: 700;
  font-size: 20px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.price-card.highlight {
  background: #1d5d6a;
  color: #fff;
}

.price-card.highlight .button {
  background: #fff;
  color: #1d5d6a;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-panel textarea {
  min-height: 96px;
  resize: vertical;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.service-option input {
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  border: 1px solid var(--line);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq details {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.footer {
  background: #121a1f;
  color: #e4eef1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e4eef1;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 24px 0;
}

.address-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .side-nav {
    width: 260px;
    border-right: 1px solid var(--line);
    border-bottom: none;
    min-height: 100vh;
    position: relative;
  }

  .content {
    width: calc(100% - 260px);
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .media-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .form-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-panel .field {
    flex: 1 1 240px;
  }

  .form-panel .field.full {
    flex: 1 1 100%;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
