/* === GLOBAL === */
@font-face {
  font-family: 'TBGrotesk';
  src: url('fonts/TBWAGrotesk-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'TBGrotesk';
  src: url('fonts/TBWAGrotesk-Bold.otf') format('opentype');
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'TBGrotesk', sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
a {
  color: #ffd000;
  text-decoration: none;
}
section {
  padding-top: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  scroll-margin-top: 5rem;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
sup {
  font-size: 1em;
  vertical-align: top; 
  line-height: 1;
  position: relative;
  top: 0.05em;
}
.header-label {
  display: inline-block;
  background-color: #ffd000;
  color: #000;
  font-weight: 800;  
  padding: 0.6rem 2.8rem 0.2rem; 
  font-size: 2rem;      
  line-height: 1.2;
  letter-spacing: 0.03rem;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-top: 0;
  text-align: center;
}


/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .logo {
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 0px;
  color: #fff;
}

.yellow-slash {
  color: #ffd000;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar li {
  display: inline;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #ffd000;
}

.menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* === HERO CAROUSEL === */
/* Carousel Layout */
.hero-carousel {
  position: relative;
  height: 100svh;
  overflow: hidden;
  width: 100%;
}

.carousel {
  height: 100%;
  position: relative;
  visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.carousel.loading {
  background: #000 url('images/TCPTBWA_BANNER1.jpg') center center / cover no-repeat;
  opacity: 1;
}
.carousel.ready {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100svh;
  position: relative;
}

/* Caption Text */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  max-width: 90%;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffd000;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.carousel-btn:hover {
  background-color: #fff100;
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }


/* === Disruption Section === */
.disruption {
  background-color: #000;
  padding-top: 0;       
  padding-left: 0;       
  padding-bottom: 5rem;
  margin-top: -1.5rem;  
  margin-left: 0rem;  
  position: relative;  
  z-index: 1;           
}


.disruption-label-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}


.disruption-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  align-items: flex-start;

  margin-left: 3rem;    
  margin-right: 0;
  margin-bottom: 3.5rem;     
  max-width: none;       
  padding-left: 0;
}


.disruption-left {
  flex: 1 1 50%; 
  padding-left: 0;
}


.subheading {
  color: #ffd000;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
}

.quote p {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  letter-spacing: 1px;
  max-width: 100%;
}

.welcome {
  margin-top: 2.5rem;
  font-size: 2.5rem;
}

.disruption-cta {
  display: inline-block;
  margin-top: 0rem;
  font-weight: bold;
  font-size: 3.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.disruption-cta:hover {
  color: #ffd000;
}

.disruption-cta::after {
  content: " ➜"; /* Thick arrow */
  font-size: 3.2rem;
  font-weight: 900;
  transition: color 0.3s ease;
}

.disruption-cta:hover::after {
  color: #ffd000;
}


/* Right side */
.disruption-right {
  flex: 1 1 50%; 
  text-align: center;
}
.disruption-right img {
  width: 23rem; 
  height: auto;
}


/* === What We Do Section (Based on Disruption Section Styling) === */
.what-we-do {
  background-color: #1c1c1c;
  padding-top: 0;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0rem;
  position: relative;
  z-index: 1;
}

.what-we-do-label-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.what-we-do-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;

  margin-left: 0rem;
  margin-right: 0;
  margin-top: -3rem;
  max-width: none;
  padding-left: 0;
}

.what-we-do-left {
  flex: 1 1 50%;
  text-align: center;
}

.what-we-do-left img {
  width: 40rem;
  height: auto;
}

.what-we-do-right {
  flex: 1 1 50%;
  padding-left: 0;
}

.wwd-heading {
  font-size: 3.2rem;
  font-weight: 550;
  color: #ffd000;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2rem;
}

.wwd-description {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.wwd-subtext {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.wwd-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-size: 1.5rem;
  border: 2px solid #ffd000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.wwd-cta:hover {
  background-color: #ffd000;
  color: #000;
}

.services-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  padding: 2rem;
  box-sizing: border-box;
  flex-direction: column;
}

.services-modal.show {
  display: flex;
}

.services-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffd000;
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.services-modal .modal-close {
  font-size: 2.5rem;
  cursor: pointer;
  color: #ffd000;
}

.modal-image {
  margin: 0 auto; 
  max-width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}


/* === Our Work Section === */
.our-work-video-section {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 1rem;
  padding-top: 0rem;
  margin-top: 0;
  margin-left: 0rem;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 0;
}


.our-work-label-wrapper {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.video-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  padding: 0 2rem;
  box-sizing: border-box; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  overflow: hidden;
}

.our-work-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Overlay before playing */
.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Yellow triangle play button */
.play-button {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 208, 0, 0.9);
  clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}



/* === Edges Section === */
.edges {
  padding-top: 1rem;
  padding-left: 0;
  padding-bottom: 1rem;
  margin-top: 0;
  margin-left: 0rem;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 30vh;
}

.edges .header-label {
  margin-bottom: 0;
  padding-bottom: 0;
}

.edges-label-wrapper {
  width: 100%;
  padding: 0;
  padding-bottom: 0;
  margin: 0;
}

.edges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(640px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
}

.edge-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  cursor: pointer;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
  padding-bottom: 1rem;
}

.edge-image {
  width: 100%;
  height: 280px; /* cropped height to show just a teaser */
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.edge-image:hover {
  transform: scale(1.04);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.edge-subheading {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.edge-summary {
  font-size: 1rem;
  color: #bbb;
  margin-top: 0.5rem;
}

.edge-separator {
  margin-top: auto; /* Push it to the bottom of the card */
  margin-bottom: 0.5rem;
  width: 100%;
}

/* Modal Styling */
.edges-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.edges-modal.show {
  display: flex;
}

.edges-modal img {
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === TVCs Section === */
    .tvcs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }

    .tvcs-card {
      display: flex;
      flex-direction: column;
      background-color: #111;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .tvcs-card:hover {
      transform: translateY(-5px);
    }

    .tvcs-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background-size: cover;
      background-position: center;
      cursor: pointer;
    }

    .tvcs-card-title {
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
      text-align: center;
      background-color: #000;
      color: #fff;
    }


/* === Info Hub Layout === */
.info-hub { 
  text-align: center;
}
.info-hub h1 {
   margin-bottom: .25rem; 
  }
.pdf-gallery > p { margin-bottom: 2rem; color: #555; }

/* Responsive, roomy grid for text-first cards */
.pdf-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(510px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.pdf-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: left;
  background: #fff6cc; /* stronger yellow wash */
  border: 3px solid #ffd000; /* thicker yellow border */
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.pdf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  border-color: #e6b800; /* deeper yellow accent on hover */
}

/* Header */
.pdf-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pdf-card__icon {
  display: grid;
  place-items: center;
  width: 36px; height: 44px;
  color: #444;
}
.pdf-card__title {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
}
.pdf-card__title a {
  color: #111;
  text-decoration: none;
}
.pdf-card__title a:hover { text-decoration: underline; }

/* Meta badges */
.pdf-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .5rem;
  margin: .1rem 0 .2rem;
}
.badge {
  display: inline-block;
  font-size: .78rem;
  line-height: 1;
  padding: .4rem .55rem;
  border-radius: 999px;
  background: #f5f5f7;
  color: #333;
  border: 1px solid #eee;
}

/* Abstract */
.pdf-card__abstract p {
  margin: .45rem 0;
  color: #2b2b2b;
}
.pdf-card__abstract strong { font-weight: 600; }

/* Highlights */
.pdf-card__details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  margin: .25rem 0;
}
.pdf-card__details summary::marker { display: none; }
.pdf-card__details summary::after {
  content: "▼";
  font-size: .75rem;
  position: absolute;
  right: 0;
  transform: translateY(10%);
  transition: transform .2s ease;
  color: #666;
}
.pdf-card__details[open] summary::after { transform: rotate(180deg); }
.pdf-card__details ul { margin: .4rem 0 .1rem 1rem; }

/* Actions */
.pdf-card__actions { 
  margin-top: .2rem; 
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .8rem;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.btn:hover { background: #f2f2f2; }

/* Dark-mode friendly tweaks (optional) */
@media (prefers-color-scheme: dark) {
  .pdf-card { background: #111; border-color: #2a2a2a; box-shadow: none; }
  .pdf-card:hover { border-color: #3a3a3a; }
  .pdf-card__title a { color: #f3f3f3; }
  .badge { background: #191919; border-color: #2a2a2a; color: #ddd; }
  .pdf-card__abstract p, .pdf-gallery > p { color: #ddd; }
  .btn { border-color: #2a2a2a; background: #1a1a1a; color: #eee; }
  .btn:hover { background: #222; }
}


/* === Contact Us Section === */
.contact {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-left: 0rem;
  background-color: #111; 
  color: #fff;
  position: relative;
  min-height: 30vh;
}

.contact .header-label {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label-wrapper {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.contact-container {
  margin-top: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-left: 3rem;
  margin-right: 3rem;
}

.contact-left {
  flex: 1 1 50%;
}

.contact-left h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.contact-right {
  flex: 1 1 50%;
  line-height: 1.2;
}

.contact-office {
  font-size: 1.4rem;
  margin-bottom: 0rem;
}

.contact-right p {
  margin-top: 0;
}

.contact-address {
  font-weight: normal;
}

.contact-inquiries {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.contact-inquiries a {
  color: #fff;
  text-decoration: underline;
}

.contact-inquiries a:hover {
  color: #ffd000;
}

.credentials-btn {
  margin-top: 0;
  margin-bottom: 1.2rem; /* space before the next section */
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  background-color: #ffd000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start; /* keeps it aligned with the text */
}

.credentials-btn:hover {
  background-color: #e6bd00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Overlay */
.contact-us-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-us-modal.show {
  opacity: 1;
  pointer-events: all;
}

/* Modal box */
.modal-form,
.thank-you-message {
  position: relative;
  background-color: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
}

/* Heading & text */
.modal-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.modal-form p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Input fields */
.modal-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.modal-form input:focus {
  outline: none;
  border-color: #ffd000;
}

/* Submit button */
.modal-form button {
  padding: 0.8rem 1.6rem;
  background-color: #ffd000;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-form button:hover {
  background-color: #e6bd00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Thank-you message */
.thank-you-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.thank-you-message p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}


.spacer {
  height: 0.8rem;
}


.footer {
  background-color: #000;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
  padding-right: 3rem;
  padding-bottom: 5rem;
  padding-left: 3rem;
  font-size: 1rem;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 50%;
}

.footer-left p{
  line-height: 3;
}

.footer sup {
  vertical-align: super;
  line-height: normal; /* optional for tighter superscript */
}

.footer-socials a {
  font-size: 1.8rem;
  color: #fff;
  margin-right: 1.2rem;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #ffd000;
}

.footer-copy {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-left p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-left a {
  color: #ccc;
  text-decoration: underline;
}

.footer-left a:hover {
  color: #ffd000;
}

.footer-right {
  max-width: 50%;
  text-align: left;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 0;
}

.footer-nav a:hover {
  color: #ffd000;
}





/* === MOBILE VIEW === */
@media (max-width: 768px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
  }

  section {
    padding: 0;
    min-height: auto;
  }

  .header-label {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem 0.2rem;
    margin-bottom: 1.5rem;
  }

  /* === NAVIGATION === */
  .hamburger {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger-line {
    transition: all 0.3s ease-in-out;
  }

  .navbar ul {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 1rem 0;
    z-index: 1000;
    text-align: center;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .navbar .nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 2.5rem;
    z-index: 1000;
  }

  .navbar .nav-links.active li {
    display: block;
  }

  .navbar .nav-links.active a {
    font-size: 1.5rem;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  /* === HERO CAROUSEL === */
  .hero-carousel {
    height: 25vh;
  }

  .carousel-slide {
    height: 25vh;
  }

  .carousel-btn {
    width: 16px;
    height: 16px;
    font-size: 0.5rem;
    line-height: 16px;
  }

  .carousel-caption {
    font-size: 1.5rem;
    padding: 1rem;
  }

  /* === VIDEO SECTION === */
  .video-container {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
  }

  .our-work-video {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background-color: #000;
  }
  .our-work-video-section {
    height: auto; /* ⬅️ Let it shrink-wrap to its content */
    padding-bottom: 1rem; /* Restore any vertical spacing */
  }


  /* === PAGE SECTIONS === */
  .disruption-container,
  .what-we-do-container,
  .contact-container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    height: auto; /* ⬅️ Let it shrink-wrap to its content */
    padding-bottom: 1rem; /* Restore any vertical spacing */
  }
  .quote p {
    font-size: 1.2rem;       
    line-height: 0.6;        
    margin: 1rem 0;
    letter-spacing: 0.5px;  
    max-width: 100%;
    text-align: left;    
    padding: 0 1rem;      
  }
  .subheading {
    color: #ffd000;
    margin: 1rem 0;
    padding: 0 1rem;    
    text-align: left;    
    font-size: 1rem;
    margin-bottom: 1.3rem;
  }
  .welcome {
    margin: 0;
    font-size: 1.2rem;
    padding: 0 1rem;    
    text-align: left;    
    margin-bottom: 1.3rem;
    font-weight: 600;
  }
  .disruption-cta {
    margin: 1rem 0;
    text-align: left;    
    padding: 0 1rem;    
    font-weight: bold;  
    color: #fff;
    font-size: 2.3rem;
    letter-spacing: 0.5px;
    display: inline-block;
  }
  .disruption-right {
    display: none;
  }
  .what-we-do-right {
    padding: 0 1rem;    
  }
  .wwd-cta {
    display: block;
    margin: 1rem auto; /* centers horizontally with some spacing */
    text-align: center;
  }

  /* === EDGES === */
  .edges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    box-sizing: border-box;
  }

  .edge-image {
    width: 100%;
    height: auto; /* cropped height to show just a teaser */
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  /* === FOOTER === */
  .footer {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
    flex-direction: column-reverse;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
    padding-bottom: 1rem;
  }

  .footer-left p {
    margin: 0.3rem 0;
    line-height: 1.4;
    font-size: 0.9rem;
  }

  .footer-nav a {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
  }

  /* === MEDIA === */
  img,
  video {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* === Typographic spacing === */
  p,
  li {
    margin-bottom: 1rem;
  }
}
