/* DJ H.A.L.O. Landing Page — style.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; -webkit-font-smoothing: antialiased; }

:root {
  --red:       #c0392b;
  --red-hover: #d44637;
  --red-dim:   rgba(192,57,43,0.15);
  --black:     #0a0908;
  --surface:   #111110;
  --surface2:  #1a1916;
  --border:    #2a2825;
  --text:      #e8e4dc;
  --muted:     #8a8880;
  --faint:     #454340;
  --font-d:    'Cormorant', Georgia, serif;
  --font-b:    'Switzer', Inter, sans-serif;
  --ease:      cubic-bezier(0.16,1,0.3,1);
}

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--red-dim); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* LABEL */
.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

/* TOPBAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,9,8,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar__name {
  font-family: var(--font-d);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
}
.topbar__btn {
  padding: 0.5rem 1.25rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: background 200ms var(--ease);
}
.topbar__btn:hover { background: var(--red-hover); }

/* HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 60px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(105deg, rgba(10,9,8,1) 0%, rgba(10,9,8,0.92) 45%, rgba(10,9,8,0.3) 100%);
}

/* Hero photo fills right side */
.hero__photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%);
}

.hero__content {
  position: relative; z-index: 1;
  padding: 4rem 1.5rem 4rem 5vw;
  max-width: 620px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

.hero__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 2rem;
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.hero__cta:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.hero__stars {
  display: flex; align-items: center; gap: 0.6rem;
}
.stars { color: var(--red); letter-spacing: 0.08em; }
.stars-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 100dvh;
  }
  .hero__photo {
    position: absolute; inset: 0; width: 100%;
  }
  .hero__photo::after {
    background: linear-gradient(to top, var(--black) 30%, rgba(10,9,8,0.6) 100%);
  }
  .hero__overlay {
    background: rgba(10,9,8,0.55);
  }
  .hero__content {
    padding: 7rem 1.5rem 4rem;
    max-width: 100%;
  }
  .hero__sub { max-width: 100%; }
}

/* TRUST STRIP */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem;
}
.trust__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.25rem;
}
.trust__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.trust__item svg { color: var(--red); flex-shrink: 0; }
.trust__divider { width: 1px; height: 28px; background: var(--border); }
@media (max-width: 600px) { .trust__divider { display: none; } }

/* VIDEO */
.video-section {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  text-align: center;
}
.video-section__inner { max-width: 900px; margin: 0 auto; }
.video-section__headline {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 2.5rem;
}
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* PRICING */
.pricing {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--surface);
}
.pricing__inner { max-width: 1100px; margin: 0 auto; }
.pricing__headline {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 3rem;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
}

.price-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 200ms, box-shadow 200ms;
}
.price-card:hover { border-color: var(--red); box-shadow: 0 4px 24px rgba(192,57,43,0.12); }
.price-card--featured { border-color: var(--red); background: var(--surface2); }

.price-card__tag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}
.price-card__name {
  font-family: var(--font-d);
  font-size: 1.6rem; font-weight: 600;
  margin-top: 1.25rem; margin-bottom: 0.25rem;
}
.price-card__price {
  font-family: var(--font-d);
  font-size: 2.8rem; font-weight: 700;
  color: var(--red); line-height: 1;
  margin-bottom: 0.25rem;
}
.price-card__duration {
  font-size: 0.75rem; color: var(--faint);
  letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.price-card__list {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-card__list li {
  font-size: 0.875rem; color: var(--muted);
  padding-left: 1.1rem; position: relative;
}
.price-card__list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}
.price-card__btn {
  display: block; text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.btn--red { background: var(--red); color: #fff; border: 2px solid var(--red); }
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }

.pricing__other {
  font-size: 0.875rem; color: var(--muted); line-height: 1.7;
}
.pricing__other strong { color: var(--text); }
.pricing__other a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* REVIEWS */
.reviews {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
}
.reviews__inner { max-width: 1100px; margin: 0 auto; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.rcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 200ms;
}
.rcard:hover { border-color: var(--red); }
.rcard__stars { color: var(--red); letter-spacing: 0.1em; font-size: 0.9rem; }
.rcard__text {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.75; font-style: italic; flex: 1;
}
.rcard__author { font-size: 0.75rem; color: var(--faint); font-weight: 600; letter-spacing: 0.06em; }
.reviews__link { text-align: center; }
.reviews__link a {
  font-size: 0.875rem; color: var(--red);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 200ms;
}
.reviews__link a:hover { color: var(--red-hover); }

/* BOOK */
.book {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--surface);
}
.book__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 860px) {
  .book__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.book__headline {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1rem;
}
.book__sub {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 2rem;
}
.book__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.book__link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted);
  transition: color 200ms;
}
.book__link:hover { color: var(--red); }
.book__link svg { flex-shrink: 0; }

/* Form */
.book__form {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.fgroup { display: flex; flex-direction: column; gap: 0.4rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .frow { grid-template-columns: 1fr; } }
.flabel {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.finput {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: 0.9rem; color: var(--text);
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none;
}
.finput::placeholder { color: var(--faint); }
.finput:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-dim); }
.ftextarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%;
  padding: 0.95rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.submit-btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.form-note {
  font-size: 0.75rem; color: var(--faint);
  text-align: center; line-height: 1.5;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.footer__name {
  font-family: var(--font-d);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--red);
}
.footer__tag {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--faint);
}
.footer__links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.35rem 1.5rem;
}
.footer__links a {
  font-size: 0.8rem; color: var(--faint);
  transition: color 200ms;
}
.footer__links a:hover { color: var(--red); }
.footer__copy {
  font-size: 0.75rem; color: var(--faint); line-height: 1.6;
}
.footer__copy a { color: var(--faint); transition: color 200ms; }
.footer__copy a:hover { color: var(--red); }
