/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #000;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 1.5rem 4rem;
  }
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  width: 280px;
  display: flex;
  flex-direction: column;
}

.logo-surfside {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 30px;
  display: flex;
  justify-content: space-between;
  line-height: 1;
}

.logo-productions {
  color: #3B82F6;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  line-height: 1;
  margin-top: 8px;
}

.logo-subtitle {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  line-height: 1;
  margin-top: 8px;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #60A5FA;
}

.main-nav a.active {
  border-bottom: 2px solid #3B82F6;
  padding-bottom: 4px;
}

/* Hero Sections */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-color: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 4rem;
  }
}

.hero-text-right {
  margin-left: auto;
  max-width: 42rem;
  text-align: left;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .hero-text-right {
    padding-left: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-text-right {
    padding-left: 6rem;
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.hero h1 .highlight {
  color: #3B82F6;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.125rem;
  }
}

/* Hero - bottom aligned variant (About, Work) */
.hero-bottom {
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 0;
}

/* Experience Section (Home) */
.experience-section {
  background: #f3f4f6;
  padding: 1.25rem 0 1.75rem;
}

@media (min-width: 768px) {
  .experience-section {
    padding: 1.25rem 0 1.75rem;
  }
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: 2fr 5fr;
    gap: 2.5rem;
  }
}

.experience-grid h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.875rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #111;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.blue-line {
  width: 4rem;
  height: 2px;
  background: #3B82F6;
  margin: 0.75rem 0 1.5rem;
}

.experience-grid p {
  color: #374151;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .experience-grid p {
    font-size: 1rem;
  }
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3B82F6;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #3B82F6;
  color: white;
}

.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3B82F6;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: #3B82F6;
  color: white;
}

.btn-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.experience-image {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .experience-image {
    height: 32rem;
  }
}

/* Work Section (Home) */
.work-section {
  background: #000;
  padding: 2.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .work-section {
    padding: 3.5rem 0 3.5rem;
  }
}

.work-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.work-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.875rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.blue-line-center {
  width: 4rem;
  height: 2px;
  background: #3B82F6;
  margin: 0.75rem auto 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  position: relative;
}

.work-card-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.work-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.work-card:hover .work-card-thumb img {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.work-card:hover .work-card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.work-card:hover .play-btn {
  transform: scale(1.1);
}

.play-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: white;
  margin-left: 2px;
}

.work-card-info {
  margin-top: 1rem;
}

.work-card-info .category {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-card-info .title {
  color: #3B82F6;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.work-section .btn-center {
  text-align: center;
  margin-top: 3rem;
}

/* Services Section (Home) */
.services-home-section {
  background: white;
  padding: 2.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .services-home-section {
    padding: 3.5rem 0 3.5rem;
  }
}

.services-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .services-home-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.services-collage {
  display: none;
  height: 500px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-collage {
    display: block;
  }
}

.services-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-home-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .services-home-content h2 {
    font-size: 1.875rem;
  }
}

.services-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0;
}

@media (min-width: 640px) {
  .services-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-icon-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #3B82F6;
  stroke-width: 1.5;
  margin-bottom: 1rem;
}

.service-icon-card h3 {
  font-weight: 700;
  color: #111;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.service-icon-card p {
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 3.5rem 0;
}

.footer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.footer-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.footer-content {
  position: relative;
  z-index: 10;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-contact-row {
    flex-direction: row;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  flex: 1;
  justify-content: center;
}

.footer-contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #F97316;
  stroke-width: 1.5;
  fill: none;
}

.footer-contact-item .label {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-contact-item .value {
  color: white;
  font-size: 1.3rem;
  margin-top: 2px;
}

.footer-contact-item a.value {
  transition: color 0.3s;
}

.footer-contact-item a.value:hover {
  color: #60A5FA;
}

.footer-divider {
  display: none;
  width: 1px;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-divider {
    display: block;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-tagline {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline .highlight {
  color: #60A5FA;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    margin-top: 0;
  }
}

/* About Page - Bio Section */
.bio-section {
  background: white;
  padding: 2.5rem 0 2rem;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.bio-text p {
  color: #374151;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .bio-text p {
    font-size: 1rem;
  }
}

.bio-inline-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.bio-inline-images img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bio-inline-images img.object-top {
  object-position: top;
}

/* About Sidebar */
.bio-sidebar {
  display: flex;
  flex-direction: column;
}

.bio-sidebar-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.bio-sidebar-icon svg {
  width: 32px;
  height: 32px;
  stroke: #3B82F6;
  stroke-width: 1.5;
  fill: none;
}

.bio-sidebar h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: #111;
  text-transform: uppercase;
  margin: 0 0 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .bio-sidebar h2 {
    font-size: 3rem;
  }
}

.founder-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3B82F6;
  text-align: center;
  margin: -0.5rem 0 1.25rem;
}

.bio-sidebar .headshot {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bio-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bio-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #3B82F6;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.bio-links a:hover {
  background: #3B82F6;
  color: white;
}

.bio-links a svg {
  width: 1rem;
  height: 1rem;
}

.bio-sidebar .view-work-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3B82F6;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.bio-sidebar .view-work-btn:hover {
  background: #3B82F6;
  color: white;
}

.bio-sidebar .foggy-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bio-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}

.bio-bottom-row img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bio-bottom-row img.object-top {
  object-position: top;
}

/* Key Contributors (About page) */
.contributors-section {
  background: #F3F4F6;
  padding: 4rem 0 5rem;
}

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

.contributors-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .contributors-header h2 {
    font-size: 3.25rem;
  }
}

.contributors-header .blue-line {
  width: 5rem;
  height: 3px;
  background: #3B82F6;
  margin: 0 auto 1.5rem;
}

.contributors-header p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
}

.contributor-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.contributor-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .contributor-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.contributor-photo {
  flex: 0 0 auto;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contributor-photo {
    width: 260px;
    margin: 0;
  }
}

.contributor-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.contributor-info {
  flex: 1;
  min-width: 0;
}

.contributor-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3B82F6;
  margin: 0 0 0.35rem;
}

.contributor-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.contributor-info p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.contributor-info a {
  color: #2563EB;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.4);
  transition: color 0.3s, border-color 0.3s;
  word-break: break-word;
}

.contributor-info a:hover {
  color: #1D4ED8;
  border-color: #1D4ED8;
}

/* Work Page */
.work-page-section {
  background: white;
  padding: 1.5rem 0 4rem;
  position: relative;
}

.work-page-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #D1D5DB;
}

.work-category {
  margin-bottom: 0;
}

.work-category-divider {
  position: relative;
  margin: 2rem 0;
}

.work-category-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  border-top: 1px solid #D1D5DB;
}

.work-category h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #111;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.work-category-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .work-category-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.work-video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

@media (min-width: 768px) {
  .work-video-container {
    flex: 1 1 60%;
    min-width: 0;
  }
}

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

.work-description {
  width: 100%;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .work-description {
    flex: 0 0 auto;
    width: auto;
    padding-top: 0;
  }
}

.work-description p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Key Collaborators Section */
.collaborators-section {
  background: #ffffff;
  padding: 0 0 3rem;
}

.collaborators-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.collaborators-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  color: #111827;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.collab-rule {
  flex: 1 1 0;
  height: 2px;
  background: #3B82F6;
}

.collaborators-intro {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4B5563;
  max-width: 900px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.collaborator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid #E5E7EB;
}

.collaborator:first-of-type {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  .collaborator {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.collaborator-photo {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .collaborator-photo {
    width: 280px;
  }
}

.collaborator-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.collaborator-photo img.object-top {
  object-position: center top;
}

.collaborator-photo img.flip-h {
  transform: scaleX(-1);
}

.collaborator-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid #3B82F6;
  background: #F3F4F6;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaborator-photo-placeholder span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: #3B82F6;
}

.collaborator-info {
  flex: 1;
  min-width: 0;
}

.collaborator-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3B82F6;
  margin: 0 0 0.35rem;
}

.collaborator-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  letter-spacing: 0.04em;
  color: #111827;
  margin: 0 0 1rem;
}

.collaborator-info p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4B5563;
  margin: 0 0 1rem;
}

.collaborator-info p:last-child {
  margin-bottom: 0;
}

.collaborator-link a {
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.3s;
}

.collaborator-link a:hover {
  color: #1D4ED8;
  text-decoration: underline;
}

/* Services Page */
.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-color: #0a0a0a;
}



.services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero-gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.services-hero-text {
  padding: 0 2.5rem;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .services-hero-text {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .services-hero-text {
    padding: 0 6rem;
  }
}

.services-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero h1 .highlight {
  color: #3B82F6;
}

.services-hero .blue-line {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.services-hero p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  margin: 0;
}

@media (min-width: 768px) {
  .services-hero p {
    font-size: 1.125rem;
  }
}

/* Service Rows */
.services-content {
  background: white;
  padding-top: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
  }
}

.service-row-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .service-row-text {
    padding: 3rem;
  }
}

.service-row-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-row-title-group svg {
  width: 35px;
  height: 35px;
  color: #3B82F6;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.service-row-title-group h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.service-row-text > p {
  color: #4B5563;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.075rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}

.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

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

.service-lists li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.075rem;
  padding: 0.375rem 0;
}

.service-lists li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3B82F6;
  flex-shrink: 0;
}

.service-row-image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.service-row-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-divider {
  padding: 1.5rem 0;
}

.service-divider hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 0 2rem;
}

@media (min-width: 768px) {
  .service-divider hr {
    margin: 0 4rem;
  }
}

/* Contact Page */
.contact-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .contact-header {
    padding: 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-header {
    padding: 1.5rem 4rem;
  }
}

.contact-main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
}

.contact-info {
  margin-left: auto;
  max-width: 28rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #3B82F6;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.contact-info-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.contact-info-item .label {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.875rem;
}

.contact-info-item .value {
  color: white;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.contact-info-item a.value {
  transition: color 0.3s;
}

.contact-info-item a.value:hover {
  color: #60A5FA;
}

.contact-footer {
  position: relative;
  z-index: 10;
  padding: 1.25rem 2rem;
}

@media (min-width: 768px) {
  .contact-footer {
    padding: 1.25rem 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-footer {
    padding: 1.25rem 4rem;
  }
}

.contact-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .contact-footer-inner {
    flex-direction: row;
  }
}

/* About page footer variant - blue icons instead of orange */
.footer-blue .footer-contact-icon {
  border-color: #3B82F6;
}

.footer-blue .footer-contact-icon svg {
  color: #3B82F6;
}

.footer-blue .footer-tagline-alt {
  color: #60A5FA;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .footer-blue .footer-tagline-alt {
    margin-top: 0;
  }
}

/* Lucide icon replacement - inline SVGs */
.icon-mail, .icon-map-pin, .icon-linkedin, .icon-video, .icon-file-text,
.icon-building, .icon-scale, .icon-megaphone, .icon-clapperboard,
.icon-leaf, .icon-users, .icon-landmark {
  display: inline-block;
  vertical-align: middle;
}