:root {
  --bg: #0a0612;
  --bg-elevated: #12091c;
  --bg-soft: #1a0f28;
  --plum: #2a1038;
  --plum-deep: #3d1a4a;
  --magenta: #c43b8c;
  --magenta-soft: #a8327a;
  --indigo: #4b3a9a;
  --indigo-soft: #6b5bb5;
  --text: #f5f0ff;
  --text-muted: #b8a8d4;
  --star: #ffffff;
  --border: rgba(196, 59, 140, 0.22);
  --glow: rgba(75, 58, 154, 0.35);
  --radius: 4px;
  --font: "Outfit", system-ui, sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(196, 59, 140, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(75, 58, 154, 0.22), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(42, 16, 56, 0.8), transparent 45%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 28% 42%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 64% 22%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 82% 58%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 45% 78%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 8% 88%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 93% 12%, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0.55;
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--magenta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--indigo-soft);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 6, 18, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 35%, var(--magenta), transparent 55%),
    radial-gradient(circle at 30% 70%, var(--indigo), var(--plum));
  box-shadow: 0 0 12px rgba(196, 59, 140, 0.35);
}

.brand-name {
  font-size: 1rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  margin-inline: auto;
  background: var(--text);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--magenta-soft), var(--indigo));
  box-shadow: 0 8px 28px rgba(75, 58, 154, 0.28);
}

.btn-primary:hover {
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(196, 59, 140, 0.3);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.25) 0 1px, transparent 2px);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.btn-primary:active::after {
  opacity: 1;
  transform: scale(1.4);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--magenta);
  background: rgba(42, 16, 56, 0.5);
}

/* Hero — stacked full-bleed, brand-dominant */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.45);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 18, 0.35) 0%, rgba(10, 6, 18, 0.55) 40%, rgba(10, 6, 18, 0.94) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(196, 59, 140, 0.25), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
  max-width: 38rem;
  animation: riseIn 0.9s ease both;
}

.hero-brand {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero h1 {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 28rem;
}

.hero .lede {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 26rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section-head h2,
.page-header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--text-muted);
}

.page-header {
  padding: 3.5rem 0 1.5rem;
  max-width: 40rem;
}

/* Service strips — not cards-as-default; interaction containers */
.offer-list {
  display: grid;
  gap: 1.5rem;
}

.offer-item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  animation: fadeSlide 0.7s ease both;
}

.offer-item:nth-child(2) { animation-delay: 0.08s; }
.offer-item:nth-child(3) { animation-delay: 0.16s; }
.offer-item:nth-child(4) { animation-delay: 0.24s; }

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.85);
}

.offer-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.offer-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.service-teaser {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.service-teaser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.service-teaser h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.service-teaser p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

/* Evidence / testimonials */
.evidence {
  display: grid;
  gap: 2rem;
}

.evidence blockquote {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 34rem;
}

.evidence blockquote p {
  font-size: 1.2rem;
  font-weight: 450;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--text);
}

.evidence footer {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Process steps */
.process-steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
}

/* Blog */
.blog-list {
  display: grid;
  gap: 2.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-item h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.blog-item h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-item h2 a:hover {
  color: var(--magenta);
}

.blog-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-item p {
  margin: 0;
  color: var(--text-muted);
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
}

/* Pricing */
.price-list {
  display: grid;
  gap: 0;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.price-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.price-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-amount {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.note {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.contact-details p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--text);
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(196, 59, 140, 0.45);
  outline-offset: 1px;
}

.form-field .error {
  color: #f0a0c8;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form-status {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #b8e0c8;
}

.form-status.is-error {
  color: #f0a0c8;
}

/* Prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.feature-list li {
  margin-bottom: 0.35rem;
}

.cta-band {
  margin: 3rem 0 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Detail page */
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 0;
  border-top: 1px solid var(--border);
  background: rgba(18, 9, 28, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-weight: 650;
  margin: 0 0 0.5rem;
}

.footer-brand p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-address {
  max-width: 18rem;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bar {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(18, 9, 28, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 18rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  align-content: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.75rem;
}

.error-page p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* About portrait strip */
.team-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-strip figure {
  margin: 0;
}

.team-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  filter: saturate(0.8);
}

.team-strip figcaption {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team-strip strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Responsive */
@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    background: rgba(10, 6, 18, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.85rem;
  }

  .offer-item,
  .detail-hero,
  .blog-item,
  .contact-layout,
  .footer-grid,
  .service-grid,
  .team-strip {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 5rem;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .hero {
    min-height: 78vh;
  }
}
