/* B-Sharp — Global Styles */
:root {
  --yellow: #F8BD26;
  --dark: #081A22;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f6f4;
  --gray: #888;
  --gray-light: #e8e8e6;
  --text-dark: #0d0d0d;
  --text-muted: #666;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text-dark); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 66px;
  background: var(--dark);
  border-bottom: 1px solid rgba(248,189,38,.15);
  transition: background .3s;
}
nav.scrolled { background: rgba(8,26,34,.98); }

nav .logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.3rem; font-weight: 900; letter-spacing: -.03em;
  color: var(--white);
}
nav .logo img { height: 38px; width: 38px; object-fit: contain; }
nav .logo .sharp { color: var(--yellow); }

nav ul {
  list-style: none;
  display: flex; gap: .15rem; align-items: center;
}
nav ul li a {
  display: block;
  padding: .4rem .9rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s, background .2s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta:hover { opacity: .9; }

/* ── LANGUAGE TOGGLE ── */
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.65);
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .28rem .7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  margin-left: auto;
  margin-right: .5rem;
}
.lang-btn:hover { border-color: var(--yellow); color: var(--yellow); }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(248,189,38,.25);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(248,189,38,.4); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,.2);
}
.btn-outline-dark:hover { border-color: var(--text-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── SECTION LABELS ── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.label-yellow { color: var(--yellow); }
.label-dark { color: var(--text-muted); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-top: .9rem;
}
.section-sub-white { color: rgba(255,255,255,.6); }

/* ── DARK SECTIONS ── */
.dark-section {
  background: var(--dark);
  color: var(--white);
}
.black-section {
  background: var(--black);
  color: var(--white);
}
.yellow-section {
  background: var(--yellow);
  color: var(--dark);
}

/* ── GRID HELPERS ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.pad { padding: 6rem 0; }
.pad-sm { padding: 4rem 0; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer .f-logo { font-size: 1.1rem; font-weight: 900; letter-spacing: -.02em; }
footer .f-logo span { color: var(--yellow); }
footer p { font-size: .8rem; color: rgba(255,255,255,.35); }
footer .f-socials { display: flex; gap: .6rem; }
footer .f-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  transition: border-color .2s, color .2s;
}
footer .f-socials a:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── MOBILE ── */
@media (max-width: 800px) {
  nav ul {
    display: none;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(248,189,38,.15);
  }
  nav ul.open { display: flex; }
  .nav-toggle { display: flex; }
  .pad { padding: 4rem 0; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }

  /* BeConnected business card */
  .bc-bracket-grid { grid-template-columns: 1fr !important; }
  .bc-email { font-size: clamp(1.4rem, 7vw, 2.5rem) !important; }

  /* BeConnected links */
  .links-grid { grid-template-columns: 1fr !important; }

  /* BeMusical instruments */
  .instruments-grid { grid-template-columns: 1fr 1fr !important; }

  /* BeVisual filters — allow scroll */
  .filters { flex-wrap: nowrap !important; overflow-x: auto; justify-content: flex-start !important; padding-left: 1.25rem !important; }
  .filters::-webkit-scrollbar { display: none; }

  /* CV photo smaller */
  .cv-photo { width: 100px !important; height: 100px !important; }

  /* General sections */
  .pad { padding: 3rem 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }

  /* Testimonial mobile */
  .testimonial-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .t-photo-second { display: none; }
  .t-photos { grid-template-columns: 1fr !important; }
  .t-photo-main { margin-top: 0; aspect-ratio: 3/2; }
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--off-white);
  padding: 7rem 0;
  color: var(--text-dark);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

/* Client header row */
.t-client-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.t-client-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid rgba(184,144,42,.35);
  background: #c49a2e;
  flex-shrink: 0;
  padding: 2px;
}
.t-client-logo-fallback {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #c49a2e;
  border: 2px solid rgba(184,144,42,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.t-client-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text-dark);
}
.t-client-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* Main grid */
.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Photos */
.t-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  align-items: start;
}
.t-photo-main {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 2/3;
  margin-top: 2rem;
}
.t-photo-second {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 2/3;
}

/* Content */
.t-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: .75rem 0 1.25rem;
}
.t-headline span { color: var(--yellow); }
.t-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.t-quote-icon {
  width: 22px; height: 16px;
  color: var(--yellow);
  opacity: .7;
  margin-bottom: .65rem;
}
.testimonial-content blockquote {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  border-left: 2px solid var(--yellow);
  padding-left: 1.25rem;
}
.t-author-name {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text-dark);
}
.t-author-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
  margin-bottom: 1.75rem;
}
.t-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.t-ext-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
  transition: color .2s;
}
.t-ext-link:hover { color: var(--dark); }
