*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f2f3f5;
  --card: #ffffff;
  --border: #ddd;
  --ink: #050505;
  --secondary: #65676b;
  --accent: #1877F2;
  --accent-light: #e7f0fd;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --feed-width: 680px;
  --card-radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--feed-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: var(--bg);
  color: var(--ink);
}

.nav-links a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* ── PAGE WRAPPER ── */
.feed {
  max-width: var(--feed-width);
  margin: 0 auto;
  padding: 24px 16px 64px;
}

/* ── PROFILE / HOME ── */
.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.profile-cover { overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

.profile-cover-text {
  position: absolute;
  bottom: 16px;
  left: 120px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-identity {
  padding: 0 20px 20px;
  position: relative;
}

.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--border);
  position: absolute;
  top: -44px;
  left: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  background: #1877F2;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name-row {
  padding-top: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.profile-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.profile-handle {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 3px;
}

.profile-contact-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.profile-contact-btn:hover { opacity: 0.88; }

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 16px;
}

.about-section h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-bio {
  font-size: 15px;
  color: #1c1e21;
  line-height: 1.65;
  margin-bottom: 20px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1c1e21;
}

.about-row svg {
  flex-shrink: 0;
  color: var(--secondary);
}

.about-row strong { font-weight: 600; }
.about-row span { color: var(--secondary); }

/* ── SERVICES CARD ── */
.services-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 16px;
}

.services-card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.service-tile {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
  display: block;
}

.service-tile:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

.service-tile:hover .service-tile-name { color: var(--accent); }

.service-tile-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-tile-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}

.service-tile-desc {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 3px;
  line-height: 1.4;
}

/* ── PROJECT CARD (shared across TV/Film, Podcast, Live) ── */
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
}

.card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.card-avatar-placeholder {
  font-size: 18px;
}

.card-meta { flex: 1; }

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.card-platform {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 2px;
}

.card-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Platform badge colors */
.badge-netflix { background: #ffeaea; color: #E50914; }
.badge-appletv { background: #f0f0f0; color: #1d1d1f; }
.badge-youtube { background: #fff0f0; color: #FF0000; }
.badge-spotify { background: #edfaed; color: #1DB954; }
.badge-amazon  { background: #fff8e7; color: #FF9900; }
.badge-hbo     { background: #f0eaff; color: #5822b4; }
.badge-default { background: var(--bg); color: var(--secondary); }

/* ── VIDEO EMBED ── */
.card-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.card-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CARD BODY ── */
.card-body {
  padding: 12px 16px 16px;
}

.card-description {
  font-size: 14px;
  color: #1c1e21;
  line-height: 1.55;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-header p {
  font-size: 14px;
  color: var(--secondary);
  margin-top: 4px;
}

/* ── CONTACT PAGE ── */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  margin-bottom: 16px;
}

.contact-card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 24px;
  line-height: 1.55;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.submit-btn:hover { opacity: 0.88; }

.contact-links-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 20px;
}

.contact-links-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: color 0.15s;
}

.contact-link-row:last-child { border-bottom: none; }
.contact-link-row:hover { color: var(--accent); }

.contact-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: var(--secondary);
}

/* ── RESPONSIVE ── */
@media (max-width: 540px) {
  .nav-inner { height: 50px; }
  .nav-logo { font-size: 15px; }
  .nav-links a { font-size: 12px; padding: 5px 7px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .profile-cover-text { display: none; }
}
