:root {
  --eclipse: #07070a;
  --eclipse-soft: #101018;
  --surface: #16161f;
  --surface-lift: #1e1e2a;
  --halo: rgba(196, 196, 204, 0.12);
  --lunar: #c8c8d0;
  --lunar-bright: #e8e8ee;
  --violet: #8f739e;
  --violet-muted: #6a5578;
  --crimson: #b84a5a;
  --crimson-soft: #9a3d4c;
  --text: #d8d8e0;
  --text-dim: #9a9aa8;
  --line: rgba(200, 200, 208, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(143, 115, 158, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(184, 74, 90, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200, 200, 208, 0.05), transparent 45%),
    var(--eclipse);
}

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

a {
  color: var(--lunar-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fff;
}

.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(12px);
  background: rgba(7, 7, 10, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lunar-bright);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

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

.site-nav a:hover {
  color: var(--lunar-bright);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(184, 74, 90, 0.45);
  color: var(--lunar-bright) !important;
  background: radial-gradient(circle at 50% 120%, rgba(184, 74, 90, 0.35), transparent 55%),
    var(--surface);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--lunar);
  margin: 0.35rem 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--eclipse-soft);
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn--bloom {
  position: relative;
  color: var(--lunar-bright);
  border-color: rgba(200, 200, 208, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 74, 90, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(143, 115, 158, 0.25) 0%, transparent 70%),
    var(--surface-lift);
  box-shadow:
    0 0 0 1px rgba(200, 200, 208, 0.08),
    0 0 24px rgba(143, 115, 158, 0.18);
}

.btn--bloom:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(200, 200, 208, 0.16),
    0 0 36px rgba(184, 74, 90, 0.28),
    0 0 60px rgba(143, 115, 158, 0.15);
  color: #fff;
  text-decoration: none;
}

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

.btn--ghost:hover {
  border-color: rgba(200, 200, 208, 0.35);
  color: var(--lunar-bright);
  text-decoration: none;
}

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

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.75);
  animation: hero-rise 1.4s ease-out both;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.35) 0%, rgba(7, 7, 10, 0.55) 45%, rgba(7, 7, 10, 0.92) 100%),
    radial-gradient(circle at 70% 40%, rgba(143, 115, 158, 0.2), transparent 40%);
}

.hero__content {
  padding: 6rem 0 4.5rem;
  max-width: 38rem;
  animation: fade-up 0.9s ease 0.2s both;
}

.hero__brand {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--lunar-bright);
  margin: 0 0 1rem;
  text-shadow: 0 0 40px rgba(143, 115, 158, 0.25);
}

.hero__lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.85rem;
}

.hero__support {
  margin: 0 0 1.75rem;
  color: var(--text-dim);
  max-width: 32rem;
}

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

@keyframes hero-rise {
  from {
    transform: scale(1.06);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes halo-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

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

.section--tight {
  padding: 3rem 0;
}

.section__halo {
  position: relative;
}

.section__halo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(480px, 70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--violet), var(--crimson), transparent);
  opacity: 0.55;
  animation: halo-pulse 5s ease-in-out infinite;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--lunar-bright);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin: 0 0 0.85rem;
}

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

.lede {
  color: var(--text-dim);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(143, 115, 158, 0.12), transparent 55%),
    var(--eclipse);
}

.page-hero p {
  color: var(--text-dim);
  max-width: 38rem;
}

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

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.offer-row:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9);
}

.offer-meta {
  font-size: 0.88rem;
  color: var(--violet);
  margin: 0 0 0.35rem;
}

.offer-row p {
  color: var(--text-dim);
  margin: 0 0 0.85rem;
}

@media (max-width: 720px) {
  .offer-row {
    grid-template-columns: 1fr;
  }
}

/* Evidence / quotes */
.quote-block {
  margin: 0;
  padding: 2rem 0 0;
}

.quote-block blockquote {
  margin: 0 0 1.5rem;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 2px solid var(--crimson-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--lunar);
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-style: normal;
  color: var(--text-dim);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--halo), 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-tier {
  background: var(--eclipse-soft);
  padding: 1.75rem 1.4rem 2rem;
  position: relative;
}

.price-tier::after {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 40%;
  background: radial-gradient(ellipse at bottom, rgba(143, 115, 158, 0.12), transparent 70%);
  pointer-events: none;
}

.price-tier__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: var(--lunar-bright);
}

.price-tier__amount {
  font-size: 1.1rem;
  color: var(--crimson);
  margin: 0 0 1rem;
}

.price-tier ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-tier li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .price-tiers {
    grid-template-columns: 1fr;
  }
}

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

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

.blog-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-item time {
  font-size: 0.85rem;
  color: var(--violet);
}

.blog-item h2 {
  font-size: 1.5rem;
  margin: 0.35rem 0 0.5rem;
}

.blog-item h2 a {
  text-decoration: none;
  color: inherit;
}

.blog-item h2 a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .blog-item {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: 42rem;
}

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

.prose h2 {
  margin-top: 2rem;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 1.5rem 0 2rem;
  filter: brightness(0.85);
}

/* Forms */
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--lunar);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--lunar-bright);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(143, 115, 158, 0.55);
  box-shadow: 0 0 0 3px rgba(143, 115, 158, 0.15);
}

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

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(143, 115, 158, 0.5);
  color: var(--lunar-bright);
}

.form-status.is-error {
  border-color: rgba(184, 74, 90, 0.55);
  color: #e07a88;
}

.contact-aside {
  color: var(--text-dim);
}

.contact-aside p {
  margin: 0.35rem 0;
}

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

.step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--violet);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

/* Legal */
.legal {
  max-width: 44rem;
  padding-bottom: 4rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal p,
.legal li {
  color: var(--text-dim);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: var(--eclipse-soft);
  padding: 3rem 0 1.5rem;
}

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

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.35rem;
  color: var(--lunar-bright);
}

.footer-tag {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.92rem;
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 0.75rem;
}

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

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

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

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

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(16, 16, 24, 0.96);
  border-top: 1px solid rgba(143, 115, 158, 0.35);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 0;
}

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

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

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

.cookie-error {
  width: 100%;
  color: #e07a88;
  font-size: 0.85rem;
  margin: 0;
}

/* 404 */
.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  margin-bottom: 0.5rem;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
