:root {
  --eclipse: #07070a;
  --eclipse-lift: #101018;
  --halo: rgba(196, 196, 212, 0.08);
  --silver: #c4c4d4;
  --silver-soft: #9a9aad;
  --violet: #6b4c7a;
  --violet-glow: rgba(107, 76, 122, 0.35);
  --crimson: #8b3a4a;
  --crimson-soft: #a85c6a;
  --petal: #d4a0aa;
  --text: #e8e6ef;
  --muted: #a8a6b8;
  --line: rgba(196, 196, 212, 0.14);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(107, 76, 122, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(139, 58, 74, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(196, 196, 212, 0.05), transparent 45%),
    var(--eclipse);
}

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

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

a:hover {
  color: var(--silver);
}

.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;
}

.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;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  text-decoration: none;
}

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

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

.site-nav a:hover,
.site-nav a.nav-cta {
  color: var(--silver);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--violet);
  box-shadow: 0 0 0 4px rgba(107, 76, 122, 0.15);
}

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

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--silver);
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(10, 10, 16, 0.97);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

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

.btn-bloom {
  position: relative;
  color: var(--text);
  background: linear-gradient(160deg, var(--crimson), #5c2430 60%, var(--violet));
  box-shadow:
    0 0 0 1px rgba(212, 160, 170, 0.25),
    0 0 0 6px rgba(139, 58, 74, 0.12),
    0 0 0 14px rgba(107, 76, 122, 0.08);
}

.btn-bloom:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(212, 160, 170, 0.4),
    0 0 0 8px rgba(139, 58, 74, 0.18),
    0 0 0 18px rgba(107, 76, 122, 0.1);
}

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

.btn-ghost:hover {
  border-color: var(--silver-soft);
  color: #fff;
}

.hero-eclipse {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-eclipse__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.7) contrast(1.05);
  animation: drift 28s ease-in-out infinite alternate;
}

.hero-eclipse__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 35%, rgba(196, 196, 212, 0.18), transparent 28%),
    radial-gradient(circle at 68% 35%, rgba(107, 76, 122, 0.28), transparent 42%),
    linear-gradient(90deg, rgba(7, 7, 10, 0.94) 0%, rgba(7, 7, 10, 0.72) 42%, rgba(7, 7, 10, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 7, 10, 0.92), transparent 45%);
}

.hero-eclipse__content {
  padding: 6rem 0 4.5rem;
  max-width: 36rem;
  animation: rise 1s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--silver);
  margin: 0 0 1rem;
  text-shadow: 0 0 40px rgba(107, 76, 122, 0.35);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.12rem;
}

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

@keyframes drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

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

@keyframes haloPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 76, 122, 0.0), 0 0 24px rgba(139, 58, 74, 0.08); }
  50% { box-shadow: 0 0 0 1px rgba(196, 196, 212, 0.08), 0 0 36px rgba(107, 76, 122, 0.18); }
}

.section {
  padding: 4.5rem 0;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--silver);
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--muted);
}

.halo-panel {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107, 76, 122, 0.18), transparent 50%),
    var(--eclipse-lift);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(196, 196, 212, 0.06);
  animation: haloPulse 7s ease-in-out infinite;
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
}

.primary-offer__body {
  padding: 2.25rem;
}

.primary-offer__body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0 0 0.85rem;
  color: var(--silver);
}

.primary-offer__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85);
}

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

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.offer-item {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(16, 16, 24, 0.95), rgba(10, 10, 14, 0.95));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 8px rgba(107, 76, 122, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.offer-item:hover {
  border-color: rgba(168, 92, 106, 0.45);
  box-shadow: 0 0 0 10px rgba(139, 58, 74, 0.08);
}

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.8) saturate(0.8);
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--silver);
}

.offer-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.quote {
  padding: 1.5rem;
  border-left: 2px solid var(--crimson-soft);
  background: rgba(16, 16, 24, 0.65);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--text);
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.75rem;
  color: var(--silver);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--silver);
  font-size: 1.8rem;
  margin: 2rem 0 0.75rem;
}

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

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

.service-grid,
.blog-grid,
.price-grid {
  display: grid;
  gap: 1.35rem;
}

.service-grid,
.blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .service-grid,
  .blog-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--eclipse-lift);
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.3s ease;
}

.media-card:hover {
  border-color: rgba(107, 76, 122, 0.55);
  box-shadow: 0 0 0 10px rgba(107, 76, 122, 0.08);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.75);
}

.media-card .pad {
  padding: 1.25rem 1.35rem 1.5rem;
}

.media-card h2,
.media-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  color: var(--silver);
  font-size: 1.5rem;
}

.media-card p {
  margin: 0;
  color: var(--muted);
}

.price-tier {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 76, 122, 0.16), transparent 55%),
    var(--eclipse-lift);
}

.price-tier.is-featured {
  border-color: rgba(168, 92, 106, 0.5);
  box-shadow:
    0 0 0 1px rgba(139, 58, 74, 0.25),
    0 0 0 10px rgba(139, 58, 74, 0.08);
}

.price-tier h2 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--silver);
  font-size: 1.7rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--petal);
  margin: 0.5rem 0;
}

.price-tier ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-note {
  color: var(--silver-soft);
  font-size: 0.88rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.5rem;
  border: 1px solid var(--line);
  background: rgba(16, 16, 24, 0.7);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--crimson-soft);
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.7);
  color: var(--text);
  font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(107, 76, 122, 0.2);
}

.field-error {
  color: var(--petal);
  font-size: 0.85rem;
  min-height: 1.1em;
}

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

.form-status.is-success {
  display: block;
  border-color: rgba(107, 76, 122, 0.5);
  color: var(--silver);
}

.form-status.is-error {
  display: block;
  border-color: rgba(139, 58, 74, 0.55);
  color: var(--petal);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 8, 0.9);
  padding-top: 3rem;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--silver);
  margin: 0 0 0.35rem;
}

.footer-tag,
.footer-meta {
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--silver);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--silver-soft);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem 0;
  background: rgba(10, 10, 16, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner[hidden] {
  display: none !important;
}

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

.cookie-inner p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  font-size: 0.95rem;
}

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

.cookie-error {
  width: 100%;
  color: var(--petal);
  margin: 0;
}

.not-found {
  min-height: 60vh;
  display: grid;
  align-content: center;
  text-align: center;
  padding: 4rem 0;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  margin: 0;
  color: var(--silver);
}

.meta-line {
  color: var(--silver-soft);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.7);
  margin-bottom: 0.85rem;
}

.team-card h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--silver);
}

.team-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

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