:root {
  --color-bg: #000;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-primary: #ff5722;
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-height: 90px;
}

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

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Top Navigation --- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 20px 40px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Forces the image to be white */
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff6a3d;
}

.get-template-btn {
  background: white;
  color: black;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s;
}

.get-template-btn:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
  }

  .get-template-btn {
    display: none;
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  transform-origin: center center;
  will-change: transform, border-radius;
  z-index: 1;
}

.hero-image-bg,
.hero-video-bg {
  position: absolute;
  top: 44%;
  left: 50%;
  min-width: 100%;
  min-height: 120%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  image-rendering: pixelated;
  opacity: 1;
}

.hero-content-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  transform: translateY(30px); /* Shift text slightly downward */
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(115deg, #ff6a3d 0%, #ff9e2a 40%, #2a8d88 100%);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 106, 61, 0.4);
}

/* ─── CAMERA MASCOT (LOGO) ─── */
.camera-mascot.logo-mascot {
  position: relative;
  bottom: auto;
  right: auto;
  width: 65px; /* Compact size for logo */
  height: auto;
  z-index: 100;
  pointer-events: auto; /* Enable hover/cursor tracking in nav */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-right: 15px;
}

.camera-mascot {
  display: block;
}

.eyes-container {
  transform-origin: center 55px; /* Center of the eyes */
  animation: blink 10s infinite;
}

@keyframes blink {
  0%,
  96%,
  100% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
}

.pupil {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

@media (max-width: 768px) {
  .camera-mascot {
    width: 100px;
    bottom: 20px;
    right: 20px;
  }
}

/* --- Main Content Wrapper --- */
.main-content-wrapper {
  position: relative;
  z-index: 20; /* Ensure this entire block sits above the hero-section (z-index: 1) */
  background-color: var(
    --color-bg
  ); /* Solid black background to prevent hero bleed-through */
}

/* --- Brand Marquee Section --- */
.brand-marquee-section {
  position: relative;
  width: 100%;
  background-color: var(--color-bg);
  padding: 80px 0 60px 0;
  text-align: center;
  z-index: 25; /* Ensure this is higher than hero-section which is z-index: 1 */
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5); /* Add shadow to sell the overlap effect */
}

.brand-marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.brand-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-width: 180px;
  height: 70px;
}

.marquee-item svg {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.marquee-item:hover svg {
  opacity: 1;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- About Section --- */
.about-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 100px 60px 80px 60px;
  background-color: var(
    --color-bg
  ); /* Opaque background hides what is behind */
  z-index: 25; /* Higher than hero */
  overflow: hidden;
}

/* Background grid lines for Home About Section */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  z-index: 1;
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.about-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-left {
  flex-shrink: 0;
  width: 280px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-right {
  flex: 1;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.about-lead strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.about-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 700px;
}

/* Stats Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px 30px 20px;
  overflow: hidden;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  letter-spacing: -0.03em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* --- Founder Section --- */
.founder-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
  z-index: 25;
}

.founder-parallax-wrap {
  position: absolute;
  inset: -4% 0;
  width: 100%;
  height: 108%;
  will-change: transform;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 60px 50px 60px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
}

.founder-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(115deg, #ff6a3d 0%, #ff9e2a 40%, #2a8d88 100%);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.founder-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 106, 61, 0.4);
}

/* --- Portfolio Intro Section --- */
.portfolio-intro {
  position: relative;
  width: 100%;
  height: 70vh;
  padding: 100px 60px 80px 60px;
  background-color: var(--color-bg);
  z-index: 25;
}

.about-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-left {
  flex-shrink: 0;
  width: 280px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-right {
  flex: 1;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.about-lead strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.about-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 700px;
}

/* Stats Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px 30px 20px;
  overflow: hidden;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  letter-spacing: -0.03em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* --- Founder Section --- */
.founder-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  z-index: 25;
}

.founder-parallax-wrap {
  position: absolute;
  inset: -4% 0;
  width: 100%;
  height: 108%;
  will-change: transform;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 60px 50px 60px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
}

.founder-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(115deg, #ff6a3d 0%, #ff9e2a 40%, #2a8d88 100%);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.founder-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 106, 61, 0.4);
}

/* --- Portfolio Intro Section --- */
.portfolio-intro {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-color: var(--color-bg);
  z-index: 25;
  display: flex;
  align-items: center;
  padding: 0 80px;
  margin-top: 150px; /* Gap below founder section */
}

/* Vignette overlay to flawlessly dissolve all edges (top, bottom, left, right) into the background color */
.portfolio-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20; /* Above the image and gradient, below the text */
  box-shadow: inset 0 0 150px 100px var(--color-bg);
}

.portfolio-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%; /* Offset for parallax */
  z-index: 1;
  overflow: hidden;
  /* Softened mask edges so the image melts outward instead of cutting off */
  -webkit-mask-image: radial-gradient(
    ellipse 110% 110% at 75% 50%,
    #000 40%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 110% 110% at 75% 50%,
    #000 40%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
}

.portfolio-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.portfolio-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 0.96) 42%,
      rgba(0, 0, 0, 0.72) 56%,
      rgba(0, 0, 0, 0.1) 74%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      circle at 0% 50%,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 32%,
      rgba(0, 0, 0, 0.98) 44%,
      rgba(0, 0, 0, 0.82) 58%,
      rgba(0, 0, 0, 0.46) 72%,
      rgba(0, 0, 0, 0.08) 84%,
      rgba(0, 0, 0, 0) 92%
    );
  z-index: 2;
}

.portfolio-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.portfolio-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 550px;
}

/* --- Portfolio Grid Section --- */
.portfolio-grid-section {
  padding: 100px 60px 100px 60px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 25;
  margin-top: -1px; /* Avoid sub-pixel gaps */
}

.grid-header {
  max-width: 1400px;
  margin: 0 auto 60px auto;
}

.grid-section-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1650px;
  width: 95%;
  margin: 0 auto;
}

.portfolio-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 28px;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  background-color: #252525;
  transform: translateY(-10px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: #000;
}

.yt-player,
.vimeo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  transform: scale(1.2); /* Zoom in to crop black borders/letterboxing */
  transform-origin: center;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.card-info {
  padding: 0 4px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.meta-prefix {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

.meta-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .portfolio-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio-grid-section {
    padding: 60px 20px;
  }
}

/* --- Social Media Reels Section --- */
.reels-section {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  padding: 0;
  z-index: 25;
  overflow: hidden;
}

/* ── Banner (like Portfolio intro) ── */
.reels-banner {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.reels-banner-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px 60px 60px;
  width: 55%;
  flex-shrink: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, transparent 100%);
}

.reels-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.reels-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.reels-title span {
  background: linear-gradient(115deg, #ff6a3d 0%, #ff9e2a 50%, #2a8d88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reels-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.reels-banner-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.reels-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.6;
}

.reels-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 0.96) 42%,
      rgba(0, 0, 0, 0.72) 56%,
      rgba(0, 0, 0, 0.1) 74%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      circle at 0% 50%,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 32%,
      rgba(0, 0, 0, 0.98) 44%,
      rgba(0, 0, 0, 0.82) 58%,
      rgba(0, 0, 0, 0.46) 72%,
      rgba(0, 0, 0, 0.08) 84%,
      rgba(0, 0, 0, 0) 92%
    );
  z-index: 2;
}

/* ── Grid ── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  max-width: 1920px;
  width: 95%;
  margin: 100px auto 100px;
  padding: 0;
}

/* When a reel is expanded, blur all other reel items */
.reels-grid.has-expanded .reel-item:not(.reel-expanded) {
  filter: blur(4px) brightness(0.4);
  pointer-events: none;
  transition:
    filter 0.4s ease,
    opacity 0.4s ease;
}

.reels-column {
  overflow: hidden;
  position: relative;
}

.reels-column {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Individual reel card ── */
.reel-item {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  position: relative;
  cursor: pointer;
  transition:
    filter 0.4s ease,
    transform 0.3s ease;
}

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

/* Clone items (duplicates) can't be clicked to expand */
.reel-clone {
  cursor: default;
  pointer-events: none;
}

/* ── Expanded reel ── */
.reel-item.reel-expanded {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  width: auto !important;
  height: 70vh !important;
  aspect-ratio: 9 / 16 !important;
  z-index: 10000 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  filter: none !important;
  pointer-events: all !important;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.reel-item.reel-expanded video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vimeo-iframe-reel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(1.15); /* Zoom in to crop black borders/letterboxing */
  transform-origin: center;
}

.reel-item.reel-expanded .vimeo-iframe-reel {
  pointer-events: auto;
}

/* ── Mute toggle button ── */
.reel-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  color: white;
  padding: 0;
}

.reel-mute-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.reel-mute-btn svg {
  width: 16px;
  height: 16px;
}

/* Hide mute button on clone items */
.reel-clone .reel-mute-btn {
  display: none;
}

/* ── Expand hint ── */
.reel-expand-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.reel-item:hover .reel-expand-hint {
  opacity: 1;
}
.reel-clone .reel-expand-hint {
  display: none;
}

/* ── Backdrop overlay ── */
.reel-expanded-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.reel-expanded-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Close button (injected by JS) ── */
.reel-close-btn {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s;
}

.reel-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── SERVICES SECTION (Row Menu) ─── */
.services-section {
  padding: 120px 40px; /* Reduced side padding to increase width */
  background-color: var(--color-bg);
  position: relative;
  z-index: 25;
}

.services-header {
  margin-bottom: 80px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.services-title span {
  background: linear-gradient(115deg, #ff6a3d 0%, #ff9e2a 50%, #2a8d88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  line-height: 1.6;
}

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item {
  position: relative;
  height: 160px; /* Increased from 100px */
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 40px;
  cursor: pointer;
  transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-bg {
  position: absolute;
  inset: -40px 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.6s ease;
  filter: brightness(0.5);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.service-item:hover {
  height: 280px;
}

.service-item:hover .service-bg {
  opacity: 0.8;
}

.service-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  transition: transform 0.4s ease;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  max-width: 500px;
}

.service-item:hover .service-desc {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover .service-name {
  transform: translateX(10px);
}

.service-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: white;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
}

@media (max-width: 992px) {
  .service-content {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .service-desc {
    display: none;
  }
  .service-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 24px;
  }
  .service-item {
    padding: 0 20px;
    height: 80px;
  }
  .service-item:hover {
    height: 180px;
  }
  .service-bg {
    inset: -20px 0;
  }
}

/* --- About Founder Page (about.html) --- */
.about-founder-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.about-founder-hero .hero-bg-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  width: 70%;
  height: 100%;
  transform: translateY(-50%);
  z-index: 1;
}

.about-founder-hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Adjusted for headshot */
}

.about-founder-hero .hero-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.about-founder-hero .hero-content-left {
  position: relative;
  z-index: 10;
  padding-left: 10%;
  max-width: 50%;
  margin-top: auto;
  padding-bottom: 80px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.founder-designation {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-me-textual {
  position: relative;
  width: 100%;
  padding: 120px 60px;
  background-color: var(--color-bg);
}

.about-me-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.about-me-left {
  flex-shrink: 0;
  width: 300px;
}

.about-me-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: white;
  text-transform: uppercase;
}

.about-me-right {
  flex: 1;
}

.about-me-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
}

/* --- About Agency Hero Section --- */
.about-agency-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.about-agency-hero .hero-bg-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  width: 70%;
  height: 120%;
  transform: translateY(-50%);
  z-index: 1;
}

.about-agency-hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-agency-hero .hero-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.about-agency-hero .hero-content-left {
  position: relative;
  z-index: 10;
  padding-left: 10%;
  max-width: 50%;
}

.about-agency-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
}

.about-agency-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 450px;
}

/* --- About Agency Textual Section --- */
.about-agency-textual {
  position: relative;
  width: 100%;
  padding: 120px 60px;
  background-color: var(--color-bg);
  z-index: 25;
  overflow: hidden;
}

/* Background grid lines for Agency Textual Section */
.about-agency-textual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, transparent, black 150px);
  mask-image: linear-gradient(to top, transparent, black 150px);
}

.textual-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.textual-left {
  flex-shrink: 0;
  width: 300px;
}

.textual-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.textual-right {
  flex: 1;
}

.para-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300; /* Light weight for elegance */
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.para-lead strong {
  color: white;
  font-weight: 600;
}

.para-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 60px;
}

/* Specific Stats styling for Agency Page */
.agency-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
}

.agency-stat-card {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.agency-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.agency-stat-card .stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* --- Agency CTA Button --- */
.agency-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.agency-cta:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- Stacking Wrapper --- */
.about-hello-stack {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}

/* --- About Me Textual Section --- */
.about-me-textual {
  grid-area: stack;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px 60px;
  background: #000;
  z-index: 5;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background grid lines for About Me Section */
.about-me-textual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  z-index: 1;
  pointer-events: none;
}

.about-page .about-me-textual {
  transform-origin: center center;
  will-change: transform, border-radius, opacity;
  z-index: 6;
}

.about-me-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
}

#reveal-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.15); /* Initial dim state */
  letter-spacing: -0.01em;
}

#reveal-text span {
  display: inline;
  color: inherit;
}

.hello-section {
  grid-area: stack;
  position: relative;
  min-height: 120vh;
  padding: 0 60px 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
  pointer-events: none; /* Let clicks pass to panel */
  transform: translateY(100%);
  will-change: transform;
}

.hello-panel {
  pointer-events: auto; /* Re-enable clicks on the panel itself */
  width: 100%;
  min-height: 100vh;
  background: #000; /* Fully black background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(0);
  opacity: 1;
  will-change: transform;
}

/* Specific class to override spacing if needed */
.full-width-panel {
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hello-split {
  display: grid;
  grid-template-columns: 45% 55%; /* Reduce image side, give more space to text */
  width: 100%;
  height: 100vh; /* Fill the whole section */
}

/* Left side: Slideshow Wrapper */
.hello-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.hello-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hello-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

/* Right side: Text Content */
.hello-text-content {
  display: flex;
  align-items: center;
  padding: 20px 8%; /* Reduced vertical padding */
}

.bio-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Reduced space between text blocks */
  max-width: 800px;
}

.small-bio-text {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.95rem); /* Smaller base text */
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.large-bio-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem); /* Smaller highlighted text */
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-transform: none;
}

.large-bio-text .highlight {
  color: #fff;
  font-weight: 400;
}

/* Button Styling matching reference */
.book-session-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px; /* Slightly smaller button */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  align-self: flex-start; /* Align left */
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  margin-top: 0; /* Let the wrapper gap handle the space */
}

.book-session-btn:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.about-me-left {
  flex-shrink: 0;
  width: 280px;
}

.about-me-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.about-me-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-me-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.about-me-stats-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.stats-right {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 40px !important;
  max-width: 700px;
  width: 100%;
  margin-top: 0 !important;
}

.stats-right .stat-card {
  padding: 60px 30px 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

@media (max-width: 992px) {
  .about-me-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-me-left {
    width: 100%;
  }
  .stats-right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-founder-hero .hero-bg-wrapper {
    width: 100%;
  }
  .about-founder-hero .hero-fade-overlay {
    background: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.95) 100%
    );
  }
  .about-founder-hero .hero-content-left {
    padding-left: 24px;
    max-width: 100%;
    text-align: center;
  }
  .about-me-textual {
    padding: 96px 24px;
  }
  .hello-section {
    margin-top: -20vh;
    padding: 0 24px 80px;
  }
  .hello-panel {
    min-height: 62vh;
    border-radius: 28px;
  }
  .stats-right {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .stats-right {
    grid-template-columns: 1fr !important;
  }

  .stats-right .stat-card {
    padding: 28px 22px;
  }
}

/* ==========================================
   VALUES SECTION (Stacking Cards)
   ========================================== */
.values-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  padding: 15vh 0 0 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

/* Add noise overlay to the background */
.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/noise.png"); /* Assumes you have this in other sections */
  background-repeat: repeat;
  opacity: 0.1; /* Adjust noise intensity */
  pointer-events: none; /* Let clicks pass through */
  z-index: 1;
}

.values-container {
  position: relative;
  z-index: 2; /* Keep content above noise */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  text-align: center;
  margin-bottom: 5vh;
}

.cards-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15vh; /* Exactly fits two cards smoothly on screen */
  padding-bottom: 50vh; /* Scroll space before ending */
}

.value-card {
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 20vh; /* Reduced height */
  min-height: 180px; /* Reduced min height */
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.3); /* Slightly thicker, more visible border */
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: #a0a0a0; /* Dark silverish color */
  font-weight: 500; /* Increased font weight */
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0;
}

/* ==========================================
   ALBUMS SECTION (Horizontal Accordion)
   ========================================== */
.albums-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 100px 60px;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px; /* Space between multiple album arrangements */
  z-index: 25;
}

.albums-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 2px;
  align-self: flex-start;
  padding-left: calc(50vw - 750px);
  width: 100%;
  max-width: 1500px;
}

.albums-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden; /* frame */
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.album-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; /* Now perfectly 100% the frame width */
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition:
    left 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: left, transform;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
}

/* Base default state - Perfect 100% stack initially */
.card-1 {
  z-index: 3;
  left: 0%;
  transform: translateY(-50%);
}
.card-2 {
  z-index: 2;
  left: 0%;
  transform: translateY(-50%);
}
.card-3 {
  z-index: 1;
  left: 0%;
  transform: translateY(-50%);
}

/* Keep flat Stack when NOT hovering */
.albums-container:not(:hover) .card-1 {
  left: 0%;
  transform: translateY(-50%);
}
.albums-container:not(:hover) .card-2 {
  left: 0%;
  transform: translateY(-50%);
}
.albums-container:not(:hover) .card-3 {
  left: 0%;
  transform: translateY(-50%);
}

/* HOVER CONTAINER -> Card 1 Left, Card 2 Peeks, Card 3 Peeks (Card 1 is implicitly the focus) */
.albums-container:hover .card-1,
.albums-container:has(.card-1:hover) .card-1 {
  left: -20%;
  transform: translateY(-50%);
}
.albums-container:hover .card-2,
.albums-container:has(.card-1:hover) .card-2 {
  left: -10%;
  transform: translateY(-50%);
}
.albums-container:hover .card-3,
.albums-container:has(.card-1:hover) .card-3 {
  left: 0%;
  transform: translateY(-50%);
}

/* HOVER CARD 2 -> Card 2 inflates natively, Card 1 super left */
.albums-container:has(.card-2:hover) .card-1 {
  left: -65%;
  transform: translateY(-50%);
}
.albums-container:has(.card-2:hover) .card-2 {
  left: -10%;
  transform: translateY(-50%);
}
.albums-container:has(.card-2:hover) .card-3 {
  left: 0%;
  transform: translateY(-50%);
}

/* HOVER CARD 3 -> Card 3 inflates fully, Card 1 & 2 super left */
.albums-container:has(.card-3:hover) .card-1 {
  left: -75%;
  transform: translateY(-50%);
}
.albums-container:has(.card-3:hover) .card-2 {
  left: -65%;
  transform: translateY(-50%);
}
.albums-container:has(.card-3:hover) .card-3 {
  left: 0%;
  transform: translateY(-50%);
}

.album-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.album-card:hover .album-bg {
  transform: scale(1.05); /* very subtle internal image zoom */
}

/* Content styles */
.album-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px; /* Thicker padding since frame is 100% */
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
  pointer-events: none;
}

/* Reveal content ONLY when fully hovered */
.album-card:hover .album-content {
  opacity: 1;
  transform: translateY(0);
}

/* First card content shown fully by default if nothing hovered */
.albums-container:not(:hover) .card-1 .album-content {
  opacity: 1;
  transform: translateY(0);
}

.album-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.album-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 60px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 20;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.testimonials-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.testimonials-header {
  text-align: center;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 6rem); /* Significantly increased size */
  color: white;
  font-weight: 800;
  line-height: 1; /* Tighter line height like in screenshot */
  letter-spacing: -0.04em;
  text-transform: uppercase; /* Match the capitalized style */
}

.testimonials-slider {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  width: 800px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  z-index: 10;
}

/* Glass gradient effect for side cards peeking */
.testimonial-card.prev {
  opacity: 0.3;
  visibility: visible;
  transform: scale(0.85) translateX(-400px);
  z-index: 5;
  pointer-events: none;
}

.testimonial-card.next {
  opacity: 0.3;
  visibility: visible;
  transform: scale(0.85) translateX(400px);
  z-index: 5;
  pointer-events: none;
}

.testimonial-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo svg {
  height: 30px;
}

.quote-icon svg {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: white;
  line-height: 1.4;
  font-weight: 400;
}

.testimonials-nav {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 20;
}

.nav-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn svg {
  width: 30px;
  height: 30px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Soft pressing animation */
.nav-btn:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .testimonial-card {
    width: 100%;
    max-width: 700px;
  }
  .testimonial-card.prev {
    transform: scale(0.8) translateX(-150%);
  }
  .testimonial-card.next {
    transform: scale(0.8) translateX(150%);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 20px;
  }
  .testimonial-card {
    padding: 40px;
  }
  .testimonial-card.prev,
  .testimonial-card.next {
    display: none; /* Hide side cards on mobile */
  }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  width: 100%;
  background-color: #0d0d0d;
  padding: 60px;
  display: flex;
  justify-content: center;
  color: white;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CTA Box */
.footer-cta-box {
  width: 100%;
  border-radius: 40px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #cc5500 0%, #0d0d0d 60%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Add a subtle grid overlay pattern */
.footer-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.footer-logo {
  height: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.footer-subhead {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #ff6e2b;
  color: white;
  padding: 20px 40px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-cta-btn:hover {
  background: #ff854d;
  transform: scale(1.05); /* Soft pop */
}

/* Info Grid */
.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-info-box {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px;
  display: flex;
}

.contact-box {
  flex-direction: column;
  gap: 15px;
}

.contact-box p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-wrap label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 15px 25px;
  color: white;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #ff6e2b;
}

.newsletter-form button {
  background: #ff6e2b;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff854d;
}

.links-box {
  justify-content: space-around;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-column h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.link-column h4.mt-4 {
  margin-top: 30px;
}

.link-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.link-column a:hover,
.link-column a.active {
  color: #ff6e2b;
}

/* Social Grid */
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.social-pill {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.social-pill svg {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.social-pill .arrow {
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.social-pill:hover svg {
  color: white;
}

.social-pill:hover .arrow {
  color: white;
  transform: translateX(5px);
}

/* Copy bar */
.footer-copy-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 20px;
}
.footer-copy-bar p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.built-in {
  display: flex;
  align-items: center;
  gap: 15px;
}

.framer-badge {
  background: white;
  color: black;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
  .footer-cta-box {
    padding: 50px 30px;
  }
  .footer-social-grid {
    grid-template-columns: 1fr;
  }
  .footer-info-box {
    padding: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .links-box {
    flex-direction: column;
    gap: 40px;
  }
  .footer-copy-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* --- Creative Capsule Section --- */
.creative-capsule-section {
  position: relative;
  width: 100%;
  padding: 100px 60px;
  background-color: var(--color-bg);
  z-index: 25;
}

.capsule-container {
  max-width: 1550px; /* Increased breadth */
  width: 95%;
  margin: 0 auto;
  background: #080808;
  border-radius: 60px;
  padding: 40px 0 0 0; /* Further reduced top padding */
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3); /* Thicker and more white */
}

/* Subtle background lines */
.capsule-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  z-index: 1;
  pointer-events: none;
}

.capsule-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  text-align: center; /* Center the text container content */
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.capsule-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  max-width: 1000px;
  text-align: justify; /* Justify text content */
  text-align-last: center; /* Ensure the last line is centered for a clean look */
}

.capsule-text .dim {
  color: rgba(255, 255, 255, 0.3);
}

.capsule-text .highlight {
  color: white;
  position: relative;
  display: inline-block;
}

.capsule-text strong {
  color: white;
  font-weight: 800;
}

/* Carousel */
.capsule-carousel {
  position: relative;
  width: 100%;
  height: 280px; /* Further significantly reduced height */
  overflow: hidden;
  z-index: 2;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.carousel-track {
  display: flex;
  gap: 15px; /* Tighter gap */
  padding: 0 30px 40px 30px;
  width: max-content;
  height: 100%;
  align-items: flex-end;
}

.carousel-item {
  flex-shrink: 0;
  width: 260px; /* Narrower expanded width */
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition:
    width 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s ease;
  will-change: width, transform;
}

.carousel-item.shrink {
  width: 100px; /* Narrower shrunk width */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.8s ease,
    transform 0.8s ease;
}

.carousel-item.shrink img {
  filter: brightness(0.3) grayscale(0.8);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .creative-capsule-section {
    padding: 60px 20px;
  }
  .capsule-container {
    border-radius: 40px;
    padding-top: 60px;
  }
  .capsule-content {
    padding: 0 30px;
  }
  .capsule-carousel {
    height: 380px;
  }
  .carousel-item {
    width: 220px;
  }
  .carousel-item.shrink {
    width: 80px;
  }
}

/* --- Visions Section --- */
.visions-section {
  position: relative;
  width: 100%;
  padding: 120px 60px;
  background-color: var(--color-bg);
  z-index: 25;
  overflow: hidden;
}

/* Background grid lines for Visions Section */
.visions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 150px);
  mask-image: linear-gradient(to bottom, transparent, black 150px);
}

.visions-container {
  max-width: 1400px;
  margin: 0 auto;
}

.visions-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: -0.02em;
}

.reel-item {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background-color: #111;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.reel-item:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 5;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.reel-item:hover .video-placeholder,
.reel-item.reel-expanded .video-placeholder {
  opacity: 0;
}

.vision-item {
  position: relative;
  width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

/* Background Number */
.vision-number {
  font-family: var(--font-heading);
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.05em;
}

.vision-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.vision-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.vision-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Alternating Layout */
.vision-item:nth-child(odd) {
  justify-content: flex-start;
  padding-left: 15%;
}

.vision-item:nth-child(odd) .vision-number {
  left: 5%;
}

.vision-item:nth-child(even) {
  justify-content: flex-end;
  padding-right: 15%;
  text-align: right;
}

.vision-item:nth-child(even) .vision-number {
  right: 5%;
}

@media (max-width: 1024px) {
  .vision-item:nth-child(odd),
  .vision-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    text-align: center;
  }

  .vision-number {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    opacity: 0.03;
  }
}

@media (max-width: 768px) {
  .visions-section {
    padding: 80px 24px;
  }
  .visions-main-title {
    margin-bottom: 60px;
  }
  .vision-item {
    padding: 60px 0;
  }
}

/* --- Team Section --- */
.team-section {
  position: relative;
  width: 100%;
  padding: 120px 60px;
  background-color: var(--color-bg);
  z-index: 25;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 24px;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-info {
  text-align: center;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.team-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.team-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-social-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.team-social-pill:hover {
  background: #222;
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-left span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pill-arrow {
  font-size: 1.2rem;
  opacity: 0.5;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.team-social-pill:hover .pill-arrow {
  transform: translateX(5px);
  opacity: 1;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 24px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 20px;
  }
}

/* --- Brands Section --- */
.brands-section {
  position: relative;
  width: 100%;
  padding: 100px 60px;
  background-color: var(--color-bg);
  z-index: 25;
}

.brands-container {
  max-width: 1400px;
  margin: 0 auto;
}

.brands-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.brands-box {
  position: relative;
  width: 100%;
  height: 500px;
  background: #080808;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Internal grid lines for Brands Box */
.brands-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 25% 100%; /* Split into columns */
  z-index: 1;
  pointer-events: none;
}

.logo-column {
  position: relative;
  width: 20%;
  height: 100%;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.logo-track {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 20px 0;
}

.logo-item {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.logo-item img {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.3);
}

.logo-item:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .brands-box {
    height: 400px;
    padding: 20px;
  }
  .logo-column:nth-child(4) {
    display: none;
  }
  .logo-column {
    width: 33.33%;
  }
  .brands-box::before {
    background-size: 33.33% 100%;
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 60px 24px;
  }
  .brands-box {
    height: 350px;
    border-radius: 24px;
  }
  .logo-column:nth-child(3) {
    display: none;
  }
  .logo-column {
    width: 50%;
  }
  .brands-box::before {
    background-size: 50% 100%;
  }
}

/* --- How We Work Section --- */
.work-process-section {
  position: relative;
  width: 100%;
  padding: 100px 60px;
  background-color: var(--color-bg);
  z-index: 25;
}

.work-process-container {
  max-width: 1550px; /* Increased breadth */
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding: 60px; /* Reduced padding */
  gap: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3); /* Thicker and white colored */
}

.work-text-content {
  flex: 1.2; /* Give slightly more room to text */
}

.work-title {
  font-family: var(--font-body); /* Switch to cleaner font */
  font-size: 2rem; /* Reduced size */
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.work-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.para-story {
  font-family: var(--font-body);
  font-size: 1rem; /* Slightly smaller */
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.work-emphasis {
  font-family: var(--font-body); /* Switch to cleaner font */
  font-size: 1.6rem; /* Reduced size */
  font-weight: 600;
  color: white;
  line-height: 1.25;
  margin: 10px 0;
}

.work-emphasis .highlight {
  color: rgba(255, 255, 255, 0.25);
}

.work-image-wrapper {
  flex: 1;
  height: 480px; /* Slightly adjusted */
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.parallax-img {
  width: 100%;
  height: 120%; /* Taller for parallax room */
  object-fit: cover;
  position: absolute;
  top: -10%; /* Center initially */
  left: 0;
  transition: transform 0.2s ease-out; /* Smooth follow */
}

@media (max-width: 1200px) {
  .work-process-container {
    padding: 60px;
    gap: 40px;
  }
  .work-title {
    font-size: 2.5rem;
  }
  .work-emphasis {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .work-process-container {
    flex-direction: column;
    padding: 50px 40px;
    border-radius: 40px;
  }
  .work-image-wrapper {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .work-process-section {
    padding: 60px 24px;
  }
  .work-process-container {
    padding: 40px 30px;
  }
  .work-title {
    font-size: 2rem;
  }
  .work-emphasis {
    font-size: 1.5rem;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ========================================== */

/* === TABLET (max-width: 992px) === */
@media (max-width: 992px) {
  /* Navigation */
  .top-nav {
    padding: 15px 24px;
  }
  .nav-links {
    display: none;
  }
  .get-template-btn {
    display: none;
  }
  .nav-container {
    justify-content: center;
  }

  /* Home Hero */
  .hero-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }

  /* About Section (index.html) */
  .about-section {
    padding: 80px 30px;
  }
  .about-top {
    flex-direction: column;
    gap: 30px;
  }
  .about-left {
    width: 100%;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Portfolio */
  .portfolio-intro {
    height: auto;
    min-height: 50vh;
    padding: 0 40px;
  }
  .portfolio-grid-section {
    padding: 60px 24px;
  }
  .portfolio-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reels */
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: auto;
  }
  .reels-banner {
    height: auto;
    min-height: 300px;
  }
  .reels-banner-content {
    width: 65%;
  }

  /* Services */
  .services-section {
    padding: 80px 24px;
  }

  /* Founder (about.html) */
  .about-founder-hero .hero-bg-wrapper {
    width: 100%;
  }
  .about-founder-hero .hero-content-left {
    max-width: 80%;
  }

  /* Agency Hero */
  .about-agency-hero .hero-bg-wrapper {
    width: 100%;
  }
  .about-agency-hero .hero-content-left {
    max-width: 80%;
  }

  /* Agency Textual */
  .about-agency-textual {
    padding: 80px 30px;
  }
  .agency-container {
    flex-direction: column;
    gap: 40px;
  }
  .agency-left {
    width: 100%;
  }

  /* Capsule */
  .creative-capsule-section {
    padding: 60px 24px;
  }
  .capsule-container {
    border-radius: 40px;
  }
  .capsule-content {
    padding: 0 30px;
  }

  /* Visions */
  .visions-section {
    padding: 80px 30px;
  }
  .vision-point {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }
  .vision-text-content {
    max-width: 100%;
  }

  /* Team */
  .team-section {
    padding: 80px 30px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Brands */
  .brands-section {
    padding: 80px 30px;
  }

  /* How We Work */
  .work-process-container {
    flex-direction: column;
    padding: 50px 40px;
    border-radius: 40px;
  }
  .work-image-wrapper {
    width: 100%;
    height: 400px;
  }

  /* Albums (about.html) */
  .albums-section {
    padding: 80px 24px;
  }
  .albums-container {
    flex-direction: column;
    gap: 20px;
  }
  .album-card {
    width: 100% !important;
    height: 300px !important;
  }

  /* Hello Section (about.html) */
  .hello-split {
    flex-direction: column;
  }
  .hello-slideshow {
    width: 100%;
    height: 300px;
  }
  .hello-text-content {
    width: 100%;
    padding: 40px 30px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 24px;
  }
  .footer-cta-box {
    padding: 50px 30px;
    border-radius: 30px;
  }
  .footer-info-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-info-box {
    width: 100%;
  }
  .footer-social-grid {
    flex-wrap: wrap;
    gap: 12px;
  }
  .social-pill {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {
  /* Navigation */
  .top-nav {
    padding: 12px 16px;
  }
  .logo-mascot svg {
    width: 50px;
    height: auto;
  }

  /* Home Hero */
  .hero-section {
    min-height: 80vh;
  }
  .hero-content-center {
    padding: 0 24px;
  }
  .hero-main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 90%;
  }
  .hero-cta-btn {
    font-size: 0.85rem;
    padding: 12px 28px;
  }

  /* Brand Marquee */
  .brand-marquee-section {
    padding: 50px 0 40px 0;
  }
  .brand-heading {
    font-size: 0.75rem;
    padding: 0 24px;
  }

  /* About Section (index.html) */
  .about-section {
    padding: 60px 24px;
  }
  .about-top {
    gap: 20px;
  }
  .about-title {
    font-size: 1.2rem;
  }
  .about-lead {
    font-size: 1.1rem;
  }
  .about-body {
    font-size: 0.85rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }

  /* Founder Section (index.html) */
  .founder-section {
    height: 70vh;
    min-height: 400px;
  }
  .founder-overlay {
    padding: 40px 24px 30px;
  }
  .founder-name {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .founder-bio {
    font-size: 0.85rem;
    max-width: 100%;
  }

  /* Portfolio Intro */
  .portfolio-intro {
    height: auto;
    min-height: 40vh;
    padding: 80px 24px;
    margin-top: 0;
  }
  .portfolio-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .portfolio-subtitle {
    font-size: 0.9rem;
  }

  /* Reels */
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    margin: 60px auto 0;
    height: auto;
  }
  .reels-banner {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .reels-banner-content {
    width: 100%;
    padding: 40px 24px 30px;
    background: none;
  }
  .reels-banner-img-wrap {
    display: none;
  }
  .reels-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  /* Services */
  .services-section {
    padding: 60px 16px;
  }
  .services-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .services-subtitle {
    font-size: 0.85rem;
    padding: 0 8px;
  }
  .service-item {
    height: 100px;
    padding: 0 16px;
  }
  .service-item:hover {
    height: 160px;
  }
  .service-name {
    font-size: 1.3rem;
  }
  .service-arrow {
    right: 16px;
    width: 30px;
    height: 30px;
  }

  /* Founder Hero (about.html) */
  .about-founder-hero {
    height: 80vh;
  }
  .about-founder-hero .hero-fade-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  .about-founder-hero .hero-content-left {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
    text-align: left;
    padding-bottom: 60px;
  }
  .founder-designation {
    font-size: 0.9rem;
  }

  /* About Me Textual (about.html) */
  .about-me-textual {
    padding: 80px 24px;
  }
  .about-me-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-me-left {
    width: 100%;
  }
  .about-me-lead p,
  #reveal-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Hello Section (about.html) */
  .hello-split {
    flex-direction: column;
  }
  .hello-slideshow {
    width: 100%;
    height: 250px;
  }
  .hello-text-content {
    width: 100%;
    padding: 30px 24px;
  }
  .small-bio-text {
    font-size: 0.9rem;
  }
  .large-bio-text {
    font-size: 1.1rem;
  }
  .book-session-btn {
    font-size: 0.9rem;
    padding: 12px 24px;
  }

  /* Albums (about.html) */
  .albums-section {
    padding: 60px 16px;
  }
  .albums-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .albums-container {
    flex-direction: column;
    gap: 16px;
  }
  .album-card {
    width: 100% !important;
    height: 250px !important;
  }
  .album-card.card-1,
  .album-card.card-2,
  .album-card.card-3 {
    flex: none;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 16px;
  }
  .testimonials-slider {
    height: 400px;
  }
  .testimonial-card {
    width: 90%;
    padding: 30px;
    border-radius: 24px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .nav-btn {
    width: 50px;
    height: 50px;
  }
  .nav-btn svg {
    width: 20px;
    height: 20px;
  }

  /* About Agency Hero */
  .about-agency-hero {
    height: 80vh;
  }
  .about-agency-hero .hero-fade-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  .about-agency-hero .hero-content-left {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
    text-align: left;
  }
  .about-agency-hero .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .about-agency-hero .hero-subtitle {
    font-size: 0.9rem;
  }

  /* Agency Textual */
  .about-agency-textual {
    padding: 60px 24px;
  }
  .agency-container {
    gap: 30px;
  }
  .agency-section-title {
    font-size: 1.4rem;
  }
  .para-lead {
    font-size: 1rem;
  }

  /* Creative Capsule */
  .creative-capsule-section {
    padding: 60px 16px;
  }
  .capsule-container {
    border-radius: 30px;
    padding: 30px 0 0 0;
  }
  .capsule-content {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .capsule-text {
    font-size: 0.85rem;
  }
  .capsule-carousel {
    height: 200px;
  }
  .carousel-item img {
    height: 160px;
    width: 120px;
  }

  /* Visions */
  .visions-section {
    padding: 60px 24px;
  }
  .visions-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .vision-point {
    flex-direction: column !important;
    gap: 20px;
    text-align: center;
  }
  .vision-number {
    font-size: 6rem;
    position: static;
  }
  .vision-text-content {
    max-width: 100%;
  }
  .vision-heading {
    font-size: 1.3rem;
  }
  .vision-body {
    font-size: 0.9rem;
  }

  /* Team */
  .team-section {
    padding: 60px 24px;
  }
  .team-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 24px;
  }

  /* Brands */
  .brands-section {
    padding: 60px 24px;
  }
  .brands-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .logo-column {
    width: 50%;
  }
  .brands-box {
    height: 300px;
  }
  .brands-box::before {
    background-size: 50% 100%;
  }

  /* How We Work */
  .work-process-section {
    padding: 40px 16px;
  }
  .work-process-container {
    padding: 30px 20px;
    border-radius: 30px;
    flex-direction: column;
    gap: 30px;
  }
  .work-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .work-emphasis {
    font-size: 1.2rem;
  }
  .para-story {
    font-size: 0.9rem;
  }
  .work-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 24px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 16px;
  }
  .footer-cta-box {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .footer-headline {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .footer-subhead {
    font-size: 0.85rem;
  }
  .footer-cta-btn {
    font-size: 0.85rem;
    padding: 12px 24px;
  }
  .footer-info-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-info-box {
    width: 100%;
    padding: 30px 24px;
    border-radius: 20px;
  }
  .link-column a {
    font-size: 0.75rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
  .footer-social-grid {
    flex-wrap: wrap;
    gap: 10px;
  }
  .social-pill {
    flex: 1 1 calc(50% - 10px);
    padding: 14px 16px;
    font-size: 0.75rem;
  }
  .footer-copy-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
  /* Hero */
  .hero-section {
    min-height: 70vh;
  }
  .hero-main-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }
  .hero-cta-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  /* About */
  .about-section {
    padding: 50px 16px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Founder */
  .founder-section {
    height: 60vh;
  }
  .founder-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .founder-bio {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .founder-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  /* Reels */
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 12px;
  }

  /* Portfolio */
  .portfolio-grid-section {
    padding: 40px 16px;
  }

  /* Testimonials */
  .testimonials-slider {
    height: 350px;
  }
  .testimonial-card {
    width: 95%;
    padding: 24px;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }

  /* Albums */
  .album-card {
    height: 200px !important;
  }

  /* Capsule */
  .capsule-carousel {
    height: 160px;
  }
  .carousel-item img {
    height: 130px;
    width: 100px;
  }

  /* Team */
  .team-grid {
    max-width: 300px;
  }

  /* Brands */
  .brands-box {
    height: 250px;
  }

  /* Footer */
  .footer-cta-box {
    padding: 30px 20px;
  }
  .footer-headline {
    font-size: 1.2rem;
  }
  .social-pill {
    flex: 1 1 100%;
  }
}

/* ─── SERVICE PAGE HERO ─── */
.service-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-img-wrap {
  position: absolute;
  inset: -5%; /* Slightly larger to allow for float movement */
  width: 110%;
  height: 110%;
  z-index: 1;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.service-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8vh;
  pointer-events: none;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin: 0;
  opacity: 0.95;
  /* Subtle depth effect using text shadow */
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  text-align: center;
  max-width: 90vw;
  word-wrap: break-word;
}

.service-hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white, transparent);
  margin-top: 40px;
  opacity: 0.5;
}

@keyframes heroFloat {
  0% {
    transform: translateY(-15px) scale(1.02);
  }
  100% {
    transform: translateY(15px) scale(1.05);
  }
}

/* ─── PAGE TRANSITION OVERLAY ─── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
