@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #151616;
  --muted: #5a5f63;
  --accent: #0f62fe;
  --accent-dark: #0b47b7;
  --sand: #f4f1ed;
  --fog: #eef1f3;
  --night: #0e1114;
  --rose: #f7e6e1;
  --lime: #e5f2d7;
  --shadow: 0 18px 40px rgba(15, 18, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 8px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 8vw 60px;
  background: var(--fog);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.kicker {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  width: min(560px, 100%);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.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;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cta-link {
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: underline;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 8vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.offset {
  transform: translateX(0);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dfe4ea;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d7dde2;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.service-option input {
  margin-top: 4px;
}

.service-option.active {
  border-color: var(--accent);
  transform: translateX(6px);
}

label span {
  display: block;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6dc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 8vw;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #c8d1d7;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-grid {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .service-options {
    flex-direction: row;
  }

  .service-option {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .panel {
    flex: 1;
  }

  .offset {
    transform: translateX(40px);
  }
}
