:root {
  --ink: #1a1a1a;
  --muted: #5b6066;
  --mist: #f3f4f6;
  --sand: #efe9e2;
  --dusk: #14151a;
  --accent: #6f6de4;
  --accent-dark: #4b49c8;
  --gold: #b58b5a;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--mist);
}

.hero {
  padding: 40px 6vw 60px;
}

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

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.split .panel.highlight {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.split .panel.highlight::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: rgba(111, 109, 228, 0.2);
  border-radius: 50%;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.gold {
  background: var(--gold);
}

.section {
  padding: 60px 6vw;
}

.section.dark {
  background: var(--dusk);
  color: #f5f5f7;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.section.dark p {
  color: #d7d7db;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(19, 23, 35, 0.08);
}

.card img {
  width: 64px;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
}

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

.split-card .note {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e1e2e6;
}

.quote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.form-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(20, 22, 35, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9dbe0;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  padding: 40px 6vw;
  background: #101116;
  color: #d2d2d8;
}

footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.18);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 60px 6vw 40px;
}

.page-hero h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

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

.service-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e1e3e8;
}

.service-row .row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.service-row .row-header span {
  font-weight: 700;
}

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

.notice {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #f7f7ff;
  border-radius: 12px;
}

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

  .split.reverse {
    flex-direction: row-reverse;
  }

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

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .split-card {
    flex-direction: row;
  }

  .split-card .note {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }

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

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .service-row .row-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
