*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1a1d;
  --muted: #6a5f65;
  --accent: #c63f5a;
  --accent-soft: #f4d7dc;
  --bg: #f7f3f5;
  --bg-deep: #ebe2e6;
  --border: #dfd4d8;
  --shadow: 0 24px 60px rgba(28, 18, 23, 0.15);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header {
  padding: 28px 6vw 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 40px 6vw 70px;
  background: linear-gradient(120deg, #f4dfe5, #f9f6f8);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20% -20% auto auto;
  width: 320px;
  height: 320px;
  background: #ffd7df;
  border-radius: 40% 60% 60% 40%;
  opacity: 0.5;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  box-shadow: var(--shadow);
  width: min(440px, 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0;
  line-height: 1.1;
}

.hero p {
  max-width: 520px;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.alt {
  background: var(--bg-deep);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.service-card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px dashed var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1d141a;
  color: #f6eef1;
}

.footer a {
  color: #f6eef1;
  text-decoration: underline;
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.hero-inline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.floating-note {
  position: absolute;
  top: -18px;
  right: 8%;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.thin-section {
  padding: 30px 6vw;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 780px;
}

.hero-banner {
  padding: 40px 6vw 20px;
  background: #f3dce2;
}

.hero-banner h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.service-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 860px) {
  .site-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .asym-wrap,
  .section-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner {
    gap: 40px;
  }

  .asym-wrap {
    align-items: flex-start;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-cols {
    flex-direction: row;
    justify-content: space-between;
  }

  .mini-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }

  .contact-list {
    flex-direction: row;
    gap: 24px;
  }
}
