  :root {
    --primary-purple: #e5dcec;
    --dark-text: #2d2d2d;
  }

  html,
  body {
    overflow-y: auto !important;
    height: auto !important;
  }

  /* ─── Index Section ─── */
  .index-section {
    background: var(--primary-purple);
    height: auto;
    padding-bottom: 60px;
  }

  .index-section h2 {
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 40px;
    margin-top: 65px;
    padding-left: var(--content-inset);
  }

  .index-text {
    font-size: 21px;
    color: #6b7280;
    text-align: left;
    padding-left: var(--content-inset);
    padding-right: var(--content-inset);
    font-family: "acumin-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .index-text p {
    margin: 0 0 24px;
  }

  .index-definitions {
    padding-left: 48px;
    margin-bottom: 24px;
  }

  .index-definitions p {
    margin: 0 0 20px;
  }

  .index-definitions p:last-child {
    margin-bottom: 0;
  }

  .index-text b {
    color: #6b7280;
  }



  /* ─── Dimensions Section ─── */
  .dimensions-section {
    width: 100%;
    padding-top: 20px;
  }

  .dimensions-section h2 {
    font-size: 26px;
    color: var(--dark-text);
    margin-top: 0;
    margin-bottom: 40px;
    font-family: "acumin-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: left;
  }

  /* ─── Dimensions Layout ─── */
  .dimensions-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    align-items: stretch;
    gap: 100px;
    /* max-width: 1650px; */
    margin: 0 auto;
    padding-left: var(--content-inset);
    padding-right: var(--content-inset);
    --dims-col-height: 650px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .dimensions-intro {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: var(--dims-col-height);
  }

  .dimensions-intro p {
    font-size: 17px;
    color: #6b7280;
    margin: 0 0 20px;
  }

  .dimensions-grid-img {
    flex: 1;
    min-height: 0;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
  }

  .dimensions-grid-img img {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 100%;
    display: block;
  }

  @media (max-width: 1100px) {
    .dimensions-layout {
      grid-template-columns: 1fr;
    }
  }

  /* ─── Carousel ─── */
  .dim-carousel-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .dim-carousel-stage {
    position: relative;
    width: 100%;
    height: var(--dims-col-height);
  }

  .dim-carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .dim-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
  }

  /* ─── Slide ─── */
  .dim-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #E0E0E0;

  }

  /* ─── Slide Text ─── */
  .dim-slide-text {
    flex: 0 0 auto;
    padding: 25px 25px 0;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }


  .dim-slide-sidebar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  .dim-slide-icon {
    width: 40px;
    height: auto;
    object-fit: contain;
  }

  .dim-slide-label {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    white-space: nowrap;
  }

  .dim-slide-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .dim-slide-name {
    margin-bottom: 6px;
    overflow-wrap: break-word;
  }

  .dim-slide-subtitle {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
  }

  .dim-slide-desc {
    font-size: 19px;
    line-height: 1.4;
    color: #6b7280;
    text-align: left;
    font-weight: 100;
  }

  /* Dimension colors */
  .dim-slide.safe .dim-slide-name {
    color: #2c3036;
    letter-spacing: 2px;
  }

  .dim-slide.secure .dim-slide-name {
    color: #2c3036;
    letter-spacing: 2px;
  }

  .dim-slide.healthy .dim-slide-name {
    color: #2c3036;
    letter-spacing: 2px;
  }

  .dim-slide.sustainable .dim-slide-name {
    color: #2c3036;
    letter-spacing: 2px;
  }

  /* ─── Slide Image ─── */
  .dim-slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px 25px;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
  }

  .dim-slide-image img {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

  /* ─── Navigation Arrows ─── */
  .dim-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 22px;
    color: #555;
    transition: background 0.2s;
  }

  .dim-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.12);
  }

  .dim-carousel-btn.prev {
    left: -50px;
  }

  .dim-carousel-btn.next {
    right: -50px;
  }

  /* ─── Dots ─── */
  .dim-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 10px;
  }

  .dim-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dim-carousel-dot.active {
    background: #333;
  }
