/*
 * Home Page Sections
 * Styles for custom content sections
 */

/* Main content wrapper - for footer reveal effect */
main {
  position: relative;
  z-index: 2;
  background: #000;
}

/* ========================================
   SECTION BACKGROUND SYSTEM
   ======================================== */

.section-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Background Image */
.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background Video */
.section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background Color Layer */
.section-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Overlay Layer */
.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content Layer */
.section-content {
  position: relative;
  z-index: 2;
}

/* Fade Transitions (Top & Bottom Gradients) */
.section-bg-wrapper::before,
.section-bg-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

.section-bg-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
}

.section-bg-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  text-align: center;
}

.hero-section.section-bg-wrapper {
  padding: 120px 0 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 68px;
  position: relative;
  padding-bottom: 8px;
}

.hero-location::after {
  content: '';
  position: absolute;
  bottom: -88px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}

.location-icon,
.location-icon-placeholder {
  width: 24px;
  height: 24px;
  font-size: 20px;
}

.location-text {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  line-height: 1.4;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.hero-headline {
  font-family: 'PPSupplyMono', monospace;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 40px;
  text-transform: lowercase;
  text-align: center;
}

.hero-description {
  font-family: 'PPSupplyMono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  max-width: 700px;
  text-align: center;
}

.hero-description-columns {
  display: flex;
  gap: 20px;
  max-width: 900px;
  justify-content: center;
}

.hero-description-col {
  flex: 1;
  font-family: 'PPSupplyMono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  max-width: 400px;
}

@media (max-width: 768px) {
  .hero-description-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-description-col {
    max-width: 100%;
    text-align: center !important;
  }
}

/* ========================================
   PROCESS FLOW SECTION
   ======================================== */

.process-section {
  padding: 100px 0;
  background: #000;
  overflow: visible;
}

.process-flow {
  width: 100%;
  height: auto;
  min-height: 600px;
}

/* ========================================
   COMPANY DESCRIPTION SECTION (DIAGNOSIS)
   ======================================== */

.company-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: static !important;
  margin-top: 0 !important;
  transform: none !important;
  margin-bottom: 100px;
}

.company-section.section-bg-wrapper {
  padding: 100px 30px;
}

.company-section .scroll-spacer {
  width: 100%;
  background: transparent;
}

.company-wrapper {
  position: static !important;
  transform: none !important;
  opacity: 0;
  transform: translateY(40px) !important;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-wrapper.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

.company-left,
.company-right {
  position: static !important;
}

.company-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.company-left {
  flex: 0 0 45%;
  padding: 0 20px;
}

.company-right {
  flex: 1;
  padding: 0 20px;
}

.company-label {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.company-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  text-transform: lowercase;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.detail-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.8s ease;
}

.detail-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-item.visible::before {
  width: 100%;
}

.detail-item:nth-child(1) { transition-delay: 0.1s; }
.detail-item:nth-child(1)::before { transition-delay: 0.1s; }
.detail-item:nth-child(2) { transition-delay: 0.2s; }
.detail-item:nth-child(2)::before { transition-delay: 0.2s; }
.detail-item:nth-child(3) { transition-delay: 0.3s; }
.detail-item:nth-child(3)::before { transition-delay: 0.3s; }
.detail-item:nth-child(4) { transition-delay: 0.4s; }
.detail-item:nth-child(4)::before { transition-delay: 0.4s; }
.detail-item:nth-child(5) { transition-delay: 0.5s; }
.detail-item:nth-child(5)::before { transition-delay: 0.5s; }
.detail-item:nth-child(6) { transition-delay: 0.6s; }
.detail-item:nth-child(6)::before { transition-delay: 0.6s; }
.detail-item:nth-child(7) { transition-delay: 0.7s; }
.detail-item:nth-child(7)::before { transition-delay: 0.7s; }

.detail-item-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  display: block;
  object-fit: contain;
}

.detail-item h3 {
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.detail-item p {
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #999;
}

.detail-item-content {
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #999;
}

.detail-item-content p {
  margin: 0 0 12px 0;
}

.detail-item-content ul,
.detail-item-content ol {
  margin: 0 0 12px 0;
  padding-left: 20px;
}

.detail-item-content ul li,
.detail-item-content ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.detail-item-content ul {
  list-style-type: disc;
}

.detail-item-content ol {
  list-style-type: decimal;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px;
  margin-top: -40px;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.video-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
  z-index: 10;
  pointer-events: none;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-background.rgb-split {
  position: relative;
}

.video-background.rgb-split::before,
.video-background.rgb-split::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.video-glitch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.video-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  transform: translateY(80px);
}

.video-text {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-label {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.video-title {
  font-family: 'PPSupplyMono', monospace;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: 1px;
  font-size: 48px;
}

.video-subtitle {
  font-family: 'PPSupplyMono', monospace;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}

.video-paragraph {
  font-family: 'PPSupplyMono', monospace;
  line-height: 1.7;
  margin-bottom: 32px;
}

.video-button {
  display: inline-block;
}

/* Video Accordion */
.video-accordion {
  width: 100%;
  margin-bottom: 32px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  opacity: 0.7;
}

.accordion-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 1px;
  height: 12px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.accordion-header[aria-expanded="true"] .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #999;
  margin: 0;
  padding: 0 0 20px 0;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

/* ========================================
   SYMPTOMS SECTION
   ======================================== */

.symptoms-section {
  /* background handled by wrapper */
}

.symptoms-section.section-bg-wrapper .symptoms-header {
  padding: 100px 80px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.symptoms-overline {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: -4px;
}

.symptoms-heading {
  font-family: 'PPSupplyMono', monospace;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
  padding: 0;
  /* background handled by symptoms-section wrapper */
}

.values-section .col-span-4:nth-child(2) {
  margin-top: 80px;
}

.values-section .col-span-4:nth-child(3) {
  margin-top: 160px;
}

.value-card {
  padding: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:nth-child(1) {
  transition-delay: 0s;
}

.value-card:nth-child(2) {
  transition-delay: 0.2s;
}

.value-card:nth-child(3) {
  transition-delay: 0.4s;
}

.value-number {
  font-family: 'PPSupplyMono', monospace;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.value-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.value-description {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #999;
}

/* VALUES SECTION REVERSE (5, 6, 7) */
.values-section-reverse {
  padding: 0 0 100px;
  /* background handled by symptoms-section wrapper */
}

.values-section-reverse .offset-grid {
  display: flex;
  flex-direction: row-reverse;
}

.values-section-reverse .col-span-4:nth-child(1) {
  margin-top: 0;
}

.values-section-reverse .col-span-4:nth-child(2) {
  margin-top: 80px;
}

.values-section-reverse .col-span-4:nth-child(3) {
  margin-top: 160px;
}

/* ========================================
   IMAGE WITH TEXT SECTION
   ======================================== */

.image-text-section {
  padding: 0;
  /* background handled by symptoms-section wrapper */
}

.image-text-section .offset-grid {
  padding: 0;
}

.image-text-container {
  position: relative;
  width: 100%;
  max-width: 315px;
  margin: 0;
  margin-left: calc(50% + 150px);
  transform: translateX(-50%);
  aspect-ratio: 3 / 4;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.image-text-container.visible {
  opacity: 1;
}

.image-text-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-text-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Symptom 4 Displacement Scroller */
.symptom4-displacement-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: none;
  cursor: grab;
}

.symptom4-displacement-container:active {
  cursor: grabbing;
}

.symptom4-displacement-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none;
}

/* Displacement Scroller Navigation Arrows */
.displacement-nav {
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: flex;
  gap: 0;
  z-index: 100;
  pointer-events: auto;
}

.displacement-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  color: #FFD700;
  padding: 8px;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.displacement-nav-btn:hover {
  opacity: 0.7;
}

.image-text-overlay {
  position: absolute;
  bottom: 0;
  right: calc(100% + 14px);
  width: 300px;
  pointer-events: none;
}

.image-text-overlay::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
}

.image-text-number {
  font-family: 'PPSupplyMono', monospace;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  text-align: right;
}

.image-text-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 16px 0;
  text-align: right;
}

.image-text-content {
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #999;
  margin: 0;
  text-align: right;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-section.section-bg-wrapper {
  padding: 60px 0 150px;
}

.portfolio-section .offset-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.portfolio-section .col-span-12 {
  grid-column: span 12;
}

.portfolio-section .col-span-6 {
  grid-column: span 6;
}

.portfolio-overline {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.portfolio-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 60px;
  text-transform: lowercase;
  letter-spacing: 2px;
}

.portfolio-item {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger left column - push down 120px */
.portfolio-item:nth-child(even) {
  margin-top: 120px;
}

.portfolio-card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-index {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  color: #666;
  z-index: 2;
}

.portfolio-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.portfolio-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PPSupplyMono', monospace;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: #111;
  text-align: center;
  line-height: 1.3;
}

.portfolio-info {
  padding: 30px;
  background: #0a0a0a;
}

.portfolio-info h3 {
  font-family: 'PPSupplyMono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.portfolio-link {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  color: #FFD700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.portfolio-link:hover {
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .process-section,
  .values-section,
  .values-section-reverse,
  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-section .offset-grid {
    padding: 0 40px;
  }

  .portfolio-section .col-span-6 {
    grid-column: span 6;
  }

  .company-section {
    padding: 60px 40px;
  }

  .company-wrapper {
    gap: 60px;
  }

  .company-left,
  .company-right {
    padding: 0 15px;
  }

  .company-details {
    margin-top: 40px;
  }

  .header-content {
    left: 120px;
    max-width: 590px;
  }

  .image-text-container {
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .image-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding: 20px;
  }

  .image-text-overlay::before {
    display: none;
  }

  .image-text-content {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-location {
    margin-bottom: 40px;
  }

  .hero-headline {
    margin-bottom: 30px;
  }

  .process-flow {
    min-height: 400px;
  }

  .portfolio-card img,
  .portfolio-placeholder {
    height: 300px;
  }

  .value-card {
    margin-bottom: 40px;
  }

  .company-section {
    padding: 60px 30px;
  }

  .company-wrapper {
    flex-direction: column;
    gap: 40px;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .company-left,
  .company-right {
    flex: 1;
    padding: 0;
  }

  .detail-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .header-content {
    left: 50px;
    right: 20px;
    max-width: 260px;
  }

  .header-title {
    font-size: 32px;
  }

  .values-section .col-span-4:nth-child(2),
  .values-section .col-span-4:nth-child(3),
  .values-section-reverse .col-span-4:nth-child(2),
  .values-section-reverse .col-span-4:nth-child(3) {
    margin-top: 0;
  }

  .values-section-reverse .offset-grid {
    flex-direction: column;
  }

  .symptoms-header {
    padding: 60px 30px 30px;
  }

  .symptoms-heading {
    font-size: 32px;
  }

  /* Ensure symptoms value cards have 30px spacing from edge, but cards themselves 20px */
  .values-section,
  .values-section-reverse {
    padding-left: 20px;
    padding-right: 20px;
  }

  .values-section .offset-grid,
  .values-section-reverse .offset-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Portfolio section 30px spacing */
  .portfolio-section .offset-grid {
    padding: 0 30px;
  }

  /* Hero section 30px spacing */
  .hero-container {
    padding: 0 30px;
  }

  /* Company section 20px spacing */
  .company-section {
    padding: 60px 20px;
  }

  .video-section {
    padding: 60px 20px;
    justify-content: center;
  }

  .video-text {
    padding: 40px 30px;
  }

  .video-title {
    font-size: 32px !important;
  }

  .image-text-container {
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .image-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding: 20px;
  }

  .image-text-overlay::before {
    display: none;
  }

  .image-text-number {
    text-align: left;
  }

  .image-text-title {
    text-align: left;
  }

  .image-text-content {
    max-width: 100%;
    text-align: left;
    color: #ffffff;
  }

  .header-title {
    line-height: 0.9;
  }
}

/* ========================================
   RAiRE FOOTER SECTION (REVEAL EFFECT)
   ======================================== */

.raire-footer-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #fff;
  color: #000;
  max-height: 100vh;
  overflow-y: auto;
}

.raire-footer-inner {
  padding: 60px 80px 40px;
}


/* Header */
.raire-header {
  margin-bottom: 40px;
}

.raire-overline {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.raire-heading {
  font-family: 'PPSupplyMono', monospace;
  font-size: 48px;
  font-weight: 400;
  color: #000;
  letter-spacing: 2px;
}

.raire-heading-image {
  max-width: 240px;
  height: auto;
  display: block;
}

/* Two Column Layout */
.raire-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Left Card Column */
.raire-card-column {
  display: flex;
}

.raire-card {
  width: 100%;
  max-width: 600px;
}

.raire-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.raire-card-placeholder {
  width: 100%;
  height: 340px;
  background: #e0e0e0;
}

.raire-card-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
	max-height:320px;
}

.raire-card-content {
  padding-top: 4px;
}

.raire-card-title {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

.raire-card-link {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.raire-card-link:hover {
  text-decoration: underline;
}

/* Right Content Column */
.raire-content-column {
  display: flex;
  flex-direction: column;
}

.raire-subheading {
  font-family: 'PPSupplyMono', monospace;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}

.raire-intro-text {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.raire-intro-text p {
  margin: 0 0 1em 0;
}

.raire-intro-text p:last-child {
  margin-bottom: 0;
}

/* Accordions */
.raire-accordions {
  margin-bottom: 30px;
}

.raire-accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.raire-accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.raire-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'PPSupplyMono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  transition: all 0.3s ease;
}

.raire-accordion-trigger:hover {
  opacity: 0.7;
}

.raire-accordion-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.raire-accordion-icon::before,
.raire-accordion-icon::after {
  content: '';
  position: absolute;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.raire-accordion-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.raire-accordion-icon::after {
  width: 1px;
  height: 12px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.raire-accordion-item.active .raire-accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.raire-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.raire-accordion-content-inner {
  overflow: hidden;
}

.raire-accordion-item.active .raire-accordion-content {
  grid-template-rows: 1fr;
}

.raire-accordion-item.active .raire-accordion-content-inner {
  padding-bottom: 16px;
}

.raire-accordion-content-inner,
.raire-accordion-content-inner p {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Body Copy */
.raire-body-copy {
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.raire-body-copy p {
  margin-bottom: 1em;
}

.raire-body-copy p:last-child {
  margin-bottom: 0;
}


/* Footer */
.raire-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.raire-footer-content {
  margin-bottom: 30px;
  font-family: 'PPSupplyMono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.raire-footer-content p {
  margin-bottom: 1em;
}

.raire-footer-content a {
  color: #000;
  text-decoration: underline;
}

.raire-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.raire-copyright {
  font-family: 'PPSupplyMono', monospace;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .raire-footer-inner {
    padding: 50px 40px 30px;
  }

  .raire-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .raire-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .raire-footer-inner {
    padding: 40px 20px 20px;
  }

  .raire-heading {
    font-size: 32px;
  }

  .raire-subheading {
    font-size: 20px;
  }

  .raire-card-placeholder {
    height: 200px;
  }
}
