:root {
  --ink: #25152f;
  --forest: #391747;
  --moss: #8b5a9d;
  --cream: #f3e9f7;
  --paper: #fcf9fd;
  --gold: #ed4da8;
  --line: rgba(243, 233, 247, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 77, 168, .17), transparent 30%),
    radial-gradient(circle at 85% 58%, rgba(178, 140, 220, .13), transparent 32%),
    var(--forest);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }
.hero {
  min-height: 82vh;
  padding: 0 clamp(24px, 6vw, 100px);
  overflow: hidden;
}
nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Libre Caslon Display", serif;
  font-size: 12px;
  letter-spacing: 0;
}
.contact-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.nav-actions { display: flex; align-items: center; gap: 26px; }
.youtube-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.youtube-icon {
  width: 22px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  color: var(--cream);
  background: #d93025;
  font-size: 8px;
}
.hero-content {
  min-height: calc(82vh - 92px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}
.copy { padding: 70px 0 90px; position: relative; z-index: 2; }
.eyebrow, .section-label {
  color: #d8c4e0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
h1, h2 { font-family: "Libre Caslon Display", serif; font-weight: 400; }
h1 {
  max-width: 760px;
  margin: 20px 0 28px;
  font-size: clamp(55px, 7.4vw, 112px);
  line-height: .97;
  letter-spacing: -.035em;
}
h1 em { color: var(--gold); font-weight: 400; }
.intro {
  max-width: 610px;
  color: #dfd1e5;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  color: var(--ink);
  background: var(--cream);
  font-size: 13px;
  font-weight: 700;
}
.button-youtube .youtube-icon { color: white; }
.email-button {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.email-button span { color: var(--gold); margin-left: 6px; }
.direct-email {
  margin-top: 20px;
  color: #cbb5d4;
  font-size: 12px;
}
.direct-email a {
  color: var(--cream);
  border-bottom: 1px solid rgba(237, 77, 168, .8);
}
.visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 38px;
  background: linear-gradient(145deg, #4c205b 0%, #16091c 100%);
  box-shadow: 0 28px 80px rgba(18, 6, 25, .38);
  isolation: isolate;
}
.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(31, 9, 38, .04) 35%, rgba(22, 5, 28, .82) 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #16091c;
}
.visual .halo,
.visual .sun,
.visual .book,
.visual .heart-line { display: none; }
.halo {
  position: absolute;
  border: 1px solid rgba(243, 233, 247, .12);
  border-radius: 50%;
}
.halo-one { width: 530px; height: 530px; top: 18px; }
.halo-two { width: 400px; height: 400px; top: 83px; }
.sun {
  position: absolute;
  top: 125px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 85px rgba(237, 77, 168, .2);
}
.book {
  position: absolute;
  top: 280px;
  width: 42%;
  height: 165px;
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(18, 6, 25, .2);
}
.left-page { left: 8%; transform: skewY(9deg); border-radius: 5px 0 55% 5px; }
.right-page { right: 8%; transform: skewY(-9deg); border-radius: 0 5px 5px 55%; }
.book i {
  display: block;
  width: 68%;
  margin: 24px auto;
  border-top: 1px solid rgba(37, 21, 47, .18);
}
.heart-line {
  position: absolute;
  top: 335px;
  left: 17%;
  right: 17%;
  height: 55px;
  background: linear-gradient(135deg, transparent 44%, var(--gold) 45% 49%, transparent 50%) 0 0/51px 55px repeat-x;
}
blockquote {
  position: relative;
  z-index: 2;
  margin: 0 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(243, 233, 247, .35);
  text-align: center;
  color: var(--cream);
  font-family: "Libre Caslon Display", serif;
  font-size: 21px;
  line-height: 1.45;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
blockquote cite {
  display: block;
  margin-top: 12px;
  color: #cbb5d4;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.coming {
  padding: 80px clamp(24px, 6vw, 100px) 95px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(237, 77, 168, .045), transparent 42%),
    var(--cream);
}
.coming .section-label { color: var(--moss); text-align: center; }
.coming-grid {
  max-width: 1400px;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(37, 21, 47, .18);
}
.coming article {
  padding: 30px 30px 10px;
  border-right: 1px solid rgba(37, 21, 47, .18);
}
.coming article:last-child { border-right: 0; }
.coming article > span { color: var(--gold); font-size: 11px; }
.coming h2 { margin: 35px 0 13px; font-size: 31px; }
.coming article p { color: #685b70; font-size: 14px; line-height: 1.65; }
footer {
  padding: 38px clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;
  background: var(--ink);
  font-size: 12px;
}
footer div { display: flex; flex-direction: column; gap: 4px; }
footer strong { letter-spacing: .15em; }
footer span { color: #cbb5d4; }
footer .footer-center {
  align-items: center;
  gap: 8px;
  text-align: center;
}
footer .footer-center > a { color: var(--gold); }
footer .visitor-count {
  color: #cbb5d4;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
footer .visitor-count span {
  color: #f1d8f2;
  font-variant-numeric: tabular-nums;
}
footer p { margin: 0; text-align: right; color: #cbb5d4; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .copy { padding-bottom: 0; }
  .visual { min-height: 0; }
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
  .coming article:nth-child(2) { border-right: 0; }
  .coming article:nth-child(-n+2) { border-bottom: 1px solid rgba(37, 21, 47, .18); }
}
@media (max-width: 580px) {
  nav { height: 76px; }
  .brand { max-width: 250px; font-size: 10px; }
  .brand-mark { flex: 0 0 auto; }
  .contact-link { font-size: 11px; }
  .nav-actions { gap: 12px; }
  .youtube-link { font-size: 0; }
  .youtube-link .youtube-icon { width: 25px; height: 18px; }
  .hero-content { gap: 0; }
  .copy { padding-top: 60px; }
  .hero-buttons { align-items: flex-start; flex-direction: column; }
  .visual { min-height: 0; }
  .halo-one { width: 390px; height: 390px; top: 30px; }
  .halo-two { width: 290px; height: 290px; top: 80px; }
  .sun { top: 115px; width: 130px; height: 130px; }
  .book { top: 245px; height: 125px; }
  .heart-line { top: 280px; }
  .coming-grid { grid-template-columns: 1fr; }
  .coming article { border-right: 0; border-bottom: 1px solid rgba(37, 21, 47, .18); }
  footer { grid-template-columns: 1fr; }
  footer .footer-center { align-items: flex-start; text-align: left; }
  footer p { text-align: left; }
}
