:root{
  --bg:#0b0f0d;
  --text:#fff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --accent: #c7a46b;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.top{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0; gap:18px;
}
.brand{ font-weight: 800; letter-spacing:.2px; }
.nav a{
  color: var(--muted);
  text-decoration:none;
  margin-left: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{ color: var(--text); background: rgba(255,255,255,.06); }

.hero{
  height: 110vh; /* extra height makes the parallax obvious */
  position: relative;
  overflow:hidden;
  padding-top: 64px;
}
.parallax{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.parallax__img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 55% 18%; /* face framing */
  transform: translate3d(0,0,0) scale(1.08);
  will-change: transform;
  display:block;
}
.parallax__img--hero{
  object-position: 55% 16%;
}

.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.14));
}
.hero__content{
  position:absolute;
  left:0; right:0;
  bottom: 12%;
  z-index:2;
}
.kicker{
  color: rgba(255,255,255,.70);
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
h1{
  margin:0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.0rem);
  letter-spacing:-0.02em;
}
.cta{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(199,164,107,.78);
  background: rgba(199,164,107,.12);
  color: var(--text);
  text-decoration:none;
  font-weight: 750;
}
.btn:hover{ background: rgba(199,164,107,.18); }
.btn.ghost{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.btn.ghost:hover{ background: rgba(255,255,255,.10); }

.scrollhint{
  position:absolute;
  left:50%;
  bottom: 24px;
  transform: translateX(-50%);
  width:22px; height:38px;
  border:1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  z-index:2;
  opacity: .85;
}
.scrollhint span{
  display:block;
  width:6px; height:6px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  margin: 8px auto 0;
  animation: dot 1.6s infinite;
}
@keyframes dot{
  0%{ transform: translateY(0); opacity:.35; }
  50%{ transform: translateY(12px); opacity:.95; }
  100%{ transform: translateY(0); opacity:.35; }
}

.strip{
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.strip__inner{
  padding: 16px 0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 14px;
}
.chip:hover{ color: var(--text); background: rgba(255,255,255,.06); }

.moment{
  padding: 70px 0 46px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(900px 500px at 20% 20%, rgba(199,164,107,.10), transparent 60%);
}
.moment__inner{ display:grid; gap:16px; }
.moment__frame{
  position:relative;
  height: min(72vh, 720px);
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.parallax--frame{ inset:0; }
.moment__fade{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
}
.moment__text{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding-top: 6px;
}
.moment__label{ color: var(--muted); text-transform: uppercase; letter-spacing:.18em; font-size: 12px; }
.moment__line{ color: rgba(255,255,255,.86); font-size: 16px; }

.section{
  padding: 78px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  margin-bottom: 18px;
}
h2{ margin:0; font-size: 22px; letter-spacing:-.01em; }
.smalllink{ color: var(--muted); font-size: 14px; }
.smalllink:hover{ color: var(--text); }
.embed{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  min-height: 180px;
  display:flex; align-items:center;
}
.embed__placeholder{ color: rgba(255,255,255,.55); }

.form{
  border-top: 1px solid var(--line);
  padding-top: 16px;
  max-width: 840px;
}
.two{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
label{ display:block; margin-bottom: 14px; }
label span{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
input, textarea{
  width:100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 15px;
}
input:focus, textarea:focus{ border-bottom-color: rgba(199,164,107,.75); }

.footnote{ color: rgba(255,255,255,.60); margin-top: 12px; }
.muted{ color: var(--muted); }

.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__inner{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }

@media (max-width: 860px){
  .two{ grid-template-columns: 1fr; }
  .parallax__img{ object-position: 50% 12%; }
  .hero{ height: 105vh; }
  .hero__content{ bottom: 10%; }
  .moment__frame{ height: 58vh; }
}


/* ===== TAURUS SYMBOL BACKGROUND ===== */
.taurus-bg{
  position: fixed;
  left:0;
  right:0;
  bottom:0;
  height:60vh;
  z-index:0;
  pointer-events:none;

  background-image: url("taurus.jpg");
  background-repeat: no-repeat;
  background-position: center 65%;
  background-size: contain;

  opacity: .9;
  filter: brightness(.9) contrast(1.05);

  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 25%,
    rgba(0,0,0,.7) 55%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 25%,
    rgba(0,0,0,.7) 55%,
    rgba(0,0,0,0) 100%
  );
}

/* ensure content sits above */
.section, .hero, .strip, .moment, .footer{
  position: relative;
  z-index: 1;
}


/* ===== Streamlined focus sections ===== */
.center{
  text-align:center;
}

.focus{
  padding: 96px 0;
}

.focusline{
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin: 10px 0 26px;
}

.bigcta{
  display:inline-block;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(199,164,107,.85);
  background: rgba(199,164,107,.18);
  color: #fff;
  text-decoration:none;
}

.bigcta:hover{
  background: rgba(199,164,107,.26);
}

.bigcta.ghost{
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
}

.bigcta.ghost:hover{
  background: rgba(255,255,255,.18);
}

/* tighten visual rhythm */
.section h2{
  font-size: 28px;
}


/* ===== YouTube player ===== */
.videowrap{
  position: relative;
  width: min(520px, 92vw);
  margin: 22px auto 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* Shorts are 9:16 */
.videowrap::before{
  content:"";
  display:block;
  padding-top: 177.78%;
}

.videowrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
