/* ============================================================
   LOOK BUSY – One-Pager additional styles
   ============================================================ */

/* ---------- Hero scroll hint ---------- */
.hero-scroll-hint-unused {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.35);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Section title (page-level headings inside sections) ---------- */
.op-section-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.op-section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ---------- Studio section ---------- */
.op-section-studio {
  padding: 0;
}
.op-studio-banner {
  position: relative;
  height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.op-studio-banner-bg {
  position: absolute;
  inset: 0;
}
.op-studio-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.op-studio-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(9,9,11,.65) 100%);
}
.op-studio-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 1.5rem;
}

/* ---------- Legal area ---------- */
.op-legal-area {
  background: #060608;
  padding-block: 5rem;
  border-top: 1px solid var(--border);
}
.op-legal-header {
  text-align: center;
  margin-bottom: 3rem;
}
.op-legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.5);
}
.op-legal-intro {
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
}
.op-legal-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ---------- Legal accordion sections ---------- */
.legal-section {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-section:last-child { border-bottom: none; }

.legal-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: background var(--transition);
}
.legal-toggle:hover,
.legal-section.open .legal-toggle {
  background: rgba(255,255,255,.04);
}
.legal-toggle-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-d);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.legal-section.open .legal-toggle-label { color: #fff; }
.toggle-icon {
  font-family: var(--font-b);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.legal-section.open .toggle-icon { color: var(--purple); }

.legal-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-prose {
  padding: 2rem 1.75rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  line-height: 1.85;
}
.legal-prose h3 {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2rem;
  margin-bottom: .6rem;
}
.legal-prose h3:first-child { margin-top: 0; }
.legal-prose p { margin-bottom: .75rem; }
.legal-prose strong { color: rgba(255,255,255,.7); font-weight: 600; }
.legal-prose a { color: var(--purple); transition: color var(--transition); }
.legal-prose a:hover { color: var(--pink); }

.legal-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.legal-list li::before {
  content: '–';
  color: var(--purple);
  margin-right: .5rem;
}

/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, box-shadow .3s;
  z-index: 200;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover { box-shadow: 0 0 20px rgba(247,37,133,.5); }
