* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #191716;
  --muted: #5b5552;
  --accent: #8c6ff7;
  --accent-dark: #6f4fe3;
  --paper: #f7f2ee;
  --paper-soft: #fdfaf7;
  --line: #e6dfda;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper-soft);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 60px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
  padding: 24px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 17, 15, 0.08);
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.hero-media img {
  border-radius: 28px;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero-tag {
  position: absolute;
  bottom: -22px;
  left: -14px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.9rem;
  box-shadow: 0 12px 26px rgba(140, 111, 247, 0.25);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: var(--paper);
}

.section-quiet {
  background: #f1ece8;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row .offset-box {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 12px 24px rgba(20, 17, 15, 0.08);
}

.offset-box::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 24px;
  width: 70px;
  height: 70px;
  background: rgba(140, 111, 247, 0.2);
  border-radius: 16px;
  z-index: -1;
}

.image-stack {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack img {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(20, 17, 15, 0.08);
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.highlight-block {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.highlight-block span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.service-item strong {
  font-size: 1rem;
}

.service-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(20, 17, 15, 0.1);
}

.form-wrap label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(20, 17, 15, 0.2);
}

.footer {
  padding: 50px 6vw 70px;
  background: #15110f;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: none;
  z-index: 20;
  box-shadow: 0 14px 28px rgba(20, 17, 15, 0.14);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header {
  padding: 50px 6vw 30px;
}

.page-header h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.page-content {
  padding: 30px 6vw 70px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-box {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 780px) {
  .nav-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tag {
    position: static;
    width: fit-content;
  }
}
