:root {
  --bg: #120717;
  --bg-soft: #24102d;
  --panel: rgba(255, 247, 238, 0.08);
  --panel-strong: rgba(255, 247, 238, 0.13);
  --line: rgba(255, 255, 255, 0.12);
  --plum: #6d35a5;
  --plum-bright: #9e63ee;
  --wine: #3a1138;
  --gold: #f3bf58;
  --cream: #fff7ee;
  --rose: #f4d8ed;
  --text: #fdf8f3;
  --muted: rgba(253, 248, 243, 0.72);
  --shadow: 0 30px 70px rgba(5, 0, 8, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: min(1180px, calc(100vw - 2rem));
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(158, 99, 238, 0.28), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(243, 191, 88, 0.18), transparent 24%),
    linear-gradient(135deg, #0d0412 0%, #22102b 42%, #100611 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--gold);
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 85%);
}

.site-header,
.hero,
.section,
.site-footer,
.value-strip {
  width: var(--content);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  margin-top: 0.5rem;
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(14, 7, 19, 0.62);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 1rem;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdfa, #f6ede3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 18px rgba(8, 3, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(8, 3, 16, 0.14));
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.brand-copy strong {
  font-size: 0.94rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.75rem;
}

.brand-tagline {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1.02rem !important;
  font-style: italic;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  margin-right: 0.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.desktop-only {
  margin-right: 0.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  background: linear-gradient(135deg, var(--gold), #ffd68c);
  color: #220c1b;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(243, 191, 88, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(243, 191, 88, 0.28);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  padding: 4.5rem 0 2.75rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.spotlight-copy h2,
.contact-copy h2,
.visual-card-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.25rem, 6vw, 6.2rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.spotlight-copy p,
.contact-copy p,
.visual-card-body p,
.sale-card p,
.info-card p,
.timeline-step p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  font-size: 1.03rem;
  max-width: 60ch;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.85rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.65;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--plum-bright));
  box-shadow: 0 0 18px rgba(158, 99, 238, 0.55);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(20, 10, 27, 0.9);
  box-shadow: var(--shadow);
}

.visual-card-main img {
  width: 100%;
  object-fit: contain;
  background: rgba(9, 3, 14, 0.7);
}

.visual-card-body {
  padding: 1.5rem;
}

.visual-card-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.9rem;
}

.visual-detail-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.3rem;
}

.visual-detail-list div {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-detail-list span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.55rem;
}

.visual-detail-list strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-kicker {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}

.visual-shop a,
.text-link {
  color: var(--gold);
  display: inline-flex;
  margin-top: 0.85rem;
  font-weight: 600;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  padding-bottom: 1rem;
}

.value-strip div {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--rose);
  text-align: center;
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 4.25rem 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.spotlight-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-top: 0;
}

.card-grid,
.sales-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.sale-card,
.mini-panel,
.timeline-step,
.lead-form,
.contact-aside {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(22, 10, 28, 0.82);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.4rem;
}

.card-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-card h3,
.timeline-step h3,
.sale-card h3,
.contact-aside h3 {
  margin: 0;
  font-size: 1.2rem;
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.spotlight-panel {
  display: grid;
  gap: 1rem;
}

.mini-panel {
  padding: 1.3rem;
}

.mini-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.mini-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
}

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

.timeline-step {
  padding: 1.4rem;
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sales-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.sale-card {
  padding: 1.45rem;
}

.sale-card.featured {
  background:
    linear-gradient(135deg, rgba(109, 53, 165, 0.35), rgba(243, 191, 88, 0.12)),
    rgba(23, 11, 29, 0.85);
}

.status-pill.muted {
  background: rgba(255, 255, 255, 0.07);
  color: var(--rose);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-aside {
  padding: 1.4rem;
  margin-top: 1.5rem;
}

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

.lead-form label,
.lead-form legend {
  color: var(--cream);
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(253, 248, 243, 0.48);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(243, 191, 88, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 191, 88, 0.12);
}

.lead-form fieldset {
  grid-column: 1 / -1;
  border: 0;
  margin: 0;
  padding: 0;
}

.check-option {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 1rem 0 0;
}

.check-option input {
  width: auto;
  margin: 0;
}

.full-span {
  grid-column: 1 / -1;
}

.lead-form .button {
  width: fit-content;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 3rem;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.site-footer p {
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  justify-content: flex-end;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .spotlight,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .timeline,
  .sales-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .value-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0.8rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-only {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0 1rem 1rem;
  }

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

  .hero {
    padding-top: 3.25rem;
  }

  .hero-points,
  .lead-form,
  .services-grid,
  .timeline,
  .sales-grid,
  .value-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .lead-form .button {
    width: 100%;
  }

  .site-footer {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .site-nav a {
    transition: none;
  }
}
