* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #5b5b5f;
  --accent: #8f4bd6;
  --accent-dark: #6e35b2;
  --sand: #f6f1ee;
  --rose: #fbe7ef;
  --slate: #22242a;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 1rem;
  border-bottom: 1px solid #eee;
}

.top-nav__brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.top-nav__links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.top-nav__links a:hover {
  border-color: var(--accent);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 6vw;
}

.split-section--muted {
  background: var(--sand);
}

.split-section--rose {
  background: var(--rose);
}

.split-section--dark {
  background: var(--slate);
  color: var(--white);
}

.split-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.split-section__content h1,
.split-section__content h2,
.split-section__content h3 {
  font-weight: 700;
}

.split-section__content p {
  color: var(--muted);
}

.split-section--dark .split-section__content p {
  color: #d4d4d9;
}

.split-section__content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.split-section__content h2 {
  font-size: 2rem;
}

.split-section__content h3 {
  font-size: 1.3rem;
}

.split-section__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -0.8rem;
  border: 2px solid var(--accent);
  z-index: -1;
}

.split-section--dark .image-frame {
  background: #2f3138;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--light {
  background: var(--white);
  color: var(--slate);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(143, 75, 214, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card h4 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-row img {
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.form-shell {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-shell label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d8d8dd;
  font-size: 1rem;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 6vw;
  background: #15151a;
  color: #d2d2d8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #d2d2d8;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer__note {
  font-size: 0.85rem;
  color: #a0a0a7;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sticky-cta a {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 12;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.policy-body {
  max-width: 900px;
  margin: 0 auto;
}

.policy-body h2 {
  margin-top: 2rem;
}

.policy-body p {
  margin-top: 0.8rem;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-section__content,
  .split-section__visual {
    flex: 1;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
  }
}
