@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1c2333;
  --muted: #5b6474;
  --accent: #1f6feb;
  --accent-dark: #144ea6;
  --sun: #f7c948;
  --blush: #f7e8e3;
  --mist: #eef3f7;
  --mint: #e4f5ef;
  --deep: #0f172a;
  --border: #d9e1ec;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.sidebar {
  background: var(--deep);
  color: #fff;
  padding: 28px 22px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.brand span {
  color: var(--sun);
}

.nav {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav .cta-link {
  background: var(--sun);
  color: var(--deep);
  font-weight: 600;
}

.content {
  padding: 28px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  padding: 28px;
  border-radius: 22px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.section.light {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.section.accent {
  background: var(--mint);
}

.section.blush {
  background: var(--blush);
}

.section h1,
.section h2,
.section h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.section h1 {
  font-size: 2.2rem;
}

.section h2 {
  font-size: 1.7rem;
}

.section p {
  color: var(--muted);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gap-sm {
  gap: 12px;
}

.align-start {
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.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;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button.sun {
  background: var(--sun);
  color: var(--deep);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--deep);
  color: #fff;
  border: none;
}

.card.highlight p {
  color: rgba(255, 255, 255, 0.75);
}

.quote {
  font-style: italic;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row .button {
  align-self: flex-start;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--mist);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 250px;
    min-height: 100vh;
    position: relative;
  }

  .content {
    padding: 40px 50px 70px;
  }

  .section {
    padding: 36px;
  }

  .flex-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .sticky-cta {
    max-width: 240px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
