@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5b5f65;
  --accent: #0f4d4d;
  --accent-soft: #e6f2f2;
  --sand: #f7f2eb;
  --rose: #f4e6ea;
  --line: #e4e2df;
  --shadow: 0 24px 50px rgba(15, 25, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.header {
  padding: 28px 6vw 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.main {
  flex: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 60px 6vw;
  align-items: stretch;
}

.split__content,
.split__media {
  flex: 1;
}

.split__content h1,
.split__content h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 16px;
  line-height: 1.15;
}

.split__content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.split__content .inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split__media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split.reverse {
  flex-direction: column-reverse;
}

.split.tone-sand {
  background: var(--sand);
}

.split.tone-rose {
  background: var(--rose);
}

.split.tone-accent {
  background: var(--accent-soft);
}

.split.layered {
  position: relative;
  overflow: hidden;
}

.split.layered::before {
  content: "";
  position: absolute;
  inset: 10% 50% 20% -10%;
  background: rgba(15, 77, 77, 0.08);
  border-radius: 40px;
  z-index: 0;
}

.split.layered .split__content,
.split.layered .split__media {
  position: relative;
  z-index: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  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;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid #d0d7d7;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.badge {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border-radius: 12px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  background: #fff;
}

.service-card img {
  border-radius: 12px;
  box-shadow: none;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d6;
  font-family: inherit;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: #101818;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f3f3f3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 9;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  padding: 50px 6vw 20px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }
}
