:root {
  color-scheme: light;
  --bg: #f5f3ee;
  --surface: #ece9e2;
  --surface-2: #ffffff;
  --text: #11201f;
  --muted: #65716d;
  --line: rgba(17, 32, 31, 0.13);
  --teal: #079496;
  --teal-dark: #02797b;
  --shadow: 0 24px 60px rgba(26, 52, 49, 0.11);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c1110;
  --surface: #141b1a;
  --surface-2: #18201f;
  --text: #f1f3ef;
  --muted: #9ba6a2;
  --line: rgba(235, 242, 239, 0.14);
  --teal: #19aaa9;
  --teal-dark: #3ac1bd;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "DM Sans", sans-serif; transition: background .35s ease, color .35s ease; }
a { color: inherit; }
button { font: inherit; }
.site-header { height: 88px; padding: 16px clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; position: absolute; z-index: 5; width: 100%; }
.brand-mark { width: 58px; height: 58px; display: block; overflow: hidden; background: var(--teal); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.theme-toggle { display: flex; align-items: center; gap: 9px; padding: 8px; color: var(--text); border: 1px solid var(--line); border-radius: 99px; background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(12px); cursor: pointer; }
.theme-icon { width: 17px; height: 17px; display: grid; place-items: center; opacity: .45; transition: opacity .2s; }
.theme-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.sun { opacity: 1; }
[data-theme="dark"] .sun { opacity: .4; }
[data-theme="dark"] .moon { opacity: 1; }
.toggle-track { width: 36px; height: 20px; border-radius: 99px; background: var(--text); padding: 3px; }
.toggle-thumb { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); transition: transform .25s ease; }
[data-theme="dark"] .toggle-thumb { transform: translateX(16px); }
.hero { min-height: 720px; height: 90vh; max-height: 920px; padding: 150px clamp(24px, 8vw, 130px) 80px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 38%, rgba(7,148,150,.14), transparent 26%), radial-gradient(circle at 20% 90%, rgba(7,148,150,.07), transparent 31%); }
.hero::after { content: "VB"; position: absolute; right: -3vw; bottom: -16vw; font: 800 clamp(330px, 45vw, 690px)/.72 "Manrope", sans-serif; letter-spacing: -.12em; color: var(--text); opacity: .022; pointer-events: none; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .17em; font: 700 12px/1 "Manrope", sans-serif; color: var(--teal-dark); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 28px; height: 2px; background: var(--teal); }
.hero h1 { margin: 29px 0 28px; max-width: 900px; font: 500 clamp(62px, 9vw, 132px)/.88 "Manrope", sans-serif; letter-spacing: -.075em; }
.hero h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--teal); }
.hero > p { max-width: 510px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.scroll-cue { position: absolute; bottom: 52px; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; text-decoration: none; }
.scroll-cue svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.directory { padding: 120px clamp(24px, 8vw, 130px) 150px; background: var(--surface); }
.section-heading { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: end; max-width: 1240px; margin: auto; }
.kicker { margin: 0 0 18px; }
.section-heading h2 { margin: 0; font: 600 clamp(38px, 5vw, 68px)/1.04 "Manrope", sans-serif; letter-spacing: -.055em; }
.section-copy { color: var(--muted); line-height: 1.7; max-width: 430px; margin: 0 0 7px auto; }
.filters { max-width: 1240px; margin: 62px auto 32px; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.filter { white-space: nowrap; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); background: transparent; padding: 11px 17px; cursor: pointer; transition: .2s ease; }
.filter span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px; margin-left: 6px; font-size: 11px; background: color-mix(in srgb, var(--text) 8%, transparent); }
.filter:hover { color: var(--text); border-color: var(--muted); }
.filter.active { color: var(--bg); background: var(--text); border-color: var(--text); }
.filter.active span { background: color-mix(in srgb, var(--bg) 15%, transparent); }
.brand-grid { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.brand-card { min-width: 0; border-radius: 4px; overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow); animation: card-in .42s ease both; }
.brand-card.is-hidden { display: none; }
@keyframes card-in { from { opacity: 0; transform: translateY(12px); } }
.card-visual { height: 360px; position: relative; overflow: hidden; display: grid; place-items: center; }
.agency .card-visual { background: #078f91; }
.agency-wordmark { color: white; position: relative; z-index: 2; text-align: left; transform: rotate(-3deg); }
.agency-wordmark span { display: block; font: 400 clamp(24px, 3.2vw, 47px)/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.agency-wordmark strong { font: 800 clamp(49px, 6.7vw, 98px)/.8 "Manrope", sans-serif; letter-spacing: -.08em; }
.shape { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.shape-one { width: 330px; height: 330px; right: -110px; top: -160px; }
.shape-two { width: 180px; height: 180px; left: -70px; bottom: -80px; background: rgba(255,255,255,.04); }
.distribution .card-visual { background: #e8e2d5; color: #152321; }
.distribution-mark { position: relative; z-index: 2; width: min(76%, 410px); }
.distribution-mark span { display: block; margin-bottom: 8px; font: 700 clamp(11px, 1.2vw, 15px)/1 "Manrope", sans-serif; letter-spacing: .28em; color: #078f91; }
.distribution-mark strong { display: block; font: 800 clamp(35px, 4.4vw, 63px)/.92 "Manrope", sans-serif; letter-spacing: -.065em; }
.distribution-mark i { display: block; margin-top: 18px; font: italic 16px/1 Georgia, serif; color: #62706b; }
.distribution-line { position: absolute; display: block; height: 1px; background: rgba(7,143,145,.35); transform: rotate(-32deg); transform-origin: left; }
.line-one { width: 480px; left: -30px; bottom: 45px; }
.line-two { width: 390px; right: -150px; top: 60px; }
.line-three { width: 260px; right: -100px; top: 110px; }
.music .card-visual { background: #171817; }
.music-wordmark { position: relative; z-index: 2; color: white; text-align: right; margin-left: 120px; }
.music-wordmark span { display: block; font: 500 clamp(13px, 1.5vw, 20px)/1 "Manrope", sans-serif; letter-spacing: .35em; }
.music-wordmark strong { display: block; font: 800 clamp(51px, 6vw, 86px)/.95 "Manrope", sans-serif; letter-spacing: -.06em; color: #25afaa; }
.vinyl { position: absolute; left: -75px; width: 300px; height: 300px; border-radius: 50%; border: 44px solid #252826; box-shadow: 0 0 0 1px #363a38, inset 0 0 0 1px #3a3e3c; }
.vinyl::after { content: ""; position: absolute; inset: 54px; border-radius: 50%; border: 1px solid #464a47; }
.vinyl span { position: absolute; inset: 84px; border-radius: 50%; background: #25afaa; }
.wave { position: absolute; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(37,175,170,.18); }
.wave-one { right: -70px; top: -70px; }
.wave-two { right: -130px; top: -130px; width: 370px; height: 370px; }
.card-body { padding: 34px 34px 30px; }
.card-meta { color: var(--teal-dark); text-transform: uppercase; letter-spacing: .13em; font: 700 11px/1 "Manrope", sans-serif; display: flex; align-items: center; gap: 8px; }
.category-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.card-body h3 { margin: 15px 0 13px; font: 650 clamp(27px, 3vw, 38px)/1.12 "Manrope", sans-serif; letter-spacing: -.04em; }
.card-body > p { min-height: 54px; margin: 0 0 30px; color: var(--muted); line-height: 1.6; }
.card-links { border-top: 1px solid var(--line); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.card-links > a { display: flex; gap: 8px; align-items: center; font-weight: 700; text-decoration: none; }
.card-links > a:hover { color: var(--teal-dark); }
.card-links > a svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.coming-soon { color: var(--muted); font-size: 14px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s; }
.socials a:hover { color: white; background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.socials .fill { fill: currentColor; stroke: none; }
.empty-state { max-width: 1240px; margin: 0 auto; text-align: center; padding: 90px 20px; border: 1px dashed var(--line); background: var(--surface-2); }
.empty-state span { color: var(--teal-dark); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 700; }
.empty-state h3 { margin: 15px 0 8px; font: 600 32px "Manrope", sans-serif; }
.empty-state p { color: var(--muted); margin: 0; }
footer { min-height: 240px; padding: 52px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; background: #faf9f6; color: #11201f; border-top: 1px solid rgba(17, 32, 31, 0.08); }
footer img { width: 74px; height: 74px; object-fit: cover; }
footer > a { display: block; width: 74px; height: 74px; }
footer p { margin: 0; font: 400 22px/1.4 Georgia, serif; font-style: italic; text-align: center; }
footer > span { text-align: right; font-size: 13px; opacity: .8; }

@media (max-width: 780px) {
  .site-header { height: 74px; }
  .brand-mark { width: 52px; height: 52px; }
  .hero { min-height: 650px; padding-top: 125px; }
  .hero h1 { font-size: clamp(56px, 17vw, 88px); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-copy { margin: 0; }
  .directory { padding-top: 85px; padding-bottom: 100px; }
  .filters { margin-top: 42px; }
  .brand-grid { grid-template-columns: 1fr; }
  .card-visual { height: 300px; }
  .card-body { padding: 28px 24px 24px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer p, footer > span { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
