/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f3f4f6;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #4b5563;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111827;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #111827;
  border-color: #e5e7eb;
}

.nav-link.active {
  color: #111827;
  border-color: #111827;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  border: none;
}

.nav-cta:hover {
  background: #000000;
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 40%, #f9fafb 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  color: #374151;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-subnote {
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-highlight {
  background: #111827;
  color: #f9fafb;
  padding: 2rem;
  border-radius: 1.25rem;
}

.hero-tag {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero-highlight h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.hero-highlight p {
  margin: 0;
  color: #e5e7eb;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.1s ease;
}

.btn-primary {
  background: #111827;
  color: #f9fafb;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-outline {
  background: transparent;
  color: #111827;
  border-color: #111827;
}

.btn-outline:hover {
  background: #111827;
  color: #f9fafb;
}

.btn-block {
  width: 100%;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.project-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.project-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.project-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.project-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #374151;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.08rem;
  font-size: 0.8rem;
  color: #111827;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-copy h2 {
  margin-bottom: 0.75rem;
}

.contact-copy p {
  color: #374151;
}

.contact-details p {
  margin: 0.2rem 0;
  color: #4b5563;
}

.contact-details a {
  color: #111827;
}

/* Forms */
.contact-form {
  display: block;
  width: 100%;
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #11182710;
}

/* Page hero (services) */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 540px;
  color: #4b5563;
}

/* Services page layout */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 2.5rem;
}

.service-sidebar h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.service-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-nav li {
  margin-bottom: 0.4rem;
}

.service-nav a {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
}

.service-nav a:hover {
  color: #111827;
}

.service-block {
  margin-bottom: 2rem;
}

.service-block h2 {
  margin-bottom: 0.4rem;
}

.service-block p {
  color: #374151;
}

.service-block ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0.75rem;
  color: #4b5563;
}

.service-cta {
  background: #f3f4f6;
  border-radius: 1.1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-left span {
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.footer-right a {
  font-size: 0.8rem;
  color: #6b7280;
  text-decoration: none;
}

.footer-right a:hover {
  color: #111827;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .two-column,
  .contact-grid,
  .service-layout,
  .card-grid,
  .project-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .card-grid,
  .project-grid {
    gap: 1.25rem;
  }

  .nav {
    display: none; /* For now – can be swapped to a mobile menu later */
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .form-row {
    flex-direction: column;
  }

  .header-inner {
    padding: 0.65rem 0;
  }
}


/* MCM hero video + carousel + visual tweaks */

/* Hero video block */
.hero-media-video {
  margin-top: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
  background-color: #020617;
}

.hero-media-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo tweaks */
.site-header {
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  background-color: #ffffff;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  margin-right: 0.6rem;
  border-radius: 0.4rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
  object-fit: contain;
  background-color: #f9fafb;
}

/* Project media + carousel */
.project-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-media {
  margin-bottom: 0.9rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: #020617;
}

.project-media img,
.project-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media-carousel {
  padding: 0.85rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.15), transparent 55%), #020617;
}

.carousel-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.carousel-tab {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  cursor: pointer;
}

.carousel-tab.is-active {
  background: linear-gradient(120deg, #f97316, #ec4899);
  color: #020617;
  border-color: transparent;
}

.carousel-panels {
  position: relative;
}

.carousel-panel {
  display: none;
}

.carousel-panel.is-active {
  display: block;
}

/* Emmy note */
.emmy-note {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 500;
}
.emmy-note strong {
  font-weight: 700;
}

/* Responsive tweaks for project grid */
@media (max-width: 960px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Social media content & continuity */
.social-highlights-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.social-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.social-pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
  white-space: nowrap;
}

.social-note {
  font-size: 0.9rem;
  color: #4b5563;
}
